-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.56 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (47 loc) · 1.56 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
# setup.py
from setuptools import setup, find_packages
try:
from pyqt_distutils.build_ui import build_ui
cmdclass = {'build_ui': build_ui}
except ImportError:
build_ui = None # user won't have pyqt_distutils when deploying
cmdclass = {}
version='16'
setup(
name='ArchivViewer',
version=version,
author='Julian Hartig',
author_email='julian@whisper-net.de',
packages=['archivviewer', 'archivviewer.forms'],
url='https://github.com/crispinus2/archivviewer/',
download_url = 'https://github.com/crispinus2/archivviewer/archive/v_' + version + '.tar.gz',
license='GPLv3',
description='Archive viewer for use with Medical Office AIS by Indamed',
install_requires=[
"lhafile >= 0.2.2",
"PyPDF2 >= 1.26.0",
"pillow",
"img2pdf >= 0.3.6",
"PyQt5 >= 5.15.0",
"watchdog >= 0.10.2",
"pyqt-distutils",
"fdb",
"pylibjpeg",
"pylibjpeg-libjpeg"
],
package_data={'archivviewer': ['icon128.png']},
entry_points = {
"gui_scripts": ['archivviewer = archivviewer.archivviewer:main']
},
cmdclass=cmdclass,
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Healthcare Industry',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)