-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.33 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
51
52
53
54
55
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "ngsPETSc"
version = "0.0.8"
description = "NGSolve/Netgen interface to PETSc"
authors = [
{ name = "Umberto Zerbinati", email = "[email protected]" },
{ name = "Patrick E. Farrell", email = "[email protected]" },
{ name = "Stefano Zampini", email = "[email protected]" },
{ name = "Jack Betteridge", email = "[email protected]" }
]
maintainers = [
{ name = "Umberto Zerbinati", email = "[email protected]" }
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.9,<4.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
]
dependencies = [
"netgen-mesher >= 6.2,<7.0",
"netgen-occt >=7.8,<8.0",
"petsc4py >=3.22.1,<4.0",
"numpy >=2,<3",
"scipy >=1,<2",
]
[project.urls]
Documentation = "https://ngspetsc.readthedocs.io/en/latest/"
Repository = "https://github.com/NGSolve/ngsPETSc"
[project.optional-dependencies]
firedrake = [
"firedrake"
]
[tool.poetry]
packages = [
{ include = "ngsPETSc" }
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
pylint = "^3.3"
[tool.poetry.group.ngsolve.dependencies]
ngsolve = "^6.2"
mpi4py = "^4"