forked from thunder-project/thunder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (36 loc) · 1.77 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·38 lines (36 loc) · 1.77 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
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
import thunder
setup(
name='thunder-python',
version=str(thunder.__version__),
description='Large-scale neural data analysis in Spark',
author='The Freeman Lab',
author_email='the.freeman.lab@gmail.com',
url='https://github.com/thunder-project/thunder',
packages=['thunder',
'thunder.clustering',
'thunder.decoding',
'thunder.factorization',
'thunder.extraction',
'thunder.extraction.block',
'thunder.extraction.feature',
'thunder.extraction.block.methods',
'thunder.extraction.feature.methods',
'thunder.registration',
'thunder.registration.methods',
'thunder.rdds',
'thunder.rdds.fileio',
'thunder.rdds.imgblocks',
'thunder.regression',
'thunder.regression.linear',
'thunder.regression.nonlinear',
'thunder.standalone',
'thunder.utils',
'thunder.utils.data',
'thunder.viz'],
scripts=['bin/thunder', 'bin/thunder-submit', 'bin/thunder-submit-example', 'bin/thunder-ec2'],
package_data={'thunder.utils': ['data/fish/series/conf.json', 'data/fish/series/*.bin', 'data/fish/images/*.tif', 'data/iris/conf.json', 'data/iris/iris.bin', 'data/iris/iris.mat', 'data/iris/iris.npy', 'data/iris/iris.txt', 'data/mouse/images/conf.json', 'data/mouse/images/*.bin', 'data/mouse/params/covariates.json', 'data/mouse/series/conf.json', 'data/mouse/series/*.bin'], 'thunder.lib': ['thunder_python-' + str(thunder.__version__) + '-py2.7.egg']},
long_description=open('README.rst').read(),
install_requires=open('requirements.txt').read().split()
)