From fa6254542b18dd61d2fdacb057d9193f5306bcdf Mon Sep 17 00:00:00 2001 From: Scott Cole Date: Sun, 3 Sep 2017 13:58:55 -0700 Subject: [PATCH] update setup.py for 0.2 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b4961cbd..3368ad41 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup, find_packages setup( name = 'neurodsp', - version = '0.1', + version = '0.2', description = 'A package of modules for analyzing neural signals', author = 'The Voytek Lab', author_email = 'voyteklab@gmail.com', url = 'https://github.com/voytekresearch/neurodsp', packages=find_packages(), license='MIT', - download_url = 'https://github.com/voytekresearch/neurodsp/archive/0.1.tar.gz', + download_url = 'https://github.com/voytekresearch/neurodsp/archive/0.2.tar.gz', keywords = ['neuroscience', 'neural oscillations', 'time series analysis', 'spectral analysis', 'LFP'], classifiers = [] -) \ No newline at end of file +)