-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (30 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
json_files = package_files('basalunit/tests/somafeat_stim')
setup(
name='basalunit',
version='1.2.0',
author='Shailesh Appukuttan; Pedro García-Rodríguez',
author_email='[email protected]',
packages=['basalunit',
'basalunit.capabilities',
'basalunit.tests',
'basalunit.scores',
'basalunit.plots'],
package_data={'basalunit': json_files},
url='https://github.com/appukuttan-shailesh/basalunit',
keywords = ['basal ganglia', 'electrical', 'efel', 'bluepyopt', 'validation framework'],
license='MIT',
description='A SciUnit library for data-driven testing of basal ganglia models.',
long_description="",
install_requires=['neo','elephant','sciunit>=0.2.7', 'tabulate', 'similaritymeasures']
)