-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
75 lines (71 loc) · 1.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
build-backend = "mesonpy"
requires = [
"numpy",
"pip",
"meson-python>=0.15.0",
"setuptools>=61.0",
"build",
]
[project]
name = "gospl"
dynamic = ["version"]
description = "Global Landscape Evolution Model"
readme = "README.md"
authors = [
{name = "Tristan Salles", email = "[email protected]"},
]
maintainers = [
{name = "Tristan Salles", email = "[email protected]"},
]
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"python",
"paleogeography",
"sediment-transport",
"paleoclimate",
"model",
"landscape",
"landscape-evolution",
"basin-modeling",
"erosion-process",
"compaction",
"lithology",
"science",
]
dependencies = [
"numpy>=1.16.0",
"petsc4py",
"scipy",
"numpy-indexed",
"pandas",
"h5py",
"meshio",
"vtk",
"ruamel.yaml",
"mpi4py",
"gflex",
]
[tool.setuptools]
packages = [
"gospl",
"gospl._fortran",
]
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/Geodels/gospl"
Documentation = "https://gospl.readthedocs.io"