Comment 1 for bug 1815358

Revision history for this message
select (falko-o) wrote :

Ah almost forgot the most important information. The project is

https://github.com/select/term-cheat

my `snapcraft.yaml`

```
name: term-cheat
version: git
summary: Collect and find termial commands.
description: |
  TermCheat is a searchable library of commands that you can copy remix and extend.
icon: img/term-cheat.logo.svg
grade: stable
confinement: classic
base: core18
parts:
  term-cheat:
    plugin: python
    python-version: python3
    source: .
    source-type: git
    python-packages:
      - urwid
      - fuzzywuzzy
      - pyyaml
      - appdirs
      - python-Levenshtein
  python-wrapper:
    plugin: dump
    source: bin
    stage:
      - term-cheat-app
    prime:
      - term-cheat-app
apps:
  term-cheat:
    command: term-cheat-app
```