setup: add missing dependencies (#36)

* setup: add missing dependencies

Alternatively, we could make setup.py read from requirements.txt for
dependencies.

IMO, a better option is to always keep setup.py up-to-date with
library dependencies and add `-e .` to requirements-dev.txt.

* Add -e . to requirements.txt

Co-authored-by: francisco souza <fsouza@users.noreply.github.com>
This commit is contained in:
francisco souza 2021-05-24 14:17:47 -04:00 committed by GitHub
parent de48e490e8
commit 0cc1f29734
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View file

@ -1,5 +1 @@
appdirs
argcomplete
colorama
halo
spinners
-e .

View file

@ -46,5 +46,7 @@ if __name__ == "__main__":
"appdirs",
"argcomplete",
"colorama",
"halo",
"spinners",
],
)