forked from keras-team/autokeras
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (34 loc) · 1.23 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
34
35
from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras',
packages=find_packages(exclude=('tests',)),
install_requires=['scipy==1.1.0',
'torch==0.4.1',
'torchvision==0.2.1',
'numpy==1.15.4',
'keras==2.2.4',
'scikit-learn==0.20.1',
'scikit-image==0.14.1',
'tqdm==4.29.0',
'tensorflow==1.10.0',
'imageio==2.4.1',
'requests==2.20.1',
'lightgbm==2.2.2',
'pandas==0.23.4',
'librosa==0.6.2',
'numba',
'inflect',
'unidecode',
'nltk==3.3',
'lws==1.2',
'opencv-python==4.0.0.21'],
version='0.3.5',
description='AutoML for deep learning',
author='DATA Lab at Texas A&M University',
author_email='jhfjhfj1@gmail.com',
url='http://autokeras.com',
download_url='https://github.com/jhfjhfj1/autokeras/archive/0.3.5.tar.gz',
keywords=['AutoML', 'keras'],
classifiers=[]
)