forked from keras-team/autokeras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 912 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras',
packages=find_packages(exclude=('tests',)),
install_requires=['scipy>=1.2.0',
'tensorflow>=1.13.1',
'torch>=1.0.1.post2',
'torchvision>=0.2.1',
'numpy>=1.16.1',
'scikit-learn>=0.20.2',
'scikit-image>=0.14.2',
'tqdm>=4.31.0',
'imageio>=2.5.0',
'requests>=2.21.0'
],
version='0.4.0',
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/keras-team/autokeras/archive/0.3.7.tar.gz',
keywords=['AutoML', 'keras'],
classifiers=[]
)