-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 864 Bytes
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
[tool.poetry]
name = "pyrdp-commons"
version = "0.1.0"
description = ""
authors = ["Michael Spiegel <michael.spiegel@ait.ac.at>"]
readme = "README.md"
packages = [{include = "pyrdp_commons"}]
[tool.poetry.dependencies]
python = "^3.9"
python-dotenv = ">=0.21.1,<2.0.0"
pyyaml = "^6.0"
pandas = ">=1.5.3,<3.0.0"
httpx = {version = "^0.27.0", optional = true}
jsonpath-ng = {version = "^1.6.1", optional = true}
websockets = {version = "^12.0", optional = true}
aiofiles = {version = "^23.2.1", optional = true}
[tool.poetry.extras]
websrc = ["httpx", "jsonpath-ng", "websockets"]
fullasync = ["aiofiles"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-asyncio = "^0.23.6"
fastapi = "^0.110.1"
uvicorn = "^0.29.0"
websockets = "^12.0"
python-multipart = "^0.0.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"