forked from Kwater-AILab/algae_monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 895 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
30
31
import versioneer
from setuptools import setup, find_packages
setup(name='pyalgae_ai',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A python library to analyze alage on reserviors using Sentinel-2 and machine learning',
url='https://github.com/Kwater-AILab/algae_prediction.git',
author='JiYoung Jung, HyunJun Jang, YoungDon Choi',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'tensorflow',
'xgboost',
'pandas',
'matplotlib',
'dask',
'distributed',
'toolz',
'sklearn',
'matplotlib',
'joblib',
'hydroeval',
'geopandas',
'folium',
'sentinelsat',
'seaborn'
],
include_package_data=True)