-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
72 lines (61 loc) · 1.96 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scos-tekrsa"
dynamic = ["version"]
description = "Plugin for SCOS Sensor which adds support for Tektronix RSA-series spectrum analyzers"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.md" }
authors = [
{ name = "The Institute for Telecommunication Sciences" },
]
maintainers = [
{ name="Anthony Romaniello", email="aromaniello@ntia.gov"},
]
keywords = [
"SCOS", "Tektronix", "RSA", "SDR", "spectrum", "analyzer",
"sensor", "scos-sensor", "radio", "monitoring", "remote",
"distributed", "sensing", "NTIA", "ITS", "telecommunications",
]
classifiers = [
"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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"environs>=9.5.0",
"tekrsa-api-wrap>=1.3.3",
"scos_actions @ git+https://github.com/NTIA/scos-actions@10.0.2",
]
[project.optional-dependencies]
tests = [
"pytest>=7.3.1,<8.0",
"pytest-cov>=4.0.0,<5.0",
"tox>=4.5.1,<5.0", # Should keep in sync with tox.ini minimum_version
]
dev = [
"hatchling>=1.14.2,<2.0",
"pre-commit>=3.3.1,<4.0",
"scos-tekrsa[tests]",
]
[project.urls]
"Repository" = "https://github.com/NTIA/scos-tekrsa"
"Bug Tracker" = "https://github.com/NTIA/scos-tekrsa/issues"
"SCOS Sensor" = "https://github.com/NTIA/scos-sensor"
"NTIA GitHub" = "https://github.com/NTIA"
"ITS Website" = "https://its.ntia.gov"
"Tektronix Website" = "https://www.tek.com/en"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "src/scos_tekrsa/__init__.py"