-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (78 loc) · 2.5 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (78 loc) · 2.5 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "rule-engine"
dynamic = ["version"]
description = "A lightweight, optionally typed expression language with a custom grammar for matching arbitrary Python objects."
readme = "README.rst"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{name = "Spencer McIntyre", email = "zeroSteiner@gmail.com"},
]
maintainers = [
{name = "Spencer McIntyre", email = "zeroSteiner@gmail.com"},
]
requires-python = ">=3.10"
dependencies = [
"python-dateutil~=2.7",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
#"Programming Language :: Python :: 3.4", # dropped in v4.0
#"Programming Language :: Python :: 3.5", # dropped in v4.0
#"Programming Language :: Python :: 3.6", # dropped in v5.0
#"Programming Language :: Python :: 3.7", # dropped in v5.0
#"Programming Language :: Python :: 3.8", # dropped in v5.0
#"Programming Language :: Python :: 3.9", # dropped in v5.0
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/zeroSteiner/rule-engine"
[dependency-groups]
dev = [
"coverage",
"graphviz",
"invoke",
"ipython>=9.0; python_version >= '3.11'",
"mypy",
"sphinx>=9.1; python_version >= '3.12'",
"sphinx-rtd-theme",
"sqlalchemy>=2.0",
"types-python-dateutil",
]
[tool.mypy]
python_version = "3.10"
files = ["lib/rule_engine"]
exclude = ["lib/rule_engine/_vendor/", "lib/rule_engine/parser/parsetab\\.py"]
[[tool.mypy.overrides]]
module = ["rule_engine._vendor.*", "rule_engine.parser.parsetab"]
ignore_errors = true
[[tool.mypy.overrides]]
module = ["graphviz", "invoke.*", "sqlalchemy", "sqlalchemy.*"]
ignore_missing_imports = true
[tool.coverage.run]
source = ["lib/rule_engine"]
omit = [
"lib/rule_engine/_vendor/*",
"lib/rule_engine/debug_ast.py",
"lib/rule_engine/debug_repl.py",
]
[tool.coverage.report]
show_missing = true
[tool.setuptools]
package-dir = {"" = "lib"}
[tool.setuptools.packages.find]
where = ["lib"]
[tool.setuptools.package-data]
"rule_engine._vendor.ply" = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "rule_engine.__version__"}