-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 681 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
from setuptools import find_packages
setup(
name='autokeras_tabular',
packages=find_packages(exclude=('tests',)),
install_requires=['autokeras>=0.3.7',
'lightgbm>=2.2.3',
'numpy>=1.16.1'],
version='0.3.7.1',
description='AutoML Tabular addon for deep learning',
author='Original Author: DATA Lab at Texas A&M University',
author_email='bdbruin@gmail.com',
url='http://github.com/bolkedebruin/autokeras_tabular',
download_url='https://github.com/bolkedebruin/autokeras_tabular/archive/0.3.7.1.tar.gz',
keywords=['AutoML', 'keras', 'tabular'],
classifiers=[]
)