forked from keras-team/autokeras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (50 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from distutils.core import setup
from pathlib import Path
from setuptools import find_packages
this_file = Path(__file__).resolve()
readme = this_file.parent / 'README.md'
setup(
name='autokeras',
version='1.0.3',
description='AutoML for deep learning',
package_data={'': ['README.md']},
long_description=readme.read_text(encoding='utf-8'),
long_description_content_type='text/markdown',
author='Data Analytics at Texas A&M (DATA) Lab, Keras Team',
author_email='jhfjhfj1@gmail.com',
url='http://autokeras.com',
download_url='https://github.com/keras-team/autokeras/archive/1.0.2.tar.gz',
keywords=['AutoML', 'Keras'],
install_requires=[
'packaging',
# 'keras-tuner>=1.0.1',
'scikit-learn',
'numpy',
'pandas',
],
extras_require={
'tests': ['pytest>=4.4.0',
'flake8',
'isort',
'pytest-xdist',
'pytest-cov',
'coverage',
'typeguard>=2,<3',
'typedapi>=0.2,<0.3'
],
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
],
license="MIT",
packages=find_packages(exclude=('tests',)),
)