Files
nixpkgs/pkgs/development/python-modules/botan3/pyproject.toml
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

36 lines
1.0 KiB
TOML

[project]
name = "botan3"
description = "Python bindings for Botan C++ cryptography library"
license = "BSD-2-Clause"
dynamic = [ "version" ]
authors = [
{name = "Jack Lloyd", email = "jack@randombit.net"},
{name = "Botan contributors" }
]
maintainers = [ {name = "Jack Lloyd", email = "jack@randombit.net"} ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Security :: Cryptography",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
# adapt from time to time with the latest still supported version
requires-python = ">=3.9"
[project.urls]
Homepage = "https://botan.randombit.net/"
Issues = "https://github.com/randombit/botan/issues"
[build-system]
requires = [ "setuptools>=61", "setuptools-scm>=8" ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["botan3"]
# read version information from git
[tool.setuptools_scm]
root = "../.."