Morgan McMillian
3c539d1fc9
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
28 lines
784 B
YAML
28 lines
784 B
YAML
name: mndp-partybot # you probably want to 'snapcraft register <name>'
|
|
base: core18 # the base snap is the execution environment for this snap
|
|
version: 0.2.1 # just for humans, typically '1.2+git' or '1.3.2'
|
|
summary: A bot for mndp.tv # 79 char long summary
|
|
description: |
|
|
Because bots like to party. A bot for https://mndp.tv/
|
|
|
|
grade: devel # must be 'stable' to release into candidate/stable channels
|
|
confinement: strict # use 'strict' once you have the right plugs and slots
|
|
|
|
parts:
|
|
partybot:
|
|
plugin: python
|
|
python-version: python3
|
|
source: .
|
|
python-packages:
|
|
- PyYAML
|
|
- pnutpy
|
|
- requests
|
|
- SQLAlchemy
|
|
- websocket-client
|
|
|
|
apps:
|
|
partybot:
|
|
command: bin/partybot
|
|
daemon: simple
|
|
install-mode: disable
|
|
plugs: [network]
|