Skip to content

Commit e4fb3d9

Browse files
authored
Merge pull request aspiers#61 from OddBloke/snapcraft
Add .snapcraft.yaml which will produce a strict snap for CLI use
2 parents f609445 + a22e395 commit e4fb3d9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.snapcraft.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: git-deps
2+
version: 0.1
3+
summary: A tool for performing analysis of dependencies between git commits
4+
description: |
5+
git-deps is a tool for performing automatic analysis of dependencies
6+
between commits in a git repository.
7+
8+
confinement: strict
9+
10+
apps:
11+
git-deps:
12+
command: git-deps/git-deps.py
13+
plugs:
14+
- home
15+
16+
parts:
17+
git-deps:
18+
plugin: copy
19+
source: .
20+
files:
21+
.: git-deps
22+
stage-packages:
23+
- git
24+
- python2.7
25+
- python-pygit2

0 commit comments

Comments
 (0)