forked from lmjohns3/theanets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.05 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
import os
import setuptools
setuptools.setup(
name='theanets',
version='0.5.2',
packages=setuptools.find_packages(),
author='Leif Johnson',
author_email='[email protected]',
description='A library of neural nets in theano',
long_description=open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.rst')).read(),
license='MIT',
url='http://github.com/lmjohns3/theanets',
keywords=('machine-learning '
'neural-network '
'deep-neural-network '
'recurrent-neural-network '
'autoencoder '
'sparse-autoencoder '
'classifier '
'theano '
),
install_requires=['theano', 'climate'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)