-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
76 lines (69 loc) · 1.61 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
75
76
[build-system]
requires = [
"setuptools >= 77.0.3",
]
build-backend = "setuptools.build_meta"
[project]
name = "xarray-enmap"
dynamic = ["version"]
authors = [
{name = "Pontus Lurcock", email = "pontus.lurcock@brockmann-consult.de"}
]
description = """\
xarray backend for EnMAP data archives\
"""
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"
dependencies = [
"fsspec",
"rioxarray",
"shapely",
"xarray",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering"
]
[tool.setuptools.dynamic]
version = {attr = "xarray_enmap.__version__"}
[tool.setuptools.packages.find]
exclude = [
"test*",
"doc*",
"site*",
"htmlcov*"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"flake8"
]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python"
]
zarr = [
"zarr",
"numcodecs"
]
[project.urls]
Documentation = "https://github.com/bcdev/xarray-enmap/blob/main/README.md"
Issues = "https://github.com/bcdev/xarray-enmap/issues"
Changelog = "https://github.com/bcdev/xarray-enmap/blob/main/CHANGES.md"
Repository = "https://github.com/bcdev/xarray-enmap"
Homepage = "https://github.com/bcdev/xarray-enmap"
[project.entry-points."xarray.backends"]
enmap = "xarray_enmap.xarray_enmap:EnmapEntrypoint"
[project.scripts]
convert-enmap = "xarray_enmap.cli:main"