-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
49 lines (42 loc) · 1.76 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
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from Cython.Build import cythonize
from setuptools.extension import Extension
import numpy as np
# compile with: python setup.py build_ext -i
# clean up with: python setup.py clean --all
ext_modules = [Extension("miniscopy.cnmf_e.oasis",
sources=["miniscopy/cnmf_e/oasis.pyx"],
include_dirs=[np.get_include()],
language="c++")]
setup(
name='miniscopy',
version='0.1',
author='Guillaume Viejo',
author_email='[email protected]',
# url='https://github.com/simonsfoundation/CaImAn',
license='GPL-2',
description='CNMF-E for miniscope data',
long_description='''
simplification of the caiman package https://github.com/flatironinstitute/CaImAn
for internal use of the peyrache lab
I removed all the test functions and few stuffs
Trying to keep the minimum
Goal : to merge it with Neuroseries
''',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Researchers',
'Topic :: Calcium Imaging :: Analysis Tools',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GPL-2 License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
],
keywords='fluorescence calcium ca imaging deconvolution ROI identification miniscope',
packages=find_packages(exclude=['use_cases', 'use_cases.*']),
data_files=[('', ['LICENSE.md']),
('', ['README.md'])],
install_requires=[''],
ext_modules=cythonize(ext_modules)
)