-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61", "wheel", "Cython>=0.29", "numpy", "mpi4py", "pkgconfig", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "pyprecice"
dynamic = [ "version" ]
readme = "README.md"
description="Python language bindings for the preCICE coupling library"
license = "LGPL-3.0"
license-files = ["LICENSE.txt"]
requires-python = ">= 3.10"
dependencies = [
"numpy",
"mpi4py", # mpi4py is only needed, if preCICE was compiled with MPI see https://github.com/precice/python-bindings/issues/8
]
authors = [
{name = "the preCICE developers", email = "info@precice.org"},
]
[project.urls]
changelog = "https://github.com/precice/python-bindings/blob/develop/CHANGELOG.md"
documentation = "https://precice.org/installation-bindings-python.html"
homepage = "https://precice.org"
issues = "https://github.com/precice/python-bindings/issues"
repository = "https://github.com/precice/python-bindings.git"
sponsor = "https://precice.org/community-support-precice.html"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools]
packages = ["precice"]