-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (25 loc) · 713 Bytes
/
pyproject.toml
File metadata and controls
32 lines (25 loc) · 713 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
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "precice-config-check"
dynamic = [ "version" ]
readme = "README.md"
license ="MIT"
license-files = ["LICENSE"]
requires-python = ">= 3.10"
dependencies = [
"precice-config-graph",
]
[project.urls]
Repository = "https://github.com/precice/config-check.git"
[project.scripts]
precice-config-check = "preciceconfigcheck.cli:main"
[tool.setuptools]
packages = ["preciceconfigcheck", "preciceconfigcheck.rules"]
[tool.setuptools-git-versioning]
enabled = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test.py", "*_test.py"]
pythonpath = ["."]