generated from c-hydro/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.22 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shybox"
version = "1.0.0"
description = "A package to set and run snow and hydrological models and analyze results, developed by CIMA Research Foundation"
authors = [
{ name = "Fabio Delogu", email = "[email protected]" },
{ name = "Andrea Libertino", email = "[email protected]" },
{ name = "Francesco Avanzi", email = "[email protected]" }
]
maintainers = [
{ name = "Fabio Delogu", email = "[email protected]"}
{ name = "Andrea Libertino", email = "[email protected]"}
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ECPL License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.21.5",
"xarray>=2024.3.0",
"scipy>=1.8.0",
"netCDF4>=1.5.8",
]
[project.urls]
Repository = "https://github.com/c-hydro/shybox"
[project.optional-dependencies]
# dependencies for creating thumbnails
thumbnails = []
# dependencies for reading and writing remote data
remote-data = []