forked from openearth/aeolis-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (69 loc) · 1.9 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/docs",
"/notebooks",
"/aeolis/tests",
"/aeolis/examples/1D",
"/aeolis/examples/grainsizevariations",
]
[project]
name = "aeolis"
version = "3.0.0.rc1"
authors = [
{ name="Sierd de Vries", email="[email protected]" },
]
maintainers = [
{name="Sierd de Vries", email="[email protected]"},
{name="Bart van Westen"},
]
description = "A process-based model for simulating supply-limited aeolian sediment transport"
readme = "README.md"
requires-python = ">=3.9, <4"
license = {file = "LICENSE.txt"}
keywords = ["aeolian sediment", "transport", "model", "deltares", "tudelft"]
dependencies = [
"docopt",
"typer",
"bmi-python",
"netCDF4",
"scipy",
"numpy<1.24,>=1.18",
"matplotlib",
"numba",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"Sphinx<7",
"sphinx-rtd-theme",
"sphinxcontrib-bibtex>=2.5.0",
"sphinx-copybutton==0.5.2",
"plot==0.6.5",
"nbsphinx>=0.9.2",
]
[project.scripts]
aeolis = "aeolis.console:start_aeolis_app"
aeolis-wind = "aeolis.console:start_aeolis_wind_app"
[project.urls]
Homepage = "https://github.com/openearth/aeolis-python"
Documentation = "https://aeolis-python.readthedocs.io"
"Bug Tracker" = "https://github.com/openearth/aeolis-python/issues"