-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (32 loc) · 1.6 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
import crino
from setuptools import setup
DISTNAME = 'crino'
AUTHOR = 'Julien Lerouge'
AUTHOR_EMAIL = '[email protected]'
DESCRIPTION = "Crino: a neural-network library based on Theano"
LONG_DESCRIPTION = """Crino is a neural-network library based on Theano, that lets you hand-craft neural-network architectures using a modular framework. It also provides standard implementations for common architectures, such as MLP, DNN, and IODA which is our contribution to the neural-network community."""
LICENSE = "LGPL"
KEYWORDS = "crino theano mlp dnn ioda neural network machine learning artificial intelligence"
URL = "http://julien.lerouge.me/crino/"
CLASSIFIERS = ['Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Operating System :: OS Independent']
if __name__ == "__main__":
setup(
name = DISTNAME,
version = crino.__version__,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
license = LICENSE,
keywords = KEYWORDS,
url = URL,
packages = ['crino'],
classifiers =CLASSIFIERS,
install_requires=['numpy','scipy','theano']
)