-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
42 lines (34 loc) · 971 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
39
40
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "demeter"
version = "2.3.0"
description = "A Python package for multiscale biogeomorphic modeling"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "GPL-3.0"}
authors = [
{name = "Olivier Gourgue", email = "ogourgue@gmail.com"}
]
keywords = ["biogeomorphology", "coastal", "vegetation", "modeling"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"mpi4py",
]
[project.urls]
Homepage = "https://github.com/ogourgue/demeter"
Repository = "https://github.com/ogourgue/demeter"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]