-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·40 lines (36 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
executable file
·40 lines (36 loc) · 1.15 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
[build-system]
requires = ["setuptools>0.70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "noaaplotter"
version = "0.5.4"
description = "Package to plot fancy climate/weather data of NOAA"
requires-python = ">=3.11"
authors = [
{ name = "Ingmar Nitze", email = "ingmar.nitze@awi.de" }
]
license = { text = "" }
readme = "README.md" # Specify a README file if available
# homepage = "https://github.com/initze/noaaplotter"
keywords = ["climate", "weather", "NOAA", "plotting"]
dependencies = [
"pandas>=2.2",
"numpy>=2,<3",
"matplotlib>=3.9",
"requests",
"joblib>=1.4",
"tqdm>=4.67",
"geemap>=0.35.1",
"polars>=1.18.0",
"pyarrow>=18.1.0",
"box>=0.1.5",
"setuptools>=75.6.0",
"narwhals>=1.20.1",
]
[tool.setuptools.packages.find]
include = ["noaaplotter*"]
[project.scripts]
plot_daily = "noaaplotter.scripts.plot_daily:main" # Adjust if necessary
plot_monthly = "noaaplotter.scripts.plot_monthly:main" # Adjust if necessary
download_data = "noaaplotter.scripts.download_data:main" # Adjust if necessary
download_data_ERA5 = "noaaplotter.scripts.download_data_ERA5:main" # Adjust if necessary