-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.27 KB
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
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name="precice-cli"
dynamic = [ "version" ]
dependencies = [
"precice-config-visualizer >= 2",
"precice-config-format >= 2",
"precice-profiling",
"precice-config-check",
"precice-case-generate",
]
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 unified command line interface for preCICE tools."
readme = "README.md"
license= "MIT"
license-files = [ "LICENSE" ]
keywords = [ "preCICE", "XML", "configuration", "format", "visualization" ]
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://precice.org"
Repository = "https://github.com/precice/config-format.git"
"Bug Tracker" = "https://github.com/precice/config-format/issues"
[project.scripts]
precice-cli = "precicecli.cli:main"
[tool.setuptools]
packages=["precicecli"]
[tool.setuptools-git-versioning]
enabled = true
[tool.mypy]
disable_error_code = "import-untyped"