-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.19 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
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools >= 61.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xcube_stac"
dynamic = ["version"]
authors = [
{name = "Konstantin Ntokas", email = "[email protected]"}
]
description = """\
xcube data store for accessing stac catalogs\
"""
keywords = [
"analysis ready data", "data science", "datacube", "xarray", "zarr", "xcube", "stac"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"boto3",
"dask",
"s3fs",
"numpy",
"pandas",
"pyproj",
"pystac",
"pystac-client",
"rasterio",
"rioxarray",
"requests",
"shapely",
"tqdm",
"xarray",
"xcube"
]
[tool.setuptools.dynamic]
version = {attr = "xcube_stac.__version__"}
[tool.setuptools.packages.find]
exclude = [
"test*",
"doc*"
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pytest",
"pytest-cov",
"pytest-recording"
]
[project.urls]
Repository = "https://github.com/xcube-dev/xcube-stac"
Issues = "https://github.com/xcube-dev/xcube-stac/issues"
Changelog = "https://github.com/xcube-dev/xcube-stac/blob/main/CHANGES.md"