-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (62 loc) · 1.92 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 = "proplib-lfmf"
dynamic = ["version"]
description = "A Python wrapper for the NTIA/ITS implementation of the Low Frequency / Medium Frequency (LF/MF) Propagation Model"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE.md" }
authors = [
{ name = "The Institute for Telecommunication Sciences", email = "code@ntia.gov" },
]
keywords = [
"propagation",
"LFMF",
"NTIA",
"ITS",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"License :: Public Domain",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
tests = [
"pytest>=8.2.0,<9.0",
"pytest-cov>=6.0.0,<7.0",
]
dev = [
"hatchling>=1.25.0,<2.0",
"pre-commit>=4.0.1,<5.0",
"proplib-lfmf[tests]",
]
[project.urls]
"PropLib Wiki" = "https://ntia.github.io/propagation-library-wiki/models/LFMF/"
"Python Wrapper Source" = "https://github.com/NTIA/LFMF-python"
"Python Wrapper Bug Tracker" = "https://github.com/NTIA/LFMF-python/issues"
"C++ Source" = "https://github.com/NTIA/LFMF"
"NTIA GitHub" = "https://github.com/NTIA"
"ITS Website" = "https://its.ntia.gov"
[tool.hatch.version]
path = "src/ITS/Propagation/LFMF/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/ITS"]
ignore-vcs = true
[tool.hatch.build.targets.sdist]
ignore-vcs = true
[tool.cibuildwheel]
test-command = "pytest ."
test-requires = "pytest"