-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
80 lines (72 loc) · 1.89 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
[project]
name = "Arpeggio"
description = "Packrat parser interpreter"
version = "2.1.0.dev0"
authors = [
{name = "Igor R. Dejanović", email = "[email protected]"},
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["parser", "PEG", "packrat", "library", "interpreter"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
]
[project.urls]
Homepage = "https://textx.github.io/Arpeggio/"
Repository = "https://github.com/textX/Arpeggio"
Changelog = "https://github.com/textX/Arpeggio/blob/master/CHANGELOG.md"
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[tool.flit.module]
name = "arpeggio"
[tool.flit.sdist]
exclude = ["**/.*"]
[project.optional-dependencies]
dev = [
"mkdocs",
"mike",
"flit",
]
test = [
"ruff",
"coverage",
"coveralls",
"pytest",
]
[tool.ruff]
line-length = 90
indent-width = 4
[tool.ruff.lint]
# https://docs.astral.sh/ruff/linter/#rule-selection
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]