-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
76 lines (65 loc) · 1.88 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
[project]
name = "parsy"
description = "Easy-to-use parser combinators, for parsing in pure Python"
license = {text = "MIT"}
authors = [
{ name = "Jeanine Adkisson", email = "jneen@jneen.net" }
]
maintainers = [
{ name = "Luke Plant", email = "luke@lukeplant.me.uk" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Topic :: Text Processing",
"License :: OSI Approved :: MIT License",
"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",
]
keywords = ["parser", "parsers", "parsing", "monad", "combinators"]
urls = {Homepage = "https://github.com/python-parsy/parsy"}
requires-python = ">=3.9"
dependencies = []
dynamic = ["version"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[tool.setuptools.dynamic]
version = {attr = "parsy.__version__"}
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"tox-uv>=1.20.1",
"tox>=4.24.1",
"pytest-cov>=6.0.0",
"pre-commit-uv>=4.1.4",
]
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.black]
line-length = 119
target-version = ['py310']
[tool.isort]
line_length = 119
profile = "black"
default_section = "THIRDPARTY"
skip = [".tox", ".git", "docs", "dist", "build" , "todo", ".venv"]
known_first_party = "parsy"
[tool.flake8]
exclude = [".tox", ".git", "docs", "dist", "build", "todo"]
ignore = ["E731", "E221", "W503", "E741", "E203" ]
max-line-length = 119