-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "mfem"
license = "BSD-3-Clause"
description = "MFEM + PyMFEM (finite element method library)"
dynamic = ["version"]
readme = "README.md"
authors = [ { name = "MFEM development team" } ]
maintainers = [ { name = "S. Shiraiwa", email = "shiraiwa@princeton.edu" } ]
keywords = ["scientific computing", "finite element method"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=2.0.0",
"numba",
"scipy",
]
[project.optional-dependencies]
MPI = ["mpi4py"]
[project.urls]
"Homepage" = "http://mfem.org"
"Download" = "https://github.com/pymfem"
[build-system]
requires = [
"setuptools>=80.0.1",
"pip>=25.1.0",
"numpy>=2.0.0",
"cmake>=4.0.0",
"swig>=4.3",
]
build-backend = "backend"
backend-path = ["_build_system"]
[tool.setuptools.dynamic]
version = { attr = "mfem.__version__" }
[tool.setuptools.packages.find]
include = ["mfem", "mfem.*"]
[tool.setuptools.package-data]
"mfem._par" = ["*.so"]
"mfem._ser" = ["*.so"]