File: pyproject.toml

package info (click to toggle)
python-crypt-r 3.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: python: 172; ansic: 95; sh: 8; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (2)
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 = "sdm7g@virginia.edu"},
]
maintainers = [
    {name = "Miro Hrončok", email = "miro@hroncok.cz"},
    {name = "Petr Viktorin", email = "encukou@gmail.com"},
    {name = "Tomáš Hrnčiar", email = "tomas.hrnciar@me.com"},
    {name = "Karolina Surma", email = "ksurma@redhat.com"},
]
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"}