-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
40 lines (37 loc) · 1.1 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
import numpy
from setuptools import setup
from c2s import __version__
try:
from Cython.Build import cythonize
except:
cythonize = lambda _: []
setup(
name='c2s',
version=__version__,
author='Lucas Theis',
author_email='[email protected]',
description='A toolbox for inferring spikes from two-photon imaging calcium traces.',
url='https://github.com/lucastheis/c2s/',
packages=['c2s'],
scripts=[
'scripts/c2s',
'scripts/c2s-preprocess.py',
'scripts/c2s-predict.py',
'scripts/c2s-train.py',
'scripts/c2s-evaluate.py',
'scripts/c2s-leave-one-out.py',
'scripts/c2s-info.py',
'scripts/c2s-visualize.py'],
install_requires=(),
license='MIT',
zip_safe=False,
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'),
ext_modules=cythonize("c2s/roc.pyx"),
include_dirs=[numpy.get_include()]
)