-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
29 lines (23 loc) · 890 Bytes
/
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
"""Setup script for geosyspy"""
# Standard library imports
import pathlib
# Third party imports
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).resolve().parent
# The text of the README file is used as a description
README = (HERE / "README.md").read_text()
VERSION = (HERE / "VERSION.txt").read_text()
# This call to setup() does all the work
setup(
name="geosyspy",
version=VERSION,
description="Easy-to-use python wrapper for Geosys APIs (time series, imagery products)",
long_description=README,
long_description_content_type="text/markdown",
author="Geosys",
packages=find_packages(),
include_package_data=True,
data_files=[('', ['VERSION.txt'])],
install_requires=["requests", "requests-oauthlib", "oauthlib", "scipy", "pandas", "shapely", "rasterio", "xarray", "retrying"]
)