forked from retext-project/retext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·161 lines (136 loc) · 5.08 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
#!/usr/bin/env python3
VERSION = '7.1.0'
long_description = '''\
ReText is simple text editor that supports Markdown and reStructuredText
markup languages. It is written in Python using PyQt libraries.
It supports live preview, tabs, math formulas, export to various formats
including PDF and HTML.
For more details, please go to the `home page`_ or to the `wiki`_.
.. _`home page`: https://github.com/retext-project/retext
.. _`wiki`: https://github.com/retext-project/retext/wiki'''
import os
import sys
from os.path import join, basename
from distutils import log
from distutils.command.build import build
from setuptools import setup, Command
from setuptools.command.sdist import sdist
from setuptools.command.install import install
from subprocess import check_call
from glob import glob, iglob
if sys.version_info[0] < 3:
sys.exit('Error: Python 3.x is required.')
def bundle_icons():
import urllib.request
import tarfile
from io import BytesIO
icons_tgz = 'https://github.com/retext-project/retext/archive/icons.tar.gz'
response = urllib.request.urlopen(icons_tgz)
tario = BytesIO(response.read())
tar = tarfile.open(fileobj=tario, mode='r')
for member in tar:
if member.isfile():
member.path = basename(member.path)
log.info('bundling icons/%s', member.path)
tar.extract(member, 'icons')
tar.close()
class retext_build_translations(Command):
description = 'Build .qm files from .ts files using lrelease'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
environment = dict(os.environ, QT_SELECT='5')
for ts_file in glob(join('locale', '*.ts')):
try:
check_call(('lrelease', ts_file), env=environment)
except Exception as e:
log.warn('Failed to build translations: %s', e)
break
class retext_build(build):
sub_commands = build.sub_commands + [('build_translations', None)]
class retext_sdist(sdist):
def run(self):
self.run_command('build_translations')
bundle_icons()
sdist.run(self)
class retext_install(install):
def change_roots(self, *names):
self.orig_install_scripts = self.install_scripts
self.orig_install_data = self.install_data
install.change_roots(self, *names)
def run(self):
install.run(self)
if self.root is None:
self.orig_install_scripts = self.install_scripts
self.orig_install_data = self.install_data
elif self.root.endswith("/wheel"):
raise RuntimeError("Building wheels is disabled, because it breaks .desktop"
" files. See issues #452 and #497 for details.\n"
"If you are using pip, please ignore this error,"
" installation should still succeed.")
retext = join(self.orig_install_scripts, 'retext')
# Fix Exec and Icon fields in the desktop file
desktop_file_path = join(self.install_data, 'share', 'applications',
'me.mitya57.ReText.desktop')
icon_path = join(self.orig_install_data, 'share', 'retext', 'icons', 'retext.svg')
with open(desktop_file_path, encoding="utf-8") as desktop_file:
desktop_contents = desktop_file.read()
log.info('fixing Exec line in %s', desktop_file_path)
desktop_contents = desktop_contents.replace('Exec=retext', 'Exec=%s' % retext)
if self.orig_install_data != '/usr':
log.info('fixing Icon line in %s', desktop_file_path)
desktop_contents = desktop_contents.replace('Icon=retext', 'Icon=%s' % icon_path)
with open(desktop_file_path, 'w', encoding="utf-8") as desktop_file:
desktop_file.write(desktop_contents)
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Text Editors',
'Topic :: Text Processing :: Markup'
]
setup(name='ReText',
version=VERSION,
description='Simple editor for Markdown and reStructuredText',
long_description=long_description,
author='Dmitry Shachnev',
author_email='[email protected]',
url='https://github.com/retext-project/retext',
packages=['ReText'],
entry_points={
'gui_scripts': ['retext = ReText.__main__:main'],
},
data_files=[
('share/applications', ['data/me.mitya57.ReText.desktop']),
('share/icons/hicolor/scalable/apps', ['icons/retext.svg']),
('share/metainfo', ['data/me.mitya57.ReText.appdata.xml']),
('share/retext/icons', iglob('icons/*')),
('share/retext/locale', iglob('locale/*.qm'))
],
python_requires='>=3.4',
requires=['docutils', 'Markdown', 'Markups(>=2.0)', 'pyenchant', 'Pygments', 'PyQt5'],
install_requires=[
'docutils',
'Markdown>=3.0',
'Markups>=2.0',
'Pygments',
'chardet>=2.3',
'PyQt5',
],
extras_require={
'spellcheck': ['pyenchant'],
},
cmdclass={
'build_translations': retext_build_translations,
'build': retext_build,
'sdist': retext_sdist,
'install': retext_install,
},
test_suite='tests',
classifiers=classifiers,
license='GPL 2+'
)