1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | name: conjure-snap # the name of the snap
version: 1 # the version of the snap
summary: snap conjure-up
description: snappy <3 conjure-up
confinement: devmode # use "strict" to enforce system access only via declared interfaces
apps:
conjure-up:
command: bin/conjure-up
parts:
conjure:
plugin: python3
source: https://github.com/ubuntu/conjure-up.git
source-type: git
requirements: parts/conjure/src/requirements.txt
|