-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (51 loc) · 1.5 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "its-preselector"
dynamic = ["version"]
description = "A package to control the ITS web relay-based preselector"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.md" }
authors = [
{ name = "The Institute for Telecommunication Sciences" },
]
maintainers = [
{ name = "Doug Boulware", email = "[email protected]" },
]
keywords = [
"preselector", "SDR", "NTIA", "web relay", "API",
"radio", "NTIA", "ITS", "telecommunications", "spectrum",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"requests>=2.31.0",
"defusedxml>=0.7.1"
]
[project.optional-dependencies]
dev = [
"hatchling>=1.6.0,<2.0",
"pre-commit>=2.20.0",
"pytest>=7.1.2",
"pytest-cov>=3.0.0",
"twine>=4.0.1,<5.0"
]
[project.urls]
"Repository" = "https://github.com/NTIA/Preselector"
"Bug Tracker" = "https://github.com/NTIA/Preselector/issues"
"NTIA GitHub" = "https://github.com/NTIA"
"ITS Website" = "https://its.ntia.gov"
[tool.hatch.version]
path = "src/its_preselector/__init__.py"