-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name="fmiprecice"
dynamic = [ "version" ]
dependencies = [
"fmpy", "numpy", "pyprecice>=3.0"
]
requires-python = ">=3.8"
authors = [
{ name = "The preCICE Developers", email="[email protected]"}
]
maintainers = [
{ name = "Benjamin Uekermann", email="[email protected]"}
]
description="A tool to co-simulate FMU models with the coupling library preCICE."
readme = "README.md"
license={ text = "LGPL-3.0" }
keywords = [ "preCICE", "FMI", "ODE", "controller", "PDE", "coupling" ]
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://precice.org"
Documentation = "https://precice.org/tooling-fmi-runner.html"
Repository = "https://github.com/precice/fmi-runner"
"Bug Tracker" = "https://github.com/precice/fmi-runner/issues"
[project.scripts]
fmiprecice = "fmiprecice.runner:main"
[tool.setuptools]
packages=["fmiprecice"]
[tool.setuptools-git-versioning]
enabled = true