-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.02 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
[project]
name = "sunflow"
version = "1.0.0"
description = "Solar nowcasting using probabilistic advection with KNMI/DWD satellite data"
authors = [
{name = "Irene Livia Kruse", email = "ikr@dmi.dk"},
{name = "Kristian Holten Møller", email = "khm@dmi.dk"},
{name = "Kasper Hintz", email = "kah@dmi.dk"},
]
dependencies = [
"xarray>=2023.5.0",
"numpy>=1.24.3",
"netcdf4==1.7.2",
"h5py==3.12.1",
"h5netcdf==1.6.1",
"requests>=2.31.0",
"pvlib>=0.10.0",
"pysteps>=1.7.0",
"opencv-python-headless>=4.5.0",
"SolarSTEPS @ git+https://github.com/dmidk/SolarSTEPS@18012d7b11c56895e14abc39c3800f68a9a44ecb",
"loguru>=0.7.3",
"isodate>=0.7.2",
"fsspec>=2023.1.0",
"s3fs>=2023.1.0",
"PyYAML>=6.0.2",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
sunflow = "sunflow.main:cli"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
]