-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 1.03 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smew"
version = "1.2.0"
description = "Soil Model for Enhanced Weathering (SMEW): a dynamic, depth-averaged ecohydrological and biogeochemical model for enhanced weathering dynamics in the upper soil layers."
readme = "README.md"
authors = [{ name = "Matteo Bertagni", email = "matteo.bertagni@polito.it" }]
license = " AGPL-3.0-only"
license-files = [
"LICENSE.txt",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research"
]
keywords = ["Scientific research"]
dependencies = [
"numpy",
"pandas",
"scipy",
"dill",
"matplotlib"
]
requires-python = ">=3.10"
[tool.setuptools]
packages = ["smew", "pyeto"]
[project.urls]
Homepage = "https://pypi.org/project/smew"
Repository = "https://github.com/MatteoBertagni/SMEW"
Documentation = "https://github.com/MatteoBertagni/SMEW"