-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
30 lines (26 loc) · 1.11 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
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('hippounit/tests/stimuli')
default_NMDAr = package_files('hippounit/tests/default_NMDAr')
setup(
name='hippounit',
version='1.4.1',
author='Sara Saray, Szabolcs Kali, Christian Rossert, Andrew Davison, Shailesh Appukuttan',
author_email='[email protected], [email protected], [email protected], [email protected], [email protected]',
packages=['hippounit', 'hippounit.tests', 'hippounit.capabilities', 'hippounit.scores'],
package_data={'hippounit': json_files + default_NMDAr},
url='http://github.com/kalilab/hippounit',
license='MIT',
description='A SciUnit library for data-driven validation testing of models of hippocampus.',
long_description="",
install_requires=['sciunit>=0.2.1', 'efel']
)