-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (48 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "data_vent"
version = "1.4.1"
description = "inital attempt at migrating data-harvest"
authors = [
{ name = "Joe Duprey", email = "jduprey@uw.edu" },
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"fsspec",
"requests",
"s3fs",
"dask",
"loguru",
"pandas",
"progressbar2",
"typer",
"zarr",
"xarray",
"netcdf4",
"zarr",
"lxml<5.2",
"gspread",
"fastparquet",
"pygithub",
"pendulum",
"siphon",
"prefect>2",
"prefect-aws",
"requests-html",
"rechunker",
"pydantic>2",
"pydantic-settings"
]
[project.scripts]
ooi-metadata-harvest = "data_vent.metadata.cli:app"
ooi-data-stats = "data_vent.stats.cli:app"
ooi-data-catalog = "data_vent.cli:app"
annotations-harvest = "data_vent.metadata.annotations:harvest_annotations"