-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: #7
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,24 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "crypt_r" | ||
version = "3.12.3" | ||
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 = ">=?.??" TODO | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Python Software Foundation License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[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"] | ||
|