forked from syncope/lavue
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
268 lines (227 loc) · 7.8 KB
/
setup.py
File metadata and controls
268 lines (227 loc) · 7.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#!/usr/bin/env python
# Copyright (C) 2017 DESY, Christoph Rosemann, Notkestr. 85, D-22607 Hamburg
#
# lavue is an image viewing program for photon science imaging detectors.
# Its usual application is as a live viewer using hidra as data source.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation in version 2
# of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
#
# Authors:
# Christoph Rosemann <christoph.rosemann@desy.de>
# Jan Kotanski <jan.kotanski@desy.de>
#
""" setup.py for setting Lavue"""
import codecs
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
from distutils.command.clean import clean
from distutils.util import get_platform
import shutil
try:
from sphinx.setup_command import BuildDoc
except Exception:
BuildDoc = None
def read(fname):
""" read the file
:param fname: readme file name
:type fname: :obj:`str`
"""
with codecs.open(os.path.join('.', fname), encoding='utf-8') as f:
long_description = f.read()
return long_description
# from sphinx.setup_command import BuildDoc
#: (:obj:`str`) package name
NAME = 'lavuelib'
#: (:obj:`str`) project name
project = 'LaVue'
#: (:obj:`module`) package name
lavuepackage = __import__(NAME)
#: (:obj:`str`) full release version
release = lavuepackage.__version__
#: (:obj:`str`) package version
version = ".".join(release.split(".")[:2])
if release.count(".") == 1:
docs_release = '(latest)'
else:
docs_release = release
#: (:obj:`str`) .ui file directory
UIDIR = os.path.join(NAME, "ui")
#: (:obj:`str`) .qrc file directory
QRCDIR = os.path.join(NAME, "qrc")
#: (:obj:`list` < :obj:`str` >) executable scripts
SCRIPTS = ['lavuemonitor', 'lavuezmqstreamfromtango',
'LavueController', 'lavuezmqstreamtest']
#: (:obj:`list` < :obj:`str` >) executable GUI scripts
GUISCRIPTS = ['lavue', 'lavuetaurus']
needs_pytest = set(['test']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
install_requires = [
'pyqtgraph>=0.10.0',
'numpy>1.6.0',
'pyzmq',
'scipy',
'pytz',
'requests',
# 'h5py',
# 'pyside',
# 'pyqt5',
# 'fabio',
# 'pytango',
# 'pydoocs',
# 'pillow',
# 'hidra',
# 'pninexus',
# 'nxstools',
# 'pyFAI',
]
class toolBuild(build_py):
""" ui and qrc builder for python
"""
@classmethod
def makeqrc(cls, qfile, path):
""" creates the python qrc files
:param qfile: qrc file name
:type qfile: :obj:`str`
:param path: qrc file path
:type path: :obj:`str`
"""
qrcfile = os.path.join(path, "%s.qrc" % qfile)
rccfile = os.path.join(path, "%s.rcc" % qfile)
compiled = os.system("rcc %s -o %s -binary" % (qrcfile, rccfile))
if compiled == 0:
print("Built: %s -> %s" % (qrcfile, rccfile))
else:
sys.stderr.write("Error: Cannot build %s\n" % (rccfile))
sys.stderr.flush()
def run(self):
""" runner
:brief: It is running during building
"""
try:
qfiles = [(qfile[:-4], QRCDIR) for qfile
in os.listdir(QRCDIR) if qfile.endswith('.qrc')]
for qrc in qfiles:
if not qrc[0] in (".", ".."):
self.makeqrc(qrc[0], qrc[1])
except TypeError:
sys.stderr.write("No .qrc files to build\n")
sys.stderr.flush()
if get_platform()[:3] == 'win':
for script in GUISCRIPTS:
shutil.copy(script, script + ".pyw")
build_py.run(self)
class toolClean(clean):
""" cleaner for python
"""
def run(self):
""" runner
:brief: It is running during cleaning
"""
cfiles = [os.path.join(NAME, cfile) for cfile
in os.listdir("%s" % NAME) if cfile.endswith('.pyc')]
for fl in cfiles:
os.remove(str(fl))
cfiles = [os.path.join(UIDIR, cfile) for cfile
in os.listdir(UIDIR) if (
cfile.endswith('.pyc') or
(cfile.endswith('.py')
and not cfile.endswith('__init__.py')))]
for fl in cfiles:
os.remove(str(fl))
cfiles = [os.path.join(QRCDIR, cfile) for cfile
in os.listdir(QRCDIR) if (
cfile.endswith('.pyc')
or cfile.endswith('.rcc') or
(cfile.endswith('.py')
and not cfile.endswith('__init__.py')))]
for fl in cfiles:
os.remove(str(fl))
if get_platform()[:3] == 'win':
for script in SCRIPTS:
if os.path.exists(script + ".pyw"):
os.remove(script + ".pyw")
clean.run(self)
def get_scripts(scripts):
""" provides windows names of python scripts
:param scripts: list of script names
:type scripts: :obj:`list` <:obj:`str`>
"""
if get_platform()[:3] == 'win':
return scripts + [sc + '.pyw' for sc in scripts]
return scripts
#: (:obj:`dict` <:obj:`str`, :obj:`list` <:obj:`str`> > ) package data
package_data = {
'lavuelib': ['ui/*.ui', 'qrc/*.rcc']
}
#: (:obj:`dict` <:obj:`str`, `any`>) metadata for distutils
SETUPDATA = dict(
name='lavue',
version=release,
description='Live image viewer application for photon science detectors.',
long_description=read('README.rst'),
# long_description_content_type='text/x-rst',
install_requires=install_requires,
url='https://github.com/lavue-org/lavue',
author='J.Kotanski, Ch.Rosemann, A.Rothkirch',
author_email='jan.kotanski@desy.de, '
'christoph.rosemann@desy.de, '
'andre.rothkirch@desy.de ',
license='GPLv2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
keywords='live viewer photon science detector',
packages=find_packages(exclude=['test']),
package_data=package_data,
# package_dir={'lauvelib': 'lavuelib'},
# include_package_data=True, # do not include image an qrc files
scripts=(get_scripts(GUISCRIPTS) + SCRIPTS),
zip_safe=False,
setup_requires=pytest_runner,
# tests_require=['pytest'],
cmdclass={
"build_py": toolBuild,
"clean": toolClean,
"build_sphinx": BuildDoc
},
command_options={
'build_sphinx': {
'project': ('setup.py', project),
'version': ('setup.py', version),
'release': ('setup.py', docs_release)}},
)
def main():
""" the main function
"""
setup(**SETUPDATA)
if __name__ == '__main__':
main()