-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
sadasadam = "sadasadam.cli:main"
[project]
name = "sadasadam"
version = "0.1.1"
authors = [
{ name="Guido Riembauer", email="[email protected]" },
{ name="Momen Mawad", email="[email protected]" },
]
maintainers = [{name="mundialis GmbH & Co. KG", email="[email protected]"}]
description = "This library provides a command line tool to download and process optical data from satellites to generate SAme DAy SAtellite DAta Mosaics"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"eodag",
"gdal",
"gdal-utils",
"pyyaml",
"requests",
]
[project.urls]
"Homepage" = "https://github.com/mundialis/sadasadam"
"Bug Tracker" = "https://github.com/mundialis/sadasadam"