-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.12 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "learning_loop_node"
version = "0.1.0"
description = "Python Library for Nodes which connect to the Zauberzeug Learning Loop"
authors = ["Zauberzeug GmbH <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/zauberzeug/learning_loop_node"
[tool.poetry.dependencies]
python = "^3.8"
fastapi = ">=0.93,<0.109"
fastapi-socketio = "^0.0.10"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
fastapi-utils = "^0.2.1"
requests = "^2.25.1"
python-socketio = "^5.7.2"
simplejson = "^3.17.2"
icecream = "^2.1.0"
aiofiles = "^0.7.0"
async_generator = "^1.10"
werkzeug = "^2.0.1"
pytest-watch = "^4.2.0"
python-multipart = "^0.0.5"
psutil = "^5.8.0"
numpy = "^1.13.3"
Pillow = "^10.0.0"
tqdm = "^4.63.0"
pytest-mock = "3.6.1"
pynvml = "^11.4.1"
aiohttp = "^3.8.4"
httpx = "^0.24.1"
dacite = "^1.8.1"
[tool.poetry.group.dev.dependencies]
pytest-flakefinder = "^1.1.0"
retry = "^0.9.2"
debugpy = "^1.6.7.post1"
pytest-asyncio = "^0.21.1"
autopep8 = "^2.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true