-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (94 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
107 lines (94 loc) · 2.27 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[project]
name = "parglare"
version = "0.21.0"
description = "A pure Python LR/GLR parser"
authors = [
{name = "Igor R. Dejanović", email = "igor.dejanovic@gmail.com"},
]
maintainers = [
{name = "Igor R. Dejanović", email = "igor.dejanovic@gmail.com"},
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["parser", "lr", "glr"]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
requires-python = ">=3.8, <=3.14"
dependencies = [
"click >=7.0, <9.0",
]
[project.urls]
Homepage = "https://github.com/igordejanovic/parglare"
Repository = "https://github.com/igordejanovic/parglare"
Changelog = "https://github.com/igordejanovic/parglare/blob/master/CHANGELOG.md"
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[tool.flit.module]
name = "parglare"
[tool.flit.sdist]
exclude = ["**/.*"]
[tool.uv]
default-groups = ["dev"]
[dependency-groups]
dev = [
"flit",
{include-group = "test"},
{include-group = "docs"},
{include-group = "dbg"},
]
test = [
"ruff",
"coverage",
"coveralls",
"pytest",
"mypy",
]
docs = [
"mkdocs",
"mike",
]
dbg = [
"pudb",
"ipython",
"objgraph",
]
[project.scripts]
pglr = "parglare.cli:pglr"
[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",
]