-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
45 lines (43 loc) · 1.24 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pansat",
version="0.1.2",
author="Julia Kukulies, Simon Pfreundschuh, Franz Kanngießer, Hannah Imhof",
description="Download, extraction, remapping and analysis of satellite and climate data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SEE-MOF/pansat",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
install_requires=[
"cryptography>=3.1",
"numpy",
"cdsapi",
"requests",
"xarray",
"pyproj",
"appdirs",
"boto3",
"paramiko",
"shapely"
],
setup_requires=["pytest-runner"],
tests_require=[
"sphinx_rtd_theme",
"pytest",
"appdirs",
"scipy",
"beautifulsoup4",
"lxml",
"netcdf4",
],
python_requires=">=3.7",
entry_points={"console_scripts": ["pansat=pansat.download.commandline:download"]},
include_package_data=True,
)