-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (23 loc) · 968 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
from setuptools import setup, find_packages
setup(name='twoptb',
version='0.1',
description='toolbox for the analysis of two-photon imaging data',
url='http://github.com/yves-weissenberger/twoptb',
author='Yves Weissenberger',
author_email='yvesweissenberger@gmail.com',
license='MIT',
scripts=['twoptb/scripts/convert_to_hdf5.py',
'twoptb/scripts/motion_register_data.py',
'twoptb/ROIs/ROI_Drawer.py',
'twoptb/ROIs/run_roi_finder.py',
'twoptb/ROIs/train_roi_finder.py',
'twoptb/ROIs/merge_rois.py',
'twoptb/ROIs/share_roi_info.py',
'twoptb/ROIs/extract_roi_traces.py',
'twoptb/across_days/aggregate_rois.py',
'twoptb/across_days/across_day_traces.py',
'twoptb/across_days/across_day_rois.py',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False)