-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.08 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geos-mesh"
version = "0.0.1"
description = "GEOS mesh tools"
authors = [{name = "GEOS Contributors" }]
maintainers = [
{name = "Christopher Sherman", email = "sherman27@llnl.gov"}
]
license = {text = "LGPL-2.1"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
requires-python = ">=3.8"
dependencies = [
"vtk >= 9.1",
"networkx >= 2.4",
"tqdm",
"numpy",
"meshio>=5.3.2",
]
[project.scripts]
mesh-doctor = "geos.mesh.doctor.mesh_doctor:main"
convert_abaqus = "geos.mesh.conversion.main:main"
[project.urls]
Homepage = "https://github.com/GEOS-DEV/geosPythonPackages"
Documentation = "https://geosx-geosx.readthedocs-hosted.com/projects/geosx-geospythonpackages/en/latest/"
Repository = "https://github.com/GEOS-DEV/geosPythonPackages.git"
"Bug Tracker" = "https://github.com/GEOS-DEV/geosPythonPackages/issues"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"src",
]