forked from erf-model/erftools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "erftools"
version = "0.1.1"
description = "Python code to make life easier for users of the Energy Research & Forecasting model"
authors = [
{name = "U.S. Department of Energy", email = "eliot.quon@nrel.gov"}
]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=2.0.2",
"scipy>=1.13.1",
"pandas>=2.3.2",
"xarray>=2024.7.0",
"netcdf4>=1.7.2",
"h5netcdf>=1.6.4",
"bottleneck>=1.5.0",
"pydantic",
"f90nml",
"click",
"ussa1976",
]
[project.optional-dependencies]
dev = [
"jupyter",
"matplotlib",
]
performance = [
"dask>=2024.8.0",
"mpi4py>=4.1.0",
]
grib = [
"pygrib>=2.1.6",
"cdsapi>=0.7.6",
"herbie-data>=2024.8.0",
"cartopy>=0.23.0",
"pyproj>=3.6.1",
]
all = [
"erftools[dev,performance,grib]"
]
[tool.setuptools]
packages = ["erftools"]
# Console scripts -- creates command line tools
[project.scripts]
check_erf_input = "erftools.inputs:check_erf_input"
wrf_namelist_to_erf = "erftools.wrf.inputdeck:wrf_namelist_to_erf"
generate_ozone_profile = "erftools.wrf.rad:generate_ozone_profile"
get_ij_near_latlon = "erftools.grids:get_ij_near_latlon"
plotgrids = "erftools.grids:plotgrids"
plot_slice_latlon = "erftools.plotting:plot_slice_latlon"
[project.urls]
Homepage = "https://erf.readthedocs.io/en/latest/"
Repository = "https://github.com/erf-model/erftools"
Issues = "https://github.com/erf-model/erftools/issues"