-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (45 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
setup(
author='Ian Selby',
author_email='[email protected]',
description='Tool to label single DICOM images using custom checkboxes, bounding boxes and radiobuttons',
name='Speedy QC',
url='https://github.com/selbs/speedy_qc',
use_scm_version=True,
setup_requires=["setuptools_scm>=7.0.4"],
packages=find_packages(),
include_package_data=True,
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=[
"importlib_metadata>=6.1.0",
"numpy>=1.24.2",
"py2app>=0.28.5",
"pydicom>=2.3.1",
"PyQt6==6.4",
"PyYAML>=6.0",
"qimage2ndarray>=1.10.0",
"qt_material>=2.14",
"QtAwesome>=1.2.3",
"pylibjpeg==1.4.0",
"setuptools>=42.0.0",
"python-gdcm>=3.0.21",
"py2app>=0.28.5",
"matplotlib>=3.4.3",
"imageio>=2.31.0",
"pillow>=10.0.0",
"pandas>=1.3.3",
"flit-core>=3.6.0",
"Bottleneck>=1.3.5",
],
)