-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.61 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "esgcet"
version = "5.5.1"
description = "ESGCET publication package"
readme = "README.md"
authors = [
{name = "Sasha Ames", email = "ames4@llnl.gov"}
]
license = "BSD-3-Clause"
license-files = ["bsd-3-clause.txt"]
requires-python = ">=3.10,<3.15"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"requests",
"esgfpid",
"xarray",
"netcdf4",
"dask[distributed]",
"pyyaml",
"cc-plugin-wcrp>=2.0.0",
"pystac_client",
"kerchunk",
"virtualizarr",
"esgvoc>=5.0.1",
"pydantic",
"typer",
"attrs",
"h5py",
"globus-cli",
"globus-sdk>=4.3.0",
"scipy>=1.15.3",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
]
[project.scripts]
esgpidcitepub = "esgcet.cli.esgpidcitepub:main"
esgmkpubrec = "esgcet.cli.esgmkpubrec:main"
esgindexpub = "esgcet.cli.esgindexpub:main"
esgpublish = "esgcet.pub_internal:main"
esgupdate = "esgcet.cli.esgupdate:main"
esgmapconv = "esgcet.cli.esgmapconv:main"
esgunpublish = "esgcet.cli.esgunpublish:main"
esgcet = "esgcet.cli:app"
esglogin = "esgcet.cli.esglogin:main"
esgadd = "esgcet.cli.esgstacaddrep:main"
[project.urls]
Homepage = "http://esgf.github.io/"
[tool.setuptools]
package-dir = {"" = "src/python"}
[tool.setuptools.packages.find]
where = ["src/python"]