forked from CSNG-MFF/mozaik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.27 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "mozaik",
version = "0.1dev",
package_dir={'mozaik': 'mozaik'},
packages = ['mozaik',
'mozaik.analysis',
'mozaik.framework',
'mozaik.models',
'mozaik.models.retinal',
'mozaik.stimuli',
'mozaik.storage',
'mozaik.tools',
'mozaik.visualization'
],
author = "The mozaik team",
author_email = "[email protected]",
description = "Python package mozaik is a integrated workflow framework for large scale neural simulations.",
long_description=open('README').read(),
license = "CeCILL http://www.cecill.info",
keywords = "computational neuroscience simulation large-scale model spiking",
url = "",
classifiers = ['Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'],
)