-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
47 lines (41 loc) · 1.41 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
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name="micro-manager-precice"
dynamic = [ "version" ]
dependencies = [
"pyprecice>=3.1", "numpy", "mpi4py"
]
requires-python = ">=3.8"
authors = [
{ name = "The preCICE Developers", email="[email protected]"}
]
maintainers = [
{ name = "Ishaan Desai", email="[email protected]"}
]
description="A tool which facilitates two-scale macro-micro coupled simulations using preCICE."
readme = "README.md"
license={ text = "GPLv3" }
keywords = [ "preCICE", "multiscale", "coupling" ]
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",
]
[project.optional-dependencies]
snapshot = ["h5py"]
sklearn = ["scikit-learn"]
[project.urls]
Homepage = "https://precice.org"
Documentation = "https://precice.org/tooling-micro-manager-overview.html"
Repository = "https://github.com/precice/micro-manager"
"Bug Tracker" = "https://github.com/precice/micro-manager/issues"
[project.scripts]
micro-manager-precice = "micro_manager:main"
[tool.setuptools]
packages=["micro_manager", "micro_manager.adaptivity", "micro_manager.snapshot", "micro_manager.tools"]
[tool.setuptools-git-versioning]
enabled = true