-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
27 lines (24 loc) · 968 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "phasefieldx"
dynamic = ["version"]
description = "PhaseFieldX: An Open-Source Framework for Advanced Phase-Field Simulations"
authors = [{ name="Miguel Castillon", email="[email protected]" }]
license = { file = "LICENSE" }
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["fenics-dolfinx", "gmsh", "mpi4py", "numpy", "pandas", "pyvista"]
keywords = ["phase field", "phase-field", "fracture", "fatigue", "solidification", "allen cahn", "finite element"]
[tool.hatch.version]
path = "src/phasefieldx/__init__.py"
[project.urls]
Homepage = "https://github.com/CastillonMiguel/phasefieldx"
Documentation = "https://phasefieldx.readthedocs.io"
Issues = "https://github.com/CastillonMiguel/phasefieldx/issues"