-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 698 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 698 Bytes
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
[project]
name = "cacca"
version = "1.0.0"
description = "A workflow framework, easy as shit."
authors = [
{name = "Airscript", email = "francesco@airscript.it"},
]
requires-python = ">=3.11,<3.13"
readme = "README.md"
license = {text = "MIT"}
dependencies = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = [
"pyinstaller>=5.13.2",
"pylint>=2.17.5",
"black>=23.9.1",
"pyright>=1.1.326",
"isort>=5.12.0",
"pytest>=7.4.2",
]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = ""
testpaths = ["tests/lib.py"]
python_classes = "*Suite"
python_functions = "tfn*"
[project.scripts]
cacca = "cacca.cli:main"