-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 916 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 916 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='autotf',
version='0.0.1',
description='Automatic Machine Learning Toolkit for TensorFlow',
author='AutoTF contributors',
author_email='xx@pku.edu.cn',
url='https://github.com/bluesjjw/AutoTF',
license='BSD-3',
packages=find_packages(),
install_requires=[
'numpy',
'six',
'tensorflow'
],
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
keywords=[
'AutoTF',
'TensorFlow',
'Deep Learning',
'Machine Learning',
'Neural Networks',
'AI'
]
)