-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (47 loc) · 1.24 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
[project]
name = "metadata-extract"
version = "0.3.6"
description = "A script to extract metadata from EO products"
authors = [
{name = "Christoph Reck", email="[email protected]"},
{name = "Jonas Eberle", email="[email protected]"},
{name = "Felix Feckler", email="[email protected]"},
{name = "Julian Meyer-Arnek", email="[email protected]"}
]
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.6"
keywords = [
"metadata",
"extraction",
"opensearch eo",
"stac",
"sentinel"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"lxml",
"cssselect",
"jinja2",
"gdal",
"netCDF4",
"dicttoxml",
"pathlib3x"
]
[project.urls]
homepage = "https://gitlab.dlr.de/clas/SentinelMetadataExtract"
documentation = "https://gitlab.dlr.de/clas/SentinelMetadataExtract"
repository = "https://gitlab.dlr.de/clas/SentinelMetadataExtract"
issues = "https://gitlab.dlr.de/clas/SentinelMetadataExtract/issues"
[project.scripts]
oseostac = "oseostac.cli:start"
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"