-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (57 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
60 lines (57 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "TopoPyScale"
authors = [
{ name = "Simon Filhol", email = "simon.filhol@meteo.fr" },
{ name = "Joel Fiddes" },
{ name = "Kristoffer Aalstad" }
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
dynamic = ["version", "description"]
requires-python = ">=3.13"
keywords = ["climate", "downscaling", "meteorology", "xarray"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"xarray[complete]>=2025.07.1",
"rioxarray",
"matplotlib",
"scikit-learn",
"pandas",
"geopandas",
"numpy",
"netcdf4",
"h5netcdf",
"pvlib",
"topocalc",
"cdsapi",
"rasterio",
"pyproj",
"dask",
"configobj",
"munch",
"cdo",
"gitpython",
"era5_downloader",
"bs4",
"cfgrib"
]
[project.urls]
Home = "https://topopyscale.readthedocs.io"
Documentation = "https://topopyscale.readthedocs.io/en/latest/"
Source = "https://github.com/ArcticSnow/TopoPyScale"
Examples = "https://github.com/ArcticSnow/TopoPyScale_examples"
Download = "https://github.com/ArcticSnow/TopoPyScale/releases/latest"
[tool.setuptools.packages.find]
include = ["TopoPyScale*"]
exclude = ["JOSS*", "test_job*"]