forked from ilius/pyglossary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·171 lines (157 loc) · 4.06 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
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
#!/usr/bin/env python3
try:
import py2exe
except ImportError:
py2exe = None
import glob
import sys
import os
from os.path import join, dirname, exists, isdir
import re
import logging
from distutils.core import setup
from distutils.command.install import install
from pyglossary.glossary import VERSION
log = logging.getLogger("root")
relRootDir = "share/pyglossary"
class my_install(install):
def run(self):
install.run(self)
if os.sep == "/":
binPath = join(self.install_scripts, "pyglossary")
log.info("creating script file \"%s\"" % binPath)
if not exists(self.install_scripts):
os.makedirs(self.install_scripts)
# let it fail on wrong permissions.
else:
if not isdir(self.install_scripts):
raise OSError(
"installation path already exists " +
"but is not a directory: %s" % self.install_scripts
)
open(binPath, "w").write(
join(self.install_data, relRootDir, "pyglossary.pyw") +
" \"$@\"" # pass options from command line
)
os.chmod(binPath, 0o755)
data_files = [
(relRootDir, [
"about",
"license.txt",
"license-dialog",
"help",
"pyglossary.pyw",
"AUTHORS",
"config.json",
]),
(relRootDir+"/ui", glob.glob("ui/*.py")),
(relRootDir+"/ui/glade", glob.glob("ui/glade/*")),
(relRootDir+"/ui/gtk3_utils", glob.glob("ui/gtk3_utils/*.py")),
(relRootDir+"/res", glob.glob("res/*")),
("share/doc/pyglossary", []),
("share/doc/pyglossary/non-gui_examples",
glob.glob("doc/non-gui_examples/*")),
("share/doc/pyglossary/Babylon", glob.glob("doc/Babylon/*")),
("share/doc/pyglossary/DSL", glob.glob("doc/DSL/*")),
("share/doc/pyglossary/Octopus MDict", glob.glob("doc/Octopus MDict/*")),
("share/applications", ["pyglossary.desktop"]),
("share/pixmaps", ["res/pyglossary.png"]),
]
def files(folder):
for path in glob.glob(folder+"/*"):
if os.path.isfile(path):
yield path
if py2exe:
py2exeoptions = {
"script_args": ["py2exe"],
"bundle_files": 1,
"windows": [
{
"script": "pyglossary.pyw",
"icon_resources": [
(1, "res/pyglossary.ico"),
],
},
],
"zipfile": None,
"options": {
"py2exe": {
"packages": [
"pyglossary",
"ui.ui_tk",
# "ui.ui_gtk",
# "BeautifulSoup",
# "xml",
"Tkinter", "tkFileDialog", "Tix",
# "gtk", "glib", "gobject",
],
},
},
}
data_files = [
("tcl/tix8.1", files(join(sys.prefix, "tcl", "tix8.4.3"))),
("tcl/tix8.1/bitmaps",
files(join(sys.prefix, "tcl", "tix8.4.3", "bitmaps"))),
("tcl/tix8.1/pref",
files(join(sys.prefix, "tcl", "tix8.4.3", "pref"))),
("tcl/tcl8.1/init.tcl",
[join(sys.prefix, "tcl", "tix8.4.3", "init.tcl")]),
("", ["about", "license-dialog", "help"]),
("ui", glob.glob("ui/*.py")),
("ui/glade", glob.glob("ui/glade/*")),
("res", glob.glob("res/*")),
("plugins", glob.glob("pyglossary/plugins/*")),
("plugin_lib", glob.glob("pyglossary/plugin_lib/*")),
("doc/pyglossary", ["doc/bgl_structure.svgz", ]),
("doc/pyglossary/non-gui_examples",
glob.glob("doc/non-gui_examples/*")),
]
for pyVer in ("34", "35", "36"):
relPath = "plugin_lib/py%s" % pyVer
data_files.append((
relPath,
glob.glob("pyglossary/" + relPath + "/*.py",
)))
else:
py2exeoptions = {}
setup(
name="pyglossary",
version=VERSION,
cmdclass={
"install": my_install,
},
description="A tool for workig with dictionary databases",
author="Saeed Rasooli",
author_email="saeed.gnu@gmail.com",
license="GPLv3",
url="https://github.com/ilius/pyglossary",
scripts=[
# "pyglossary.pyw",
],
packages=[
"pyglossary",
],
package_data={
"pyglossary": [
"plugins/*.py",
"plugin_lib/*.py",
"plugin_lib/py*/*.py",
] + [
# safest way found so far to include every resource of plugins
# producing plugins/pkg/*, plugins/pkg/sub1/*, ... except .pyc/.pyo
re.sub(
r"^.*?pyglossary%s(?=plugins)" % os.sep,
"",
join(dirpath, f),
)
for top in glob.glob(
join(dirname(__file__), "pyglossary", "plugins")
)
for dirpath, _, files in os.walk(top)
for f in files
if not (f.endswith(".pyc") or f.endswith(".pyo"))
],
},
data_files=data_files,
**py2exeoptions
)