Created
May 10, 2021 12:54
-
-
Save cpbotha/530961e8f959dab545c42be2615e12dc to your computer and use it in GitHub Desktop.
This file contains 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] | |
# if you set this to 2.3.0 deps can be solved | |
# if you set to 2.4.0 you'll hit infinite loop: | |
# 1: selecting azure-core (1.13.0) | |
# 1: fact: azure-core (1.13.0) depends on requests (>=2.18.4) | |
# 1: fact: azure-core (1.13.0) depends on six (>=1.11.0) | |
# ... and repeat forever | |
azure-iot-hub = "2.4.0" | |
python = "^3.8" | |
[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