Skip to content

Commit 68858b4

Browse files
committed
Add pyproject.toml metadata
Fixes: #7
1 parent a382bd1 commit 68858b4

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "crypt_r"
77
version = "3.12.3"
8+
authors = [
9+
{name = "Steven D. Majewski", email = "sdm7g@virginia.edu"},
10+
]
11+
maintainers = [
12+
{name = "Miro Hrončok", email = "miro@hroncok.cz"},
13+
{name = "Petr Viktorin", email = "encukou@gmail.com"},
14+
{name = "Tomáš Hrnčiar", email = "tomas.hrnciar@me.com"},
15+
{name = "Karolina Surma", email = "ksurma@redhat.com"},
16+
]
17+
description = "A copy of the `crypt` module that was removed in Python 3.13"
18+
readme = "README.rst"
19+
requires-python = ">=3.11"
20+
classifiers = [
21+
"Programming Language :: Python :: 3",
22+
"Programming Language :: Python :: Implementation :: CPython",
23+
"License :: OSI Approved :: Python Software Foundation License",
24+
"Operating System :: POSIX :: Linux",
25+
]
26+
license = {file = "LICENSE"}
27+
28+
[project.urls]
29+
"Homepage" = "https://github.com/fedora-python/crypt_r"
30+
"Bug Tracker" = "https://github.com/fedora-python/crypt_r/issues"
831

932
[tool.setuptools]
1033
py-modules = ["crypt_r", "crypt"]

0 commit comments

Comments
 (0)