-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (23 loc) · 994 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
24
25
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='NeuralTDA',
version='0.0.1',
description='Topological Data Analysis for neural data',
author='Brad Theilman',
author_email='[email protected]',
packages=['neuraltda/'],
entry_points={
'console_scripts': [
'bin_data = neuraltda.bin_data:main',
'permute_data_recursive = neuraltda.permute_binned_data_recursive:main',
'shuffle_data_recursive = neuraltda.make_shuffled_controls_recursive:main',
'calc_CI_topology_recursive = neuraltda.calculate_CI_topology_recursive:main',
'make_plots = neuraltda.make_plots:main',
'make_cij = neuraltda.make_cij:main',
'make_pf_graph_plots = neuraltda.make_pf_graph_plots:main',
'calc_cliquetop_recursive = neuraltda.calculate_cliquetop_recursive:main',
'test_neuraltda = neuraltda.test_neuraltda:main'
],
},
)