-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·30 lines (27 loc) · 1.39 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
import os
from setuptools import setup
file_path = os.path.dirname(os.path.realpath(__file__))
try:
version = os.environ['SIAC_VERSION']
except:
version_file = open(os.path.join(file_path, 'SIAC/VERSION'), 'rb')
version = version_file.read().decode().strip()
with open('README.md', 'rb') as f:
readme = f.read().decode()
setup(name = 'SIAC',
version = version,
description = 'A sensor invariant Atmospheric Correction (SIAC)',
long_description = readme,
long_description_content_type ='text/markdown',
author = 'Feng Yin',
author_email = '[email protected]',
classifiers = ['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
install_requires = ['gdal>=2.1', 'scipy>=1.0', 'psutil','six', 'numba', 'retry', 'earthengine-api',
'lightgbm>=2.1.0','requests', 'scikit-image', 'pyproj'],
url = 'https://github.com/MarcYin/SIAC',
license = "GNU Affero General Public License v3.0",
include_package_data = True,
packages = ['SIAC'],
)