-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
23 lines (20 loc) · 851 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
INSTALL_REQUIRES = ['numpy >= 1.11', 'pandas >= 0.18.0', 'scipy', 'xarray',
'statsmodels', 'matplotlib', 'numba', 'patsy', 'seaborn',
'holoviews', 'bokeh', 'regularized_glm', 'scikit-learn']
TESTS_REQUIRE = ['pytest >= 2.7.1']
setup(
name='replay_classification',
version='0.6.1',
license='GPL-3.0',
description=('Non-parametric categorization of replay content from'
' multiunit spiking activity'),
author='Eric Denovellis',
author_email='[email protected]',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
url='https://github.com/Eden-Kramer-Lab/replay_classification',
)