-
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) · 717 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 717 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='PackageName',
version='0.1',
author='Shailesh Appukuttan, Andrew Davison',
author_email='shailesh.appukuttan@unic.cnrs-gif.fr',
packages=['PackageName',
'PackageName.tests',
'PackageName.capabilities',
'PackageName.scores',
'PackageName.plots',],
url='https://github.com/appukuttan-shailesh/PackageName',
keywords=['electrophysiology', 'electrical',
'testing', 'validation framework'],
license='MIT',
description='A SciUnit library for data-driven testing of neurons.',
install_requires=['efel']
)