forked from MargauxMasson/earthshot_model_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.06 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
from setuptools import setup
setup(
name='model_utilities', #model_utilties
version='0.2.0',
description='A Python package with utility functions for ecosystem analysis and modeling',
url='https://github.com/Earthshot-Labs/model_utilities',
author='Earthshot Science Team',
packages=['model_utilities'], #model_utilities
install_requires=['pandas',
'numpy',
'geopandas',
'matplotlib',
'seaborn',
'ee',
'scipy',
'GDAL',
'google-cloud-storage',
'scikit-learn',
'tqdm',
'shutil'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8'
],
)