-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup_86x64.py
55 lines (53 loc) · 1.83 KB
/
setup_86x64.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
50
51
52
53
54
55
from setuptools import setup, find_packages
APP = ['speedy_qc/main.py']
OPTIONS = {**{'iconfile': 'speedy_qc/assets/icns/white_panel.icns', 'includes': ['_cffi_backend'],
'resources': ['speedy_qc/assets', 'speedy_qc/config.yml', 'speedy_qc/log.conf'],
'dylib_excludes': ['libgfortran.3.dylib'], 'frameworks': ['/usr/local/opt/libffi/lib/libffi.8.dylib'],
'dist_dir': 'dist/86x64',
}, **dict(plist=dict(NSRequiresAquaSystemAppearance=False,
CFBundleIconFile="speedy_qc/assets/icns/white_panel.icns"))}
setup(
app=APP,
author='Ian Selby',
author_email='[email protected]',
description='Tool to label single DICOM images using custom checkboxes',
name='Speedy QC',
url='https://github.com/selbs/speedy_qc',
use_scm_version=True,
setup_requires=["setuptools_scm>=7.0.4", "py2app>=0.28"],
packages=find_packages(),
include_package_data=True,
options={'py2app': OPTIONS},
entry_points={
'console_scripts': [
'speedy_qc=speedy_qc.main:main',
'speedy_config=speedy_qc.wizard:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"Bottleneck>=1.3.5",
"flit-core>=3.6.0",
"install>=1.3.5",
"pandas>=1.5.3",
"pip>=23.0.1",
"pydicom>=2.3.1",
"pylibjpeg==1.4.0",
"numpy>=1.21.0",
"setuptools>=42.0.0",
"PyQt6>=6.2",
"python-gdcm>=3.0.21",
"PyYAML>=6.0",
"qimage2ndarray>=1.10.0",
"qt-material>=2.14",
"QtAwesome>=1.2.3",
"matplotlib>=3.4.3",
"imageio>=2.31.0",
"pillow>=10.0.0",
],
)