|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "rfc2html" |
| 7 | +dynamic = ["version"] |
| 8 | +authors = [ |
| 9 | + { name = "IETF Tools", email = "[email protected]"}, |
| 10 | +] |
| 11 | +description = "Convert text-format RFCs and Internet-Drafts to html" |
| 12 | +keywords = ["svg", "validation", "rfc", "internet-draft", "html"] |
| 13 | +readme = "README.md" |
| 14 | +license = "BSD-3-Clause" |
| 15 | +license-files = ["LICENSE"] |
| 16 | +requires-python = ">=2.7" |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Programming Language :: Python :: 3.13", |
| 24 | + "Topic :: Text Processing", |
| 25 | + "Topic :: Text Processing :: Markup :: XML", |
| 26 | +] |
| 27 | + |
| 28 | +[project.urls] |
| 29 | +homepage = "https://github.com/ietf-tools/rfc2html" |
| 30 | +source = "https://github.com/ietf-tools/rfc2html" |
| 31 | +issues = "https://github.com/ietf-tools/rfc2html/issues" |
| 32 | +changelog = "https://github.com/ietf-tools/rfc2html/blob/main/CHANGELOG.md" |
| 33 | +releasenotes = "https://github.com/ietf-tools/rfc2html/releases" |
| 34 | + |
| 35 | +[project.optional-dependencies] |
| 36 | +tests = [ |
| 37 | + "coverage", |
| 38 | + "flake8", |
| 39 | + "tox", |
| 40 | +] |
| 41 | + |
| 42 | +[project.scripts] |
| 43 | +rfc2html = "rfc2html:main" |
| 44 | + |
| 45 | +[tool.setuptools] |
| 46 | +py-modules = ["rfc2html"] |
| 47 | + |
| 48 | +[tool.setuptools.dynamic] |
| 49 | +version = {attr = "rfc2html.__version__"} |
0 commit comments