|
1 |
| -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "legacy-cgi"
|
| 3 | +description = "Fork of the standard library cgi and cgitb modules removed in Python 3.13" |
| 4 | +license = "PSF-2.0" |
3 | 5 | version = "2.6.2"
|
4 |
| -description = "Fork of the standard library cgi and cgitb modules, being deprecated in PEP-594" |
| 6 | +readme = "README.rst" |
5 | 7 | authors = [
|
6 |
| - "Michael McLay <[email protected]>", |
7 |
| - "Steve Majewski <sdm7g@virginia.edu>", |
8 |
| - "Andreas Paepcke <[email protected].edu>", |
9 |
| - "Guido van Rossum <[email protected]>", |
| 8 | + {name = "Guido van Rossum", email = "[email protected]"}, |
| 9 | + {name = "Andreas Paepcke", email = "[email protected].edu"}, |
| 10 | + {name = "Steve Majewski", email = "sdm7g@virginia.edu"}, |
| 11 | + {name = "Michael McLay", email = "[email protected]"}, |
10 | 12 | ]
|
11 |
| -license = "PSF-2.0" |
| 13 | +maintainers = [ |
| 14 | + { name = "Jack Rosenthal", email = "[email protected]"}, |
| 15 | +] |
| 16 | +requires-python = '>=3.8' |
| 17 | +dependencies = [] |
| 18 | + |
| 19 | +[project.urls] |
| 20 | +repository = "https://github.com/jackrosenthal/legacy-cgi" |
| 21 | + |
| 22 | +[tool.poetry] |
12 | 23 | packages = [
|
13 | 24 | { include = "cgi.py" },
|
14 | 25 | { include = "cgitb.py" },
|
15 | 26 | { include = "tests", format = "sdist" },
|
16 | 27 | ]
|
17 |
| -readme = "README.rst" |
18 |
| -repository = "https://github.com/jackrosenthal/legacy-cgi" |
19 |
| - |
20 |
| -[tool.poetry.dependencies] |
21 |
| -python = ">=3.8" |
| 28 | +requires-poetry = '>=2.0,<3.0' |
22 | 29 |
|
23 |
| -[tool.poetry.dev-dependencies] |
| 30 | +[tool.poetry.group.dev.dependencies] |
24 | 31 | pytest = "^7.1.1"
|
25 | 32 |
|
26 | 33 | [build-system]
|
27 |
| -requires = ["poetry-core>=1.0.0"] |
| 34 | +requires = ["poetry-core>=2.0.0"] |
28 | 35 | build-backend = "poetry.core.masonry.api"
|
0 commit comments