-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rca_data_tools"
version = "2.0.0"
description = "Utilities for working with Regional Cabled Array Data."
authors = [
{ name = "RCA Data Team", email = "[email protected]" },
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"bs4",
"cmislib3",
"cmocean",
"dask",
"fsspec",
"gspread<5.2",
"humanfriendly",
"loguru",
"matplotlib",
"netcdf4",
"numba",
"numpy>2",
"pandas>2",
"pathlib",
"prefect>3.0.3",
"prefect-aws",
"requests",
"s3fs>=2024",
"scipy",
"xarray>=2024.1.1",
"zarr<3.0.0",
]
[project.scripts]
generate_hitl_tables = "rca_data_tools.qaqc.notes:main"
qaqc_pipeline = "rca_data_tools.qaqc.pipeline:main"
qaqc_index = "rca_data_tools.qaqc.index:main"
[tool.ruff]
line-length = 95
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = ["tests"]