forked from IQTLabs/gamutRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 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
48
49
50
51
52
53
54
[tool.poetry]
name = "gamutrf"
version = "0.5.67"
description = "An orchestrated SDR scanner"
authors = ["cglewis <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "gamutrf" },
]
[tool.poetry.dependencies]
Flask = "3.0.3"
Jinja2 = "3.1.4"
bjoern = "3.2.2"
falcon = "3.1.3"
falcon-cors = "1.1.7"
gpsd-py3 = "0.3.0"
numpy = "2.0.1"
paho-mqtt = "2.1.0"
pandas = "2.2.2"
pbr = "6.0.0"
prometheus_client = "0.20.0"
python = ">=3.9,<3.13"
pyzmq = "26.1.1"
requests = "2.32.3"
sigmf = "1.2.2"
sysrsync = "1.1.1"
webcolors = "24.8.0"
zstandard = "0.23.0"
[tool.poetry.dev-dependencies]
attr = "0.3.2"
attrs = "24.2.0"
black = "24.8.0"
docker = "7.1.0"
pdbpp = "^0.10.3"
pylint = "3.2.6"
pytest = "8.3.2"
pytest-cov = "5.0.0"
pytype = "2024.4.11"
[tool.poetry.scripts]
gamutrf-compress_dirs = 'gamutrf.__main__:compress_dirs'
gamutrf-offline= 'gamutrf.__main__:offline'
gamutrf-scan = 'gamutrf.__main__:scan'
gamutrf-worker = 'gamutrf.__main__:worker'
[tool.poetry.urls]
homepage = "https://github.com/IQTLabs/gamutRF"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"