-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 726 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='DemoTestUnit',
version='1.2.0',
author='Shailesh Appukuttan, Andrew Davison',
author_email='shailesh.appukuttan@unic.cnrs-gif.fr',
packages=['DemoTestUnit',
'DemoTestUnit.tests',
'DemoTestUnit.capabilities',
'DemoTestUnit.scores',
'DemoTestUnit.plots',],
url='https://github.com/appukuttan-shailesh/DemoTestUnit',
keywords=['electrophysiology', 'electrical',
'testing', 'validation framework'],
license='MIT',
description='A SciUnit library for data-driven testing of neurons.',
install_requires=['efel']
)