Last active
May 10, 2021 12:36
-
-
Save davidmweber/6962aba28258e088d327e46347c7b9c8 to your computer and use it in GitHub Desktop.
Infinite loop for azure-core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "stream-manager" | |
version = "0.0.147" | |
description = "" | |
authors = ["David Weber <[email protected]>", "Janto Dreijer [email protected]"] | |
license = "Proprietary" | |
packages = [ | |
{ include = "server" } | |
] | |
[tool.poetry.scripts] | |
stream-manager = "server.stream_manager:run" | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
fastapi = "^0.63.0" | |
uvicorn = {extras = ["standard"], version = "^0.13.4"} | |
requests = "^2.24.0" | |
pyhocon = "^0.3.55" | |
sqlalchemy = "1.3.21" | |
alembic = "^1.5.7" | |
psycopg2-binary = "^2.8.6" | |
colorama = "^0.4.3" | |
python-rapidjson = "^1.0.0" | |
async-generator = "^1.10" | |
async-exit-stack = "^1.0.1" | |
Authlib = "^0.14.3" | |
cryptography = "^3.4.4" | |
dataclasses-json = "^0.5.2" | |
graphviz = "^0.16" | |
azure-storage-blob = "^12.7.1" | |
azure-iot-hub = "^2.2.2" | |
aiohttp = {extras = ["speedups"], version = "^3.7.4"} | |
jinja2 = "^2.11.3" | |
opentelemetry-api = "0.17b" | |
opentelemetry-sdk = "0.17b" | |
opentelemetry-instrumentation = "0.17b" | |
opentelemetry-instrumentation-sqlalchemy = "0.17b0" | |
azure-monitor-opentelemetry-exporter = "1.0.0b3" | |
yarl = "^1.5.1" | |
tabulate = "^0.8.9" | |
python-dateutil = "^2.8.1" | |
gunicorn = "^20.1.0" | |
pytest-asyncio = "^0.15.1" | |
httpx = "^0.18.1" | |
asgi-lifespan = "^1.0.1" | |
[tool.poetry.dev-dependencies] | |
pytest = "^6.2.2" | |
flake8 = "^3.8.4" | |
pytest-cov = "^2.10.1" | |
pip-licenses = "^3.3.0" | |
black = "^21.4b2" | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment