Add pipenv

This commit is contained in:
2021-06-01 12:22:53 +00:00
parent 3d6e9d272c
commit 9eb9afc0e5
6 changed files with 219 additions and 16 deletions

19
Pipfile Normal file
View File

@@ -0,0 +1,19 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aiohttp = "*"
python-dotenv = "*"
[dev-packages]
[requires]
python_version = "3.8"
[scripts]
dev = "bash -c 'ls src/*.py | entr -r python src/main.py'"
prod = "python src/main.py"