-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
83 lines (73 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scos-actions"
dynamic = ["version"]
description = "The base plugin providing common actions and interfaces for SCOS Sensor plugins"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE.md" }
authors = [
{ name = "The Institute for Telecommunication Sciences" },
]
maintainers = [
{ name = "Doug Boulware", email = "[email protected]" },
{ name = "Justin Haze", email = "[email protected]" },
{ name = "Anthony Romaniello", email = "[email protected]" },
]
keywords = [
"SCOS", "SDR", "spectrum monitoring", "radio", "sensor",
"spectrum", "monitoring", "remote", "distributed", "sensing",
"NTIA", "ITS", "telecommunications",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Environment :: Plugins",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"environs>=9.5.0",
"django>=4.2.8,<5.0", # As of 4.2.8, Python 3.13 is not supported.
"its_preselector @ git+https://github.com/NTIA/[email protected]",
"msgspec>=0.16.0,<1.0.0",
"numexpr>=2.8.3",
"numpy>=1.25.0,<2",
"psutil>=5.9.4",
"python-dateutil>=2.0",
"ray>=2.10.0",
"ruamel.yaml>=0.15",
"scipy>=1.11.4",
"sigmf @ git+https://github.com/NTIA/SigMF@multi-recording-archive",
]
[project.optional-dependencies]
test = [
"pytest>=8.0,<9.0",
"pytest-cov>=6.0,<7.0",
"tox>=4.5.1,<5.0", # Keep in sync with min_version in tox.ini
]
dev = [
"hatchling>=1.14.1,<2.0",
"pre-commit>=3.3.1,<4.0",
"ray[default]>=2.10.0",
"scos-actions[test]",
]
[project.urls]
"Repository" = "https://github.com/NTIA/scos-actions"
"Bug Tracker" = "https://github.com/NTIA/scos-actions/issues"
"SCOS Sensor" = "https://github.com/NTIA/scos-sensor"
"NTIA GitHub" = "https://github.com/NTIA"
"ITS Website" = "https://its.ntia.gov"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "scos_actions/__init__.py"