From 027b889362324d591a614e736761fd7afbf2f59a Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 13 Apr 2018 11:16:51 -0400 Subject: [PATCH] Fix missing dependency --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ffa0019..443e342 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,13 @@ from setuptools import find_packages, setup INSTALL_REQUIRES = ['numpy >= 1.11', 'statsmodels', 'numba', 'matplotlib', - 'xarray', 'scipy', 'scikit-learn', 'regularized_glm'] + 'xarray', 'scipy', 'scikit-learn', 'regularized_glm', + 'spectral_connectivity'] TESTS_REQUIRE = ['pytest >= 2.7.1'] setup( name='replay_identification', - version='0.0.1.dev0', + version='0.0.2.dev0', license='MIT', description=('Identify replay events using multiple information sources'), author='Eric Denovellis',