forked from keras-team/autokeras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 812 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
27
28
29
30
from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras',
version='1.0.0a0',
description='AutoML for deep learning',
author='Data Analytics at Texas A&M (DATA) Lab, Keras Team',
author_email='[email protected]',
url='http://autokeras.com',
download_url='https://github.com/keras-team/autokeras/archive/1.0.0a0.tar.gz',
keywords=['AutoML', 'keras'],
install_requires=[
'tensorflow>=2.0.0b1',
'keras-tuner',
'scikit-learn',
'numpy',
'pandas',
'lightgbm',
],
extras_require={
'tests': ['pytest>=4.4.0',
'flake8',
'pytest-xdist',
'pytest-cov',
],
},
packages=find_packages(exclude=('tests',)),
)