forked from scidash/neuronunit
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 840 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='neuronunit',
version='0.1.4',
author='Rick Gerkin',
author_email='rgerkin@asu.edu',
packages=[
'neuronunit',
'neuronunit.capabilities',
'neuronunit.neuroconstruct',
'neuronunit.models',
'neuronunit.tests'],
url='http://github.com/scidash/neuronunit',
license='MIT',
description='A SciUnit library for data-driven testing of single-neuron physiology models.',
long_description="",
install_requires=['sciunit>=0.1.3.1','numpy','scipy','neo','elephant'],
dependency_links = ['git+http://github.com/neuralensemble/python-neo.git#egg=neo-0.4.0dev',
'git+http://github.com/neuralensemble/elephant.git#egg=elephant-0.1.1']
)