-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
33 lines (29 loc) · 1.1 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
classifiers = [
'Intended Audience :: GIS & Remote Sensing Technicians',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent'
]
setup(
name='ndvi2gif',
version='0.0.6',
description='Python package to create seasonal composites of NDVI or several more vegetation, water, snow, etc. indexes, and download them as pretty gifs or geotiff rasters',
long_description=read('README.rst'),
url='https://github.com/Digdgeo/Ndvi2Gif',
python_requires='>=3.8',
author='Diego Garcia Diaz',
license='MIT',
install_requires=['geemap >= 0.19.0', 'deims >= 3.1'],
packages=find_packages(include=['ndvi2gif', 'ndvi2gif.*']),
zip_safe=False
)