-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
217 lines (174 loc) · 6.48 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
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
import os
import re
from pathlib import Path
from typing import Union
from setuptools import find_packages, setup
from setuptools.command.develop import develop
from setuptools.command.sdist import sdist
from distutils.core import Command
from distutils.log import INFO
from wheel.bdist_wheel import bdist_wheel
PACKAGE = 'gourmand'
PACKAGEDIR = Path('src') / PACKAGE
DATADIR = Path('data')
PODIR = Path('po')
LANGS = sorted(f.stem for f in PODIR.glob('*.po'))
LOCALEDIR = PACKAGEDIR / 'data' / 'locale'
def get_info(prop: str) -> str:
with open(PACKAGEDIR / '__version__.py') as versfile:
content = versfile.read()
match = re.search(r'^{} = "(.+)"'.format(prop), content, re.M)
if match is not None:
return match.group(1)
raise RuntimeError(f"Unable to find {prop} string")
def refresh_metadata(cmd: Command) -> None:
# distutils remembers what commands are run during a build so that
# subsequent calls to the command are skipped. This means that metadata is
# normally only created once even if multiple builds are being done (e.g.,
# 'python setup.py sdist bdist_wheel'). Since package data is dynamically
# built depending on the type of build, we need to ensure that any stale
# metadata is refreshed.
if cmd.distribution.have_run.get('egg_info', 0):
cmd.distribution.reinitialize_command('egg_info')
cmd.run_command('egg_info')
def rmfile(filepath: Union[Path, str]) -> None:
try:
os.remove(filepath)
except FileNotFoundError:
pass
class BuildI18n(Command):
description = "Build localized message catalogs"
user_options = []
def initialize_options(self):
# Command subclasses must implement this "abstract" method
pass
def finalize_options(self):
# Command subclasses must implement this "abstract" method
pass
def run(self):
# compile message catalogs to binary format
for lang in LANGS:
pofile = PODIR / f'{lang}.po'
mofile = LOCALEDIR / lang / 'LC_MESSAGES'
mofile.mkdir(parents=True, exist_ok=True)
mofile /= f'{PACKAGE}.mo'
cmd = f'msgfmt {pofile} -o {mofile}'
os.system(cmd)
# merge translated strings into various file types
cachefile = PODIR / '.intltool-merge-cache'
cmd = f"LC_ALL=C intltool-merge -u -c {cachefile} {PODIR}"
for infile in DATADIR.rglob('*.in'):
# trim '.in' extension
outfile = infile.with_suffix('')
extension = outfile.suffix
if 'desktop' in extension:
flag = '-d'
# TODO: is '.schema' used?
elif 'schema' in extension:
flag = '-s'
elif 'xml' in extension:
flag = '-x'
elif 'gourmet-plugin' in extension:
flag = '-k'
outfile = PACKAGEDIR / outfile.relative_to(DATADIR)
else:
assert False, f'Unknown file type: {infile}'
os.system(f"{cmd} {flag} {infile} {outfile}")
rmfile(cachefile)
rmfile(f'{cachefile}.lock')
class BuildSource(sdist):
def run(self):
# Exclude localization files that are created at build time
# NOTE: We can't use MANIFEST.in for this because these files will then
# also be excluded from built distributions
for lang in LANGS:
mofile = LOCALEDIR / lang / 'LC_MESSAGES' / f'{PACKAGE}.mo'
rmfile(mofile)
for infile in DATADIR.rglob('*.in'):
# trim '.in' extension
outfile = infile.with_suffix('')
extension = outfile.suffix
if ('desktop' in extension
or 'xml' in extension
# TODO: is '.schema' used?
or 'schema' in extension):
# these files aren't moved after they're built
pass
elif 'gourmet-plugin' in extension:
outfile = PACKAGEDIR / outfile.relative_to(DATADIR)
else:
assert False, f'Unknown file type: {infile}'
rmfile(outfile)
refresh_metadata(self)
super().run()
class BuildWheel(bdist_wheel):
def run(self):
self.run_command('build_i18n')
refresh_metadata(self)
super().run()
class Develop(develop):
def run(self):
self.run_command('build_i18n')
super().run()
class UpdateI18n(Command):
description = "Create/update po/pot translation files"
user_options = []
def initialize_options(self):
# Command subclasses must implement this "abstract" method
pass
def finalize_options(self):
# Command subclasses must implement this "abstract" method
pass
def run(self):
self.announce("Creating POT file", INFO)
cmd = f"cd {PODIR}; intltool-update --pot --gettext-package={PACKAGE}"
os.system(cmd)
for lang in LANGS:
self.announce(f"Updating {lang}.po", INFO)
os.system(
f"cd {PODIR};"
f"intltool-update --dist --gettext-package={PACKAGE} {lang}")
setup(
name=PACKAGE,
version=get_info('version'),
description=get_info('description'),
author=get_info('author'),
maintainer=get_info('maintainer'),
maintainer_email=get_info('maintainer_email'),
url=get_info('url'),
license=get_info('license'),
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
data_files = [
('share/metainfo', ['data/io.github.GourmandRecipeManager.Gourmand.appdata.xml']),
('share/applications', ['data/io.github.GourmandRecipeManager.Gourmand.desktop']),
('share/icons/hicolor/scalable/apps', ['data/io.github.GourmandRecipeManager.Gourmand.svg']),
],
install_requires=[
'beautifulsoup4>=4.10.0',
'lxml==4.6.3',
'pillow>=8.3.2',
'pygobject==3.40.1',
'sqlalchemy==1.4.36',
'toml==0.10.2',
'recipe-scrapers>=14.27.0',
],
extras_require={
'epub-export': ['ebooklib==0.17.1'],
'pdf-export': ['reportlab==3.5.67'],
'spellcheck': ['pyenchant',
'pygtkspellcheck'],
},
cmdclass={
'bdist_wheel': BuildWheel,
'build_i18n': BuildI18n,
'develop': Develop,
'sdist': BuildSource,
'update_i18n': UpdateI18n,
},
entry_points={
"gui_scripts": [
"gourmand = gourmand.main:launch_app",
]}
)