-
Notifications
You must be signed in to change notification settings - Fork 112
/
setup.py
37 lines (35 loc) · 1.12 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
import os
from setuptools import setup, find_packages
def readfile(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='theano-lstm',
version='0.0.14',
description='Nano size theano lstm module',
long_description=readfile('README.md'),
ext_modules=[],
packages=find_packages(),
py_modules = [],
author='Jonathan Raiman',
author_email='jraiman at mit dot edu',
url='https://github.com/JonathanRaiman/theano_lstm',
download_url='https://github.com/JonathanRaiman/theano_lstm',
keywords='Gradient Descent, Theano, LSTM, neural networks',
license='MIT',
platforms='any',
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics'
],
setup_requires = [],
install_requires=[
'theano',
'numpy'
],
include_package_data=True,
)