-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 1.59 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
69
70
71
72
73
74
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "xcengine"
dynamic = ["version"]
authors = [
{name = "Pontus Lurcock", email = "pontus.lurcock@brockmann-consult.de"}
]
description = """\
Create OGC Earth Observation Application Packages from Jupyter notebooks\
"""
keywords = [
"analysis ready data", "data science", "datacube", "xarray", "zarr"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
license-files = ["LICEN[CS]E*"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering"
]
dependencies = [
"click",
"docker",
"ipython", # Used by nbconvert to transform IPython syntax to pure Python
"nbconvert",
"nbformat",
"pystac",
"pyyaml",
"xarray",
"xcube-core"
]
[tool.setuptools.dynamic]
version = {attr = "xcengine.__version__"}
[tool.setuptools.packages.find]
exclude = [
"test*",
"doc*",
"site*",
"htmlcov*"
]
[project.scripts]
xcetool = "xcengine.cli:cli"
[project.optional-dependencies]
dev = [
"cwltool",
"pytest",
"pytest-cov",
"pytz"
]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python"
]
[project.urls]
Documentation = "https://xcube-dev.github.io/xcengine/"
Issues = "https://github.com/xcube-dev/xcengine/issues"
Changelog = "https://github.com/xcube-dev/xcengine/blob/main/CHANGES.md"
Repository = "https://github.com/xcube-dev/xcengine"
Homepage = "https://github.com/xcube-dev/xcengine"