aboutsummaryrefslogtreecommitdiffstats
path: root/.snapcraft.yaml
blob: f351f754a3dd18a05a06c6100aaac27ded0bf217 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: git-deps
version: 0.1
summary: A tool for performing analysis of dependencies between git commits
description: |
    git-deps is a tool for performing automatic analysis of dependencies
    between commits in a git repository.

confinement: strict

apps:
    git-deps:
        command: git-deps/git-deps.py
        plugs:
            - home

parts:
    git-deps:
        plugin: copy
        source: .
        files:
            .: git-deps
        stage-packages:
            - git
            - python2.7
            - python-pygit2