-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (22 loc) · 1.37 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
from setuptools import setup, find_packages
VERSION = '0.7.2'
DESCRIPTION = 'Geometric decoding of neural data with built-in best practices.'
LONG_DESCRIPTION = 'Decodanda (dog latin for "to be decoded") is a best-practices-made-easy Python package for decoding neural data. Decodanda is designed to expose a user-friendly and flexible interface for population activity decoding, with a series of built-in best practices to avoid the most common pitfalls. In addition, Decodanda exposes a series of functions to compute the Cross-Condition Generalization Performance (CCGP, Bernardi et al. 2020) for the geometrical analysis of neural population activity.'
setup(
name="decodanda",
version=VERSION,
author="Lorenzo Posani",
author_email="lorenzo.posani@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
'matplotlib>=3.3.4', 'numpy>=1.20.1', 'pandas>=1.4.0', 'scikit_learn>=0.24.1',
'scipy>=1.6.1', 'seaborn>=0.11.1', 'tqdm>=4.58.0', 'h5py>=3.10.0'],
keywords=['python', 'decoding', 'neuroscience', 'ccgp', 'neural activity', 'population activity', 'neural decoding', 'geometry'],
url="https://github.com/lposani/decodanda",
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)