-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
90 lines (80 loc) · 1.57 KB
/
pyproject.toml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools_scm>=8",
]
[project]
authors = [
{ email = "[email protected]", name = "Charles Yeomans" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Interpreters",
]
description = "Parsers for ABNF grammars."
dynamic = [
"version",
]
keywords = [
"abnf",
"generator",
"parser",
]
name = "abnf"
readme = "README.md"
requires-python = ">= 3.9"
[tool.black]
[tool.check-manifest]
ignore = [
"tests/notes",
]
[tool.isort]
profile = "black"
[tool.pyright]
pythonVersion = "3.9"
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
ignore = [
"COM812",
"E501",
"RUF001",
"S101",
]
select = [
"ASYNC",
"B",
"BLE",
"C4",
"COM",
"DTZ",
"E",
"EM",
"F",
"FURB",
"I",
"ICN",
"ISC",
"PERF",
"RUF",
"SIM",
"T20",
"UP",
]
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.setuptools_scm]