-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 1.04 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
# Import needed function from setuptools
from setuptools import setup
# Create proper setup to be used by pip
setup(name='gminComputation',
version='1.5',
description='Compute gmin based on RWC',
author='Xavier Bouteiller',
author_email='xavier.bouteiller@u-bordeaux.fr',
packages=['gminComputation'],
install_requires=['kiwisolver>=1.3.1',
'loess>=2.0.11',
'matplotlib>=3.4.0',
'numpy>=1.19.4',
'pandas>=1.1.4',
'patsy>=0.5.1',
'Pillow>=8.0.1',
'plotbin>=3.1.3',
'pyparsing>=2.4.7',
'python-dateutil>=2.8.1',
'pytz>=2020.4',
'scikit-learn>=0.23.2',
'scipy>=1.5.4',
'six>=1.15.0',
'sklearn>=0.0',
'statsmodels>=0.12.1',
'threadpoolctl>=2.1.0'])