Skip to content

Commit dbb9d97

Browse files
Update pyproject.toml
Support Python>=3.9, update package metadata
1 parent eaa34c2 commit dbb9d97

File tree

1 file changed

+13
-17
lines changed

1 file changed

+13
-17
lines changed

pyproject.toml

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ name = "P2108"
77
dynamic = ["version"]
88
description = "Python wrapper for U.S. Reference Software Implementation of Recommendation ITU-R P.2108"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = { file = "LICENSE.md" }
1212

1313
authors = [
14-
{ name = "The Institute for Telecommunication Sciences" },
15-
]
16-
17-
maintainers = [
18-
{ name = "Billy Kozma", email = "[email protected]" },
19-
{ name = "Anthony Romaniello", email = "[email protected]" },
14+
{ name = "The Institute for Telecommunication Sciences", email = "[email protected]" },
2015
]
2116

2217
keywords = [
23-
"propagation", "clutter", "radio", "telecommunications",
24-
"ITU", "NTIA", "ITS",
18+
"propagation",
19+
"clutter",
20+
"radio",
21+
"telecommunications",
22+
"ITU",
23+
"NTIA",
24+
"ITS",
2525
]
2626

2727
classifiers = [
@@ -33,24 +33,20 @@ classifiers = [
3333
"Operating System :: POSIX :: Linux",
3434
"Programming Language :: Python",
3535
"Programming Language :: Python :: 3",
36-
"Programming Language :: Python :: 3.8",
3736
"Programming Language :: Python :: 3.9",
3837
"Programming Language :: Python :: 3.10",
3938
"Programming Language :: Python :: 3.11",
4039
"Programming Language :: Python :: 3.12",
40+
"Programming Language :: Python :: 3.13",
4141
]
4242

4343
[project.optional-dependencies]
4444
tests = [
4545
"pytest>=8.2.0,<9.0",
4646
"pytest-cov>=5.0.0,<6.0",
47-
"tox>=4.15.0,<5.0", # Keep in sync with tox.ini minimum_version
48-
]
49-
dev = [
50-
"hatchling>=1.24.2,<2.0",
51-
"pre-commit>=3.5.0,<4.0",
52-
"P2108[tests]",
47+
"tox>=4.15.0,<5.0", # Keep in sync with tox.ini minimum_version
5348
]
49+
dev = ["hatchling>=1.24.2,<2.0", "pre-commit>=3.5.0,<4.0", "P2108[tests]"]
5450

5551
[project.urls]
5652
"Python Wrapper Source" = "https://github.com/NTIA/p2108-python"
@@ -68,4 +64,4 @@ ignore-vcs = true
6864

6965
[tool.cibuildwheel]
7066
test-command = "pytest ."
71-
test-requires = "pytest"
67+
test-requires = "pytest"

0 commit comments

Comments
 (0)