-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
138 lines (113 loc) · 4.81 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
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
#!/usr/bin/env python
# This file is part of nexdatas - Tango Server for NeXus data writer
#
# Copyright (C) 2012-2013 DESY, Jan Kotanski <[email protected]>
#
# nexdatas 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, either version 3 of the License, or
# (at your option) any later version.
#
# nexdatas 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 nexdatas. If not, see <http://www.gnu.org/licenses/>.
## \package nxssardanaclient nexdatas
## \file setup.py
# GUI to create the XML components
import os, shutil, sys
from distutils.core import setup
from distutils.command.build import build
from distutils.command.clean import clean
## package name
CLIENT = "nxssardanaclient"
## package instance
ICLIENT = __import__(CLIENT)
## reading a file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
## ui and qrc builder for python
class toolBuild(build):
## creates the python qrc files
# \param qfile qrc file name
# \param path qrc file path
def makeqrc(self, qfile, path):
compiled = os.system("pyrcc4 %s/%s.qrc -o %s/qrc_%s.py" % (path, qfile, path, qfile))
if compiled == 0:
print "Built: %s/%s.qrc -> %s/qrc_%s.py" % (path, qfile, path, qfile)
else:
print "Warning: Cannot build %s%s.qrc" % (path, qfile)
## creates the python ui files
# \param ufile ui file name
# \param path ui file path
def makeui(self, ufile, path):
compiled = os.system("pyuic4 %s/%s.ui -o %s/ui_%s.py" % (path, ufile, path, ufile))
if compiled == 0:
print "Compiled %s/%s.ui -> %s/ui_%s.py" % (path, ufile, path, ufile)
else:
print "Warning: Cannot build %s/ui_%s.py" % (path, ufile)
## runner
# \brief It is running during building
def run(self):
try:
ufiles = [( ufile[:-3], "%s" % CLIENT ) for ufile
in os.listdir("%s" % CLIENT) if ufile.endswith('.ui')]
for ui in ufiles:
if not ui[0] in (".", ".."):
self.makeui(ui[0], ui[1])
except TypeError,e:
print "No .ui files to build",e
try:
qfiles = [( qfile[:-4], "%s" % CLIENT) for qfile
in os.listdir("%s" % CLIENT) if qfile.endswith('.qrc')]
for qrc in qfiles:
if not qrc[0] in (".", ".."):
self.makeqrc(qrc[0], qrc[1])
except TypeError:
print "No .qrc files to build"
build.run(self)
## cleaner for python
class toolClean(clean):
## runner
# \brief It is running during cleaning
def run(self):
cfiles = [ "%s/%s" % (CLIENT,cfile) for cfile
in os.listdir("%s" % CLIENT) if cfile.endswith('.pyc') ]
for fl in cfiles:
os.remove(str(fl))
cfiles = [ "%s/%s" % (CLIENT,cfile) for cfile
in os.listdir("%s/ui" % CLIENT) if cfile.endswith('.pyc') or (cfile.endswith('.py') and cfile.endswith('__init_.py'))]
for fl in cfiles:
os.remove(str(fl))
cfiles = [ "%s/%s" % (CLIENT,cfile) for cfile
in os.listdir("%s/qrc" % CLIENT) if cfile.endswith('.pyc') or (cfile.endswith('.py') and cfile.endswith('__init_.py'))]
for fl in cfiles:
os.remove(str(fl))
clean.run(self)
#datas = [('components', [ cp for cp in os.listdir("components") if cp.endswith('.xml')]),
# ('datasources', [ ds for ds in os.listdir("datasources") if ds.endswith('.ds.xml')])]
## metadata for distutils
SETUPDATA=dict(
name = "nexdatas.sardanaclient",
version = ICLIENT.__version__,
author = "Jan Kotanski, Eugen Wintersberger , Halil Pasic",
maintainer = "Jan Kotanski, Eugen Wintersberger , Halil Pasic",
description = ("Configuration tool for creating components"),
license = "GNU GENERAL PUBLIC LICENSE, version 3",
keywords = "configuration writer Tango component nexus data",
url = "http://code.google.com/p/nexdatas/",
platforms= ("Linux"),
packages=[CLIENT ],
scripts = ['SardanaNexusWriter.py'],
cmdclass = {"build" : toolBuild, "clean" : toolClean}
)
## the main function
def main():
setup(**SETUPDATA)
if __name__ == '__main__':
main()