|
| 1 | +[project] |
| 2 | +name = "signxml" |
| 3 | +description = "Python XML Signature and XAdES library" |
| 4 | +readme = "README.rst" |
| 5 | +requires-python = ">=3.8" |
| 6 | +license = { text = "Apache Software License" } |
| 7 | +authors = [{ name = "Andrey Kislyuk"}, { email = "[email protected]" }] |
| 8 | +authors = [{ name = "Andrey Kislyuk"}, { email = "[email protected]" }] |
| 9 | +dynamic = ["version"] |
| 10 | +classifiers = [ |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "License :: OSI Approved :: Apache Software License", |
| 13 | + "Operating System :: MacOS :: MacOS X", |
| 14 | + "Operating System :: POSIX", |
| 15 | + "Programming Language :: Python", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.8", |
| 18 | + "Programming Language :: Python :: 3.9", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Programming Language :: Python :: 3.12", |
| 22 | + "Programming Language :: Python :: 3.13", |
| 23 | + "Programming Language :: Python :: Implementation :: CPython", |
| 24 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 25 | + "Development Status :: 5 - Production/Stable", |
| 26 | + "Topic :: Software Development", |
| 27 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 28 | +] |
| 29 | +dependencies = [ |
| 30 | + "lxml >= 5.2.1, < 6", # Ubuntu 24.04 LTS |
| 31 | + "cryptography >= 43", # Required to support client certificate validation |
| 32 | + "certifi >= 2023.11.17", # Ubuntu 24.04 LTS |
| 33 | + # "tsp-client >= 0.1.3", |
| 34 | +] |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +test = [ |
| 38 | + "ruff", |
| 39 | + "coverage", |
| 40 | + "build", |
| 41 | + "wheel", |
| 42 | + "mypy", |
| 43 | + "lxml-stubs", |
| 44 | +] |
| 45 | + |
| 46 | +[project.urls] |
| 47 | +"Homepage"= "https://github.com/kislyuk/signxml" |
| 48 | +"Documentation"= "https://xml-security.github.io/signxml/" |
| 49 | +"Source Code"= "https://github.com/kislyuk/signxml" |
| 50 | +"Issue Tracker"= "https://github.com/kislyuk/signxml/issues" |
| 51 | +"Change Log"= "https://github.com/kislyuk/signxml/blob/main/Changes.rst" |
| 52 | + |
| 53 | +[build-system] |
| 54 | +requires = ["hatchling", "hatch-vcs"] |
| 55 | +build-backend = "hatchling.build" |
| 56 | + |
| 57 | +[tool.hatch.version] |
| 58 | +source = "vcs" |
| 59 | + |
1 | 60 | [tool.black]
|
2 | 61 | line-length = 120
|
3 | 62 |
|
|
0 commit comments