-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.99 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "rdp-data-crawler"
version = "0.4.0"
description = "Data crawler that actively polls data sources and pushes the results to redis."
authors = ["Michael Spiegel <michael.spiegel@ait.ac.at>"]
readme = "README.md"
packages = [{include = "data_crawler"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = "^2.31"
cachecontrol = "~0"
lockfile = "^0.12.2"
pandas = "^2.2.0"
click = "^8.1.7"
redis = "^5.0"
hiredis = "^2.3.2"
prometheus-client = "~0"
pyrdp-commons = {git = "https://github.com/AIT-RDP/pyrdp-commons", rev = "db65f54727ee5a79ced5b606c500d614abfa0a4d"}
modbus-crawler = {git = "https://github.com/AIT-RDP/rdp-modbus-crawler", rev = "88d6fb00ea6d10ff997d8e905e8acdad6a9b53c3", optional = true}
filelock = "^3.13.1"
entsoe-py = "~0"
pydantic = "^2.6"
jsonpath-ng = "^1.6.1"
aiofiles = "^24.1.0"
xarray = {version = "^2024.6.0", optional = true}
h5netcdf = {version = "^1.3.0", optional = true}
fastapi = {version = "^0.111.1", optional = true}
uvicorn = {version = "^0.30.1", optional = true}
asyncua = {version = "^1.1.5", optional = true}
pandera = {version = "^0.20.3", optional = true}
websocket-client = {version = "^1.8.0", optional = true}
rdp-mqtt = {git = "https://github.com/AIT-RDP/rdp-mqtt", rev = "5a991645b908d04857110fd285f8f4096fa8819d", optional = true}
influxdb-client = {extras = ["influx"], version = "^1.50.0"}
[tool.poetry.extras]
modbus = ["modbus-crawler", "pandera"]
numerics = ["xarray", "h5netcdf"]
rest-server = ["fastapi", "uvicorn"]
opcua = ["asyncua", "pandera"]
websocket = ["websocket-client"]
mqtt = ["rdp-mqtt"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-mock = "^3.12.0"
pytest-asyncio = "^0.23.7"
pytest-cov = "^5.0.0"
tenacity = "^8.5.0"
[tool.coverage.paths]
source = ["data_crawler"]
[tool.coverage.run]
branch = true
source = ["data_crawler"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
datacrawler = "data_crawler.cli:main"