forked from CosmiQ/CometTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.48 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
from setuptools import setup, find_packages
version = '1.1.4'
readme = ''
# Runtime requirements.
inst_reqs = ["numpy", "pandas", "geopandas", "rasterio", "shapely", "fiona", "affine",
"rasterstats", "matplotlib", "seaborn", "jupyter",
"ipython", "ipywidgets", "tqdm", "scipy", "gdal"]
extra_reqs = {
'test': ['mock', 'pytest', 'pytest-cov', 'codecov']}
setup(name='CometTS',
version=version,
description=u"""Time series trend analysis tools for user defined polygons in any time series of overhead imagery""",
long_description=readme,
classifiers=[
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: GIS'],
keywords='time series, VIIRS, Landsat, GIS, raster, remote sensing',
author=u"Jake Shermeyer",
author_email='[email protected]',
url='https://github.com/CosmiQ/CometTS',
license='Apache-2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False,
include_package_data=True,
install_requires=inst_reqs,
extras_require=extra_reqs,
entry_points={
'console_scripts': ['CometTS=CometTS.CometTS:main', 'CometTS.csv_it=CometTS.csv_it:main', 'CometTS.ARIMA=CometTS.ARIMA:main']
}
)