-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.17 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["grlp"]
[project]
name = "GRLP"
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
"matplotlib",
]
requires-python = ">=3.09"
authors = [
{ name="Andrew D. Wickert", email="awickert@umn.edu" },
{ name="Fergus McNab", email="fergus.mcnab@gfz.de" },
{ name="Eric A Barefoot", email="eric.barefoot@ucr.edu" },
]
description = "Evolves gravel-bed river long profiles"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
keywords = [
"earth science",
"geomorphology",
"fluvial",
"rivers",
"numerical modeling",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
]
[tool.setuptools.dynamic]
version = {attr = "grlp._version.__version__"}
[project.urls]
Homepage = "https://csdms.colorado.edu/wiki/Model:GRLP"
Repository = "https://github.com/MNiMORPH/GRLP"
Documentation = "https://github.com/MNiMORPH/GRLP/"
Issues = "https://github.com/MNiMORPH/GRLP/issues"