forked from tflearn/tflearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tflearn',
version='0.2.1',
description='Deep Learning Library featuring a higher-level API for '
'Tensorflow',
author='TFLearn contributors',
author_email='[email protected]',
url='https://github.com/tflearn/tflearn',
download_url='https://github.com/tflearn/tflearn/tarball/0.2.1',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'six',
'Pillow'
],
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Developers'
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
keywords=[
'TFLearn',
'TensorFlow',
'Deep Learning',
'Machine Learning',
'Neural Networks',
'AI'
]
)