|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "trustme" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "#1 quality TLS certs while you wait, for the discerning tester" |
| 9 | +readme = "README.rst" |
| 10 | +license = {text = "MIT OR Apache-2.0"} |
| 11 | +requires-python = ">=3.9" |
| 12 | +authors = [ |
| 13 | + { name = "Nathaniel J. Smith", email = "[email protected]" }, |
| 14 | +] |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: Apache Software License", |
| 19 | + "License :: OSI Approved :: MIT License", |
| 20 | + "Programming Language :: Python :: Implementation :: CPython", |
| 21 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3 :: Only", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.12", |
| 28 | + "Programming Language :: Python :: 3.13", |
| 29 | + "Topic :: Security :: Cryptography", |
| 30 | + "Topic :: Software Development :: Testing", |
| 31 | + "Topic :: System :: Networking", |
| 32 | +] |
| 33 | +dependencies = [ |
| 34 | + "cryptography>=3.1", |
| 35 | + "idna>=2.0", |
| 36 | +] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Homepage = "https://github.com/python-trio/trustme" |
| 40 | + |
| 41 | +[tool.hatch.version] |
| 42 | +path = "src/trustme/_version.py" |
| 43 | + |
| 44 | + |
| 45 | +[tool.hatch.build.targets.sdist] |
| 46 | +include = [ |
| 47 | + "/docs", |
| 48 | + "/src", |
| 49 | + "/tests", |
| 50 | + "/test-requirements.txt", |
| 51 | + "/README.rst", |
| 52 | + "/LICENSE", |
| 53 | + "/LICENSE.APACHE2", |
| 54 | + "/LICENSE.MIT", |
| 55 | +] |
| 56 | + |
| 57 | + |
| 58 | + |
1 | 59 | [tool.towncrier] |
2 | 60 | # Usage: |
3 | 61 | # - PRs should drop a file like "issuenumber.feature" in newsfragments |
|
0 commit comments