add pipfile and lock

This commit is contained in:
grillazz
2021-03-26 08:36:54 +01:00
parent 70f34a0e9f
commit 5e9e294b27
2 changed files with 851 additions and 0 deletions

28
Pipfile Normal file
View File

@@ -0,0 +1,28 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
isort = "*"
mypy = "*"
flake8 = "*"
black = "*"
fastapi = "*"
uvicorn = {extras = ["standard"], version = "*"}
pydantic = "*"
httpx = "*"
asyncpg = "*"
sqlalchemy = "*"
pytest-asyncio = "*"
pytest-cov = "*"
[dev-packages]
icecream = "*"
ipython = "*"
[requires]
python_version = "3.9"
[pipenv]
allow_prereleases = true