-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
VERSION = '0.8.6'
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) and Cross-Variable Interference (O'Neill et al 2025)
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)",
],
)