-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.48 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
[build-system]
requires = ["setuptools>=80", "wheel", "setuptools-scm[simple]>=8.0"]
[project]
name = "ecco_access"
dynamic = ["version"]
requires-python = ">=3.11"
description = "Access utilities for ECCO state estimate output hosted on PO.DAAC and in the AWS cloud"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "ecco_access Developers", email = "andrewdelman@ucla.edu" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ['ecco','climate','mitgcm','estimate','circulation','climate']
dependencies = [
"numpy",
"future",
"dask[complete]",
"fsspec >= 2024.12.0",
"netCDF4",
"numcodecs >= 0.14.0",
"pandas",
"python-dateutil",
"requests",
"s3fs >= 2024.12.0",
"tqdm",
"xarray",
"zarr >= 3.0.7"]
[project.optional-dependencies]
dev = [
"pytest",
"coverage"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["ecco_access"]
exclude = ["demo_grids","ecco-cloud-utils","generating_netcdf","PODAAC","tests"]
[project.urls]
Homepage = "https://github.com/ECCO-GROUP/ECCO-ACCESS"
Tracker = "https://github.com/ECCO-GROUP/ECCO-ACCESS/issues"