-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_arm64.py
56 lines (54 loc) · 1.92 KB
/
setup_arm64.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
56
from setuptools import setup, find_packages
APP = ['speedy_iqa/main.py']
OPTIONS = {**{'iconfile': 'speedy_iqa/assets/logo.icns', 'includes': ['_cffi_backend'],
'resources': ['speedy_iqa/assets', 'speedy_iqa/config.yml', 'speedy_iqa/log.conf'],
'dylib_excludes': ['libgfortran.3.dylib'],
'frameworks': ['/opt/homebrew/Cellar/libffi/3.4.4/lib/libffi.8.dylib',
'/opt/homebrew/Cellar/jpeg/9d/lib/libjpeg.9.dylib'
],
'dist_dir': 'dist/arm64',
}, **dict(plist=dict(NSRequiresAquaSystemAppearance=False,
CFBundleIconFile="speedy_iqa/assets/logo.icns",
))}
setup(
app=APP,
author='Ian Selby',
author_email='[email protected]',
description='Tool to label images against a reference image for image quality assessment',
name='Speedy IQA',
url='https://github.com/selbs/speedy_iqa',
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_iqa=speedy_iqa.main:main',
'speedy_config=speedy_iqa.wizard:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"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",
"pandas"
],
)