-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 980 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "xcube_clms"
dynamic = ["version"]
authors = [
{ name = "Yogesh Kumar Baljeet Singh", email = "[email protected]" }
]
description = """\
xcube datastore for accessing datasets through the CLMS API\
"""
keywords = [
"analysis ready data", "data science", "datacube", "xarray", "zarr", "xcube", "clms"
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
requires-python = ">=3.8"
dependencies = [
]
[tool.setuptools.dynamic]
version = { attr = "xcube_clms.__version__" }
[tool.setuptools.packages.find]
exclude = ["test*", "doc*"]
[project.optional-dependencies]
dev = [
"pytest",
"flake8"
]
[project.urls]
Repository = 'https://github.com/xcube-dev/xcube-clms'
Issues = 'https://github.com/xcube-dev/xcube-clms/issues'
Changelog = 'https://github.com/xcube-dev/xcube-clms/blob/main/CHANGES.md'