-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
50 lines (46 loc) · 1.8 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
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
import os
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
data_files_list=[]
data_path="mozaik/stimuli/vision/textureLib/"
for root, dirs, files in os.walk(data_path):
for f in files:
data_files_list.append((root,[os.path.join(root,f)]))
setup(
name = "mozaik",
version = "0.1.0",
package_dir = {'mozaik': 'mozaik'},
packages = ['mozaik',
'mozaik.analysis',
'mozaik.experiments',
'mozaik.connectors',
'mozaik.sheets',
'mozaik.meta_workflow',
'mozaik.models',
'mozaik.models.vision',
'mozaik.stimuli',
'mozaik.stimuli.vision',
'mozaik.storage',
'mozaik.tools',
'mozaik.visualization'
],
author = "The Mozaik team",
author_email = "[email protected]",
description = "Python package mozaik is an integrated workflow framework for large scale neural simulations.",
long_description = open('README.rst').read(),
license = "CeCILL http://www.cecill.info",
keywords = "computational neuroscience simulation large-scale model spiking",
url = "http://neuralensemble.org/mozaik",
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'],
data_files=data_files_list,
)