ResourcePackUpdater/Pipfile

23 lines
411 B
TOML
Raw Permalink Normal View History

2021-06-01 12:22:53 +00:00
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
python-dotenv = "*"
2021-06-12 05:46:32 +00:00
b2sdk = "*"
2021-08-01 01:03:37 +00:00
fastapi = "*"
fastapi-responses = "*"
uvicorn = {extras = ["standard"], version = "*"}
2021-06-01 12:22:53 +00:00
[dev-packages]
2021-08-01 01:03:37 +00:00
pytest = "*"
requests = "*"
2021-06-01 12:22:53 +00:00
[requires]
python_version = "3.8"
[scripts]
2021-08-01 01:03:37 +00:00
test = "pytest app/test/test_auth.py app/test/test_pack.py -s --capture=sys"
dev = "uvicorn app.main:app --reload"