-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 945 Bytes
/
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
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('synapseunit/tests/stimuli')
setup(
name='synapseunit',
version='0.0.3',
author='Justinas Dainauskas, Shailesh Appukuttan',
author_email='[email protected]',
packages=['synapseunit', 'synapseunit.tests', 'synapseunit.capabilities', 'synapseunit.scores'],
package_data={'synapseunit': json_files},
url='https://github.com/appukuttan-shailesh/SynapseUnit',
license='BSD-3-Clause',
description='A SciUnit library for data-driven validation testing of synaptic models.',
long_description="",
install_requires=['sciunit>=0.2.1']
)