-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.36 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.36 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
46
47
48
49
50
51
import setuptools
import platform
if platform.system() == 'Darwin':
setuptools.setup(
name="npex",
version="0.0.1",
author="Greg Bubnis",
author_email="gregory.bubnis@ucsf.edu",
description="NeuroPAL extractor",
long_description_content_type=open('readme.md').read(),
packages=['npex'],
include_package_data=True,
install_requires=[
'numpy>=1.22.4',
'tifffile>=2022.5.4',
'pandas>=1.4.2',
'matplotlib>=3.5.2',
'pyqtgraph>=0.12.4',
'pyqt6',
'napari[pyqt6_experimental]',
'foco-improc',
'xmltodict'
],
python_requires='<3.11',
)
else:
setuptools.setup(
name="npex",
version="0.0.1",
author="Greg Bubnis",
author_email="gregory.bubnis@ucsf.edu",
description="NeuroPAL extractor",
long_description_content_type=open('readme.md').read(),
packages=['npex'],
include_package_data=True,
install_requires=[
'numpy>=1.22.4',
'tifffile>=2022.5.4',
'pandas>=1.4.2',
'matplotlib>=3.5.2',
'pyqtgraph>=0.12.4',
'pyqt5',
'napari>=0.4.16',
'foco-improc',
'xmltodict'
],
python_requires='>=3.8',
)