-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (43 loc) · 1.16 KB
/
setup.py
File metadata and controls
executable file
·45 lines (43 loc) · 1.16 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
39
40
41
42
43
44
45
import setuptools
import os, platform
setuptools.setup(
name="C. elegans optophys NWB",
version="0.0.3",
author="Daniel Sprague",
author_email="daniel.sprague@ucsf.edu",
description="Tutorials and guidelines for reading and writing NWB files for C. elegans optophysiology",
long_description_content_type=open('README.md').read(),
url="",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Framework :: napari",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'numpy>=1.22.4',
'scipy>=1.0.0',
'tifffile>=2022.5.4',
'opencv-python-headless>=4.1.0.25',
'matplotlib>=2.1.0',
'ndx-multichannel-volume',
'pandas>=1.4.2',
'ipython',
'ipykernel',
'scikit-image',
'pynwb',
'nwbinspector',
'dandi',
'networkx',
'networkx',
'adjustText',
'latex',
'PyWavelets',
'seaborn',
'scikit-learn',
'remfile',
'pyqt6'
],
)