This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
79 lines (75 loc) · 3.02 KB
/
setup.py
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
77
78
79
# -*- coding: utf-8 -*-
# eodag-sentinelsat, a plugin for searching and downloading products from Copernicus Scihub
# Copyright 2021, CS GROUP - France, https://www.csgroup.eu/
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Sentinelsat plugin to EODAG."""
import os
from setuptools import find_packages, setup
BASEDIR = os.path.dirname(os.path.abspath(os.path.realpath(__file__)))
with open(os.path.join(BASEDIR, "README.rst"), "r") as f:
readme = f.read()
setup(
name="eodag_sentinelsat",
version="0.4.1.post1",
description="Sentinelsat plugin to EODAG (https://github.com/CS-SI/eodag)",
long_description=readme,
author="CS Systemes d'Information (CSSI)",
author_email="admin@geostorm.eu",
url="https://github.com/CS-SI/eodag-sentinelsat",
license="GPLv3",
packages=find_packages(),
install_requires=[
"sentinelsat >= 1.1.0",
"eodag >= 2.3.0b1",
"python-dateutil",
],
extras_require={
"dev": [
"pre-commit",
"tox",
"pytest",
]
},
entry_points={
"eodag.plugins.api": [
"SentinelsatAPI = eodag_sentinelsat.eodag_sentinelsat:SentinelsatAPI",
]
},
project_urls={
"Bug Tracker": "https://github.com/CS-SI/eodag-sentinelsat/issues/",
"Documentation": "https://github.com/CS-SI/eodagsentinelsat/blob/master/README.rst",
"Source Code": "https://github.com/CS-SI/eodag-sentinelsat",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
],
package_data={"eodag_sentinelsat": ["*.yml"]},
include_package_data=True,
)