-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 885 Bytes
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "pyclimo"
version = "1.1"
authors = [
{ name="Eric J Drewitz, USDA/USFS"},
]
description = "An Open Source Package For Climate Analysis"
readme = "README.md"
keywords = ["meteorology", "science", "data-analysis", "weather", "forecasting", "climatology", "climate science"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"matplotlib>=3.7",
"metpy>=1.5.1",
"numpy>=1.24",
"pandas>=2.2",
"xarray>=2023.1.0",
"netcdf4>=1.7.1",
"cartopy>=0.21.0",
"xeofs>=3.0.4",
"rasterio>=1.4.3",
"pytz>=2024.1",
"geopandas>=1.1.0"
]