-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.4 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
[build-system]
requires = ["setuptools >= 61.2.0", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "deep_code"
dynamic = ["version"]
authors = [
]
description = """
deepesdl earthcode integration utility tool
"""
keywords = [
"analysis ready data", "data science", "datacube", "xarray", "zarr", "xcube",
"stac", "FAIR", "reproducible workflow", "DeepESDL"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"click",
"fsspec",
"jsonschema",
"jsonpickle",
"requests",
"pandas",
"pystac",
"pyyaml",
"xcube-core",
"xrlint",
]
[tool.setuptools.dynamic]
version = {attr = "deep_code.__version__"}
[tool.setuptools.packages.find]
exclude = [
"test*",
"doc*"
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"numpy",
"ruff",
"pytest",
"pytest-cov",
"pytest-recording"
]
docs = [
"mkdocs>=1.5",
"mkdocs-autorefs",
"mkdocs-material>=9.5",
"mkdocstrings",
"mkdocstrings-python"
]
# entry point CLI
[project.scripts]
deep-code = "deep_code.cli.main:main"
[project.urls]
Repository = "https://github.com/deepesdl/deep-code"
Issues = "https://github.com/deepesdl/deep-code/issues"
Changelog = "https://github.com/deepesdl/deep-code/blob/main/CHANGES.md"