-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsetup.py
205 lines (162 loc) · 4.71 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
# -*- coding: utf-8 -*-
#
# pyhwp : hwp file format parser in python
# Copyright (C) 2010-2023 mete0r <https://github.com/mete0r>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import
from __future__ import print_function
from distutils.command.build import build as _build
import io
import os.path
import subprocess
import sys
def setupdir(f):
''' Decorate f to run inside the directory where setup.py resides.
'''
setup_dir = os.path.dirname(os.path.abspath(__file__))
def wrapped(*args, **kwargs):
old_dir = os.path.abspath(os.curdir)
try:
os.chdir(setup_dir)
return f(*args, **kwargs)
finally:
os.chdir(old_dir)
return wrapped
@setupdir
def import_setuptools():
try:
import setuptools
return setuptools
except ImportError:
pass
import ez_setup
ez_setup.use_setuptools()
import setuptools
return setuptools
@setupdir
def readfile(filename):
with io.open(filename, 'r', encoding='utf-8') as f:
return f.read()
def get_version():
version = readfile('VERSION.txt')
version = version.strip()
return version
def get_long_description():
long_description = readfile('README') + '\n' + readfile('CHANGES')
return long_description
def get_classifiers():
classifiers = readfile('classifiers.txt')
classifiers = classifiers.strip()
classifiers = classifiers.split('\n')
classifiers = sorted(classifiers)
return classifiers
def get_install_requires():
requires = readfile('requirements.in')
requires = requires.strip()
requires = requires.split('\n')
requires = list(requires)
return requires
class build(_build):
def run(self):
#
# compile message catalogs
#
domains = [
'hwp5proc',
'hwp5html',
'hwp5odt',
'hwp5txt',
'hwp5view',
]
for domain in domains:
args = [
sys.executable,
__file__,
'compile_catalog',
'--domain={}'.format(domain)
# ..other common options are provided by setup.cfg
]
subprocess.check_call(args)
#
# process to normal build operations
#
_build.run(self)
setup_info = {
# basic information
'name': 'pyhwp',
'version': get_version(),
'description': 'hwp file format parser',
'long_description': get_long_description(),
# authorative
'author': 'mete0r',
'author_email': '[email protected]',
'license': 'GNU Affero General Public License v3 or later (AGPLv3+)',
'url': 'https://github.com/mete0r/pyhwp',
# classifying
'classifiers': get_classifiers(),
'keywords': 'hwp',
# packaging
'setup_requires': [
'babel',
],
'packages': [
'hwp5',
'hwp5.binmodel',
'hwp5.binmodel.controls',
'hwp5.plat',
'hwp5.plat._uno',
'hwp5.proc',
'hwp5.storage',
'hwp5.transforms',
],
# do not use '.'; just omit to specify setup.py directory
'package_dir': {
'': 'src',
},
'package_data': {
'hwp5': [
'README',
'COPYING',
'VERSION.txt',
'xsl/*.xsl',
'xsl/odt/*.xsl',
'odf-relaxng/OpenDocument-v1.2-os-*.rng',
'locale/*/*/*.mo',
],
},
# 'python_requires': '>=2.7, <3',
# installation
'zip_safe': False,
'entry_points': {
'console_scripts': [
'hwp5spec=hwp5.binspec:main',
'hwp5proc=hwp5.hwp5proc:main',
'hwp5odt=hwp5.hwp5odt:main',
'hwp5txt=hwp5.hwp5txt:main',
'hwp5html=hwp5.hwp5html:main',
'hwp5view=hwp5.hwp5view:main',
]
},
'install_requires': get_install_requires(),
}
@setupdir
def main():
setuptools = import_setuptools()
setup_info['cmdclass'] = {
'build': build,
}
setuptools.setup(**setup_info)
if __name__ == '__main__':
main()