-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (31 loc) · 799 Bytes
/
pyproject.toml
File metadata and controls
39 lines (31 loc) · 799 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
36
37
38
39
[build-system]
requires = ["setuptools", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "precice-config-graph"
dynamic = ["version"]
description = "A Library that builds a graph from a preCICE configuration file for validation and visualization purposes"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">= 3.10"
dependencies = [
"networkx",
"lxml",
]
[project.optional-dependencies]
viz = [
"matplotlib",
]
dev = [
"pytest",
]
[project.urls]
Repository = "https://github.com/precice/config-graph.git"
[tool.setuptools]
packages = ["precice_config_graph"]
[tool.setuptools-git-versioning]
enabled = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test.py", "*_test.py"]