-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (30 loc) · 1.04 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
from setuptools import setup, find_packages
try:
with open("README.md", 'r') as f:
long_description = f.read()
except:
long_description = ""
setup(
name='cidan',
version='0.1.37',
description='cidan-Calcium Imaging Data ANalysis',
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
author='Sam Schickler',
author_email='sschickl@ucsd.edu',
# url="http://www.foopackage.com/",
packages=find_packages(),
install_requires=["numpy", "QtPy", "QDarkStyle", "pybind11", "pyqtgraph==0.11.0rc0",
"pyside2",
"dask[complete]", "matplotlib", "scipy", "tiffile",
"scikit-image", "pybind11", "hnswlib", "pillow",
'tifffile', "zarr", "neurofinder", "scikit-learn", 'pandas', 'future',
"peakutils", "requests", "h5py"],
include_package_data=True,
entry_points={
'console_scripts': [
'cidan = cidan.__main__:main',
]
},
)