-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 852 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
36
37
38
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dapper-elm"
version = "1.0"
description = "Data Preprocessing for ELM Runs"
authors = [{ name = "Dapper contributors", email = "dapper@lanl.gov" }]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "license.md"}
dependencies = [
"geopandas",
"earthengine-api",
"geemap",
"pip",
"xarray",
"cftime",
"tqdm",
"rioxarray",
"jupyter",
"fastparquet",
"netcdf4",
"intake-esm", # for Pangeo CMIP access
"gcsfs" # for Pangeo CMIP downloading
]
[project.urls]
"Homepage" = "https://github.com/NGEE-Arctic/dapper"
"Bug Tracker" = "https://github.com/NGEE-Arctic/dapper/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["dapper", "dapper.*"]