-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
49 lines (43 loc) · 1.27 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
48
49
[tool.poetry]
name = "sensors_connectivity"
version = "1.6.7"
description = "Robonomics package to read data from sensors and publish to different output channels"
authors = [
"Vadim Manaenko <vadim.razorq@gmail.com>",
"Mariia Bystramovich <m.bystramovich@gmail.com>",
]
license = "BSD 3-Clause License"
repository = "https://github.com/airalab/sensors-connectivity"
readme = "README.md"
packages = [
{ include = "connectivity" },
]
exclude = [
".gitignore",
]
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
pyserial = "^3.5"
pynacl = "^1.5.0"
pyyaml = "^6.0"
requests = "^2.27.1"
sentry_sdk = "2.8.0"
robonomics-interface = "^1.6.0"
ipfshttpclient = "0.8.0a2"
pinatapy-vourhey = "^0.1.3"
netifaces = "^0.11.0"
paho-mqtt = "^1.6.1"
prometheus-client = "^0.13.1"
py-sr25519-bindings = "^0.2.0"
IPFS-Toolkit = "^0.4.4"
crust-interface-patara = "^0.1.1"
[tool.poetry.scripts]
sensors_connectivity = "connectivity.main:run"
test_environmental_box = "tests.environmental_box_test:main"
test_mobile_lab = "tests.mobile_lab_test:main"
test_many_sensors = "tests.many_environmental_boxes:main"
test_lora_sensors = "tests.lora_sensor_test:main"
test_gps_sensor = "tests.gps_sensor_test:main"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"