19 lines
296 B
TOML
19 lines
296 B
TOML
[[source]]
|
|
name = "pypi"
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
|
|
[dev-packages]
|
|
mypy = "*"
|
|
flake8 = "*"
|
|
|
|
[packages]
|
|
aiohttp = "*"
|
|
python-socketio = "*"
|
|
gunicorn = "*"
|
|
|
|
[requires]
|
|
python_version = "3.7"
|
|
|
|
[scripts]
|
|
start = "gunicorn src.app:app --worker-class aiohttp.GunicornWebWorker"
|