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