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:
parent
de48e490e8
commit
0cc1f29734
2 changed files with 3 additions and 5 deletions
|
|
@ -1,5 +1 @@
|
|||
appdirs
|
||||
argcomplete
|
||||
colorama
|
||||
halo
|
||||
spinners
|
||||
-e .
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -46,5 +46,7 @@ if __name__ == "__main__":
|
|||
"appdirs",
|
||||
"argcomplete",
|
||||
"colorama",
|
||||
"halo",
|
||||
"spinners",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue