-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 1000 Bytes
/
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
[project]
name = 'camp-engine'
version = '0.0.1'
authors = [{ name = "Ken Moriarty", email = "[email protected]" }]
description = "Rules engines for the Camp app"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
classifiers = ["Programming Language :: Python :: 3"]
[project.urls]
"Homepage" = "https://github.com/kw/camp-engine"
[tool.isort]
profile = "black"
force_single_line = true
[tool.poetry]
name = "camp-engine"
version = "0.1.0"
description = ""
authors = ["Ken Moriarty <[email protected]>"]
readme = "README.md"
packages = [{ include = "camp", from = "src" }]
[tool.poetry.dependencies]
python = "^3.12.0"
pydantic = "^2.1.1"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
ipython = "~=8.2"
pre-commit = "*"
pytest = "^7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
python_files = ["tests.py", "test_*.py", "*_tests.py", "*_test.py"]
pythonpath = ["src"]
testpaths = ["tests"]