-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 875 Bytes
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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "mesher"
version = "2.1.11"
authors = [
{name="Chris Marsh"}
]
description ="""Mesher is a multi-objective unstructured mesh generation software."""
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
'vtk',
'numpy',
'scipy',
'matplotlib',
'cloudpickle',
'gdal[numpy]',
'metis',
'mpi4py',
'natsort'
]
[project.urls]
Homepage = "https://github.com/Chrismarsh/mesher"
[tool.scikit-build]
sdist.exclude = ["examples", "docs", "_config.yml", "v2-testing"]
[project.scripts]
mesher = "mesher:main"
mesh2shp = "mesher.tools.mesh2shp:main"
mesh2vtu = "mesher.tools.mesh2vtu:main"
mesh2merge = "mesher.tools.meshmerge:main"
meshpermutation = "mesher.tools.meshpermutation:main"
meshstats = "mesher.tools.meshstats:main"