-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (25 loc) · 1.09 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='morphounit',
version='1.0.4',
author='Shailesh Appukuttan, Pedro Garcia-Rodriguez',
author_email='shailesh.appukuttan@cnrs.fr, pedro.garcia@cnrs.fr',
packages=['morphounit',
'morphounit.capabilities',
'morphounit.tests',
'morphounit.tests.morph_cells',
'morphounit.tests.morph_circuits',
'morphounit.scores',
'morphounit.plots'],
url='https://github.com/appukuttan-shailesh/morphounit',
keywords = ['morphology', 'structure', 'circuit', 'testing', 'validation framework'],
license='BSD 3-Clause',
description='A SciUnit library for data-driven testing of neuronal morphologies.',
long_description="",
install_requires=['neo', 'elephant','sciunit>=0.1.5.2', 'neurom==1.4.10', 'tabulate', 'seaborn==0.9.0'],
dependency_links = ['git+http://github.com/neuralensemble/python-neo.git#egg=neo-0.4.0dev',
'https://github.com/scidash/sciunit/tarball/dev']
)