-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "crypt_r"
version = "3.13.1"
authors = [
{name = "Steven D. Majewski", email = "[email protected]"},
]
maintainers = [
{name = "Miro Hrončok", email = "[email protected]"},
{name = "Petr Viktorin", email = "[email protected]"},
{name = "Tomáš Hrnčiar", email = "[email protected]"},
{name = "Karolina Surma", email = "[email protected]"},
]
description = "A copy of the `crypt` module that was removed in Python 3.13"
readme = "README.rst"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: POSIX :: Linux",
]
license = {file = "LICENSE"}
[project.urls]
"Homepage" = "https://github.com/fedora-python/crypt_r"
"Bug Tracker" = "https://github.com/fedora-python/crypt_r/issues"
[tool.setuptools]
py-modules = ["crypt_r", "crypt"]
package-dir = {"" = "src"}