-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.4 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rfc2html"
dynamic = ["version"]
authors = [
{name = "IETF Tools", email = "[email protected]"},
]
description = "Convert text-format RFCs and Internet-Drafts to html"
keywords = ["svg", "validation", "rfc", "internet-draft", "html"]
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=2.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Lanugage :: Python :: 3.14",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup :: XML",
]
[project.urls]
homepage = "https://github.com/ietf-tools/rfc2html"
source = "https://github.com/ietf-tools/rfc2html"
issues = "https://github.com/ietf-tools/rfc2html/issues"
changelog = "https://github.com/ietf-tools/rfc2html/blob/main/CHANGELOG.md"
releasenotes = "https://github.com/ietf-tools/rfc2html/releases"
[project.optional-dependencies]
tests = [
"coverage",
"flake8",
"tox",
]
[project.scripts]
rfc2html = "rfc2html:main"
[tool.setuptools]
py-modules = ["rfc2html"]
[tool.setuptools.dynamic]
version = {attr = "rfc2html.__version__"}