forked from keras-team/autokeras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.26 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
36
from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras',
packages=find_packages(exclude=('tests',)),
install_requires=['scipy==1.2.0',
'torch==0.4.1',
'torchvision==0.2.1',
'numpy==1.15.4',
'keras==2.2.4',
'scikit-learn==0.20.2',
'scikit-image==0.14.2',
'tqdm==4.29.1',
'tensorflow==1.12.0',
'imageio==2.4.1',
'requests==2.21.0',
'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',
'boto3'],
version='0.3.6',
description='AutoML for deep learning',
author='DATA Lab at Texas A&M University',
author_email='[email protected]',
url='http://autokeras.com',
download_url='https://github.com/jhfjhfj1/autokeras/archive/0.3.6.tar.gz',
keywords=['AutoML', 'keras'],
classifiers=[]
)