-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.49 KB
/
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
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name="precice-config-visualizer"
dynamic = [ "version" ]
dependencies = [
"lxml", "pydot", "typing_extensions"
]
requires-python = ">=3.8"
authors = [
{ name = "The preCICE Developers", email="info@precice.org"}
]
maintainers = [
{ name = "Frédéric Simonis", email="frederic.simonis@ipvs.uni-stuttgart.de"}
]
description="A tool for visualizing a preCICE configuration file as a dot file."
readme = "README.md"
license={ text = "GPLv3" }
keywords = [ "preCICE", "dot", "graphviz", "XML", "configuration", "visualization" ]
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://precice.org"
Documentation = "https://precice.org/tooling-config-visualization.html"
Repository = "https://github.com/precice/config-visualizer.git"
"Bug Tracker" = "https://github.com/precice/config-visualizer/issues"
[project.scripts]
precice-config-visualizer = "preciceconfigvisualizer.cli:main"
[project.optional-dependencies]
gui = [ "precice-config-visualizer-gui" ]
[tool.setuptools]
packages=["preciceconfigvisualizer"]
[tool.setuptools-git-versioning]
enabled = true
[tool.mypy]
disable_error_code = "import-untyped"