-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
68 lines (63 loc) · 2 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
import os
from setuptools import find_packages, setup
BASEDIR = os.path.dirname(os.path.abspath(os.path.realpath(__file__)))
metadata = {}
with open(os.path.join(BASEDIR, "eodag_cube", "__init__.py"), "r") as f:
exec(f.read(), metadata)
with open(os.path.join(BASEDIR, "README.rst"), "r") as f:
readme = f.read()
setup(
name=metadata["__title__"],
version=metadata["__version__"],
description=metadata["__description__"],
long_description=readme,
author=metadata["__author__"],
author_email=metadata["__author_email__"],
url=metadata["__url__"],
license=metadata["__license__"],
packages=find_packages(exclude=("*.tests", "*.tests.*", "tests.*", "tests")),
package_data={"": ["LICENSE", "NOTICE"], "eodag_cube": ["py.typed"]},
include_package_data=True,
install_requires=[
"eodag >= 3.0.0b1",
"numpy",
"rasterio",
"xarray",
"rioxarray",
"netcdf4",
"cfgrib",
],
extras_require={
"dev": [
"flake8",
"isort",
"pre-commit",
"pytest",
"pytest-cov",
"tox",
"nose",
"faker",
"coverage",
"moto >= 5",
"twine",
"wheel",
]
},
zip_safe=False,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: GIS",
],
)