diff options
author | Daniel Watkins <daniel.watkins@canonical.com> | 2016-08-04 14:15:18 +0100 |
---|---|---|
committer | Daniel Watkins <daniel.watkins@canonical.com> | 2016-08-17 17:55:26 +0100 |
commit | a22e395df7c3664157e6706dc3b7dd1d6e802ae6 (patch) | |
tree | eaeda2475efef9bba188d448547f4dd582de03ae /.snapcraft.yaml | |
parent | f6094450d57822a2275ad2188348f22bf775272b (diff) | |
download | git-deps-a22e395df7c3664157e6706dc3b7dd1d6e802ae6.tar.gz |
Add .snapcraft.yaml which will produce a strict snap for CLI use
Diffstat (limited to '.snapcraft.yaml')
-rw-r--r-- | .snapcraft.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.snapcraft.yaml b/.snapcraft.yaml new file mode 100644 index 0000000..f351f75 --- /dev/null +++ b/.snapcraft.yaml @@ -0,0 +1,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 |