-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.56 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
[build-system]
requires = ["setuptools>=67.8", "wheel", "Cython~=3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pe"
dynamic = ["version"]
description = "Library for Parsing Expression Grammars (PEG)"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["peg", "parsing", "text"]
authors = [
{name = "Michael Wayne Goodman", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Cython",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/goodmami/pe"
Documentation = "https://github.com/goodmami/pe/blob/main/docs/README.md"
Changelog = "https://github.com/goodmami/pe/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = ["pytest", "ruff", "mypy"]
[tool.setuptools]
packages = ["pe"]
[tool.setuptools.dynamic]
version = {attr = "pe.__version__"}
[tool.ruff]
target-version = "py38"
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle
"F", # Pyflakes
"W", # pycodestyle
]