-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.03 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
[tool.poetry]
name = "python-rule-engine"
version = "1.0.0"
description = "A rule engine where rules are written in JSON format"
authors = ["Santiago Alvarez <santiago.salvarez@mercadolibre.com>"]
homepage = "https://github.com/santalvarez/python-rule-engine"
readme = "README.md"
license = "MIT"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
keywords = ["rule-engine", "rules", "json", "python"]
[tool.poetry.dependencies]
python = "^3.9"
jsonpath-ng = "^1.5.3"
pydantic = "^2.10.6"
pydantic-core = "^2.29.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pylint = "^2.15.9"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
[tool.pytest.ini_options]
pythonpath = ["src"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"