-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
89 lines (79 loc) · 1.92 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
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "py_predicate"
description = "Module to create composable predicates"
version = "0.9"
authors = [{name = "Maurits Rijk", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"exrex",
"graphviz",
"lark",
"more-itertools",
"typer",
]
readme = "README.md"
requires-python = ">=3.10"
[project.urls]
Source = "https://github.com/mrijk/py-predicate"
Documentation = "https://mrijk.github.io/py-predicate/"
[project.optional-dependencies]
test = [
"black",
"mypy",
"mypy_extensions",
"pytest",
"pytest-benchmark",
"pytest-cov",
"ruff",
]
dev = [
"bumpversion",
"jsonschema",
"pre-commit",
]
[tool.flit.module]
name = "predicate"
[tool.black]
line-length = 120
[tool.ruff]
lint.ignore = [
"C901",
"D100",
"D102",
"D103",
"D104",
"D105",
"D107",
"E501",
"S311",
]
line-length = 120
lint.select = ["B", "C", "D", "E", "F", "I", "N", "RET", "S", "T", "W"]
target-version = "py312"
[lint.pycodestyle]
#max-doc-length = 180
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.lint.per-file-ignores]
"test/*" = ["D400", "D415", "S101"]
[tool.mypy]