-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·279 lines (212 loc) · 6.4 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env python
# Copyright (C) 2013 by Yu-Jie Lin
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
from __future__ import print_function
import sys
from distutils.core import Command, setup
# scripts to be exculded from checking
EXCLUDE_SCRIPTS = ()
script_name = 'bea.py'
# ============================================================================
class cmd_isort(Command):
description = 'run isort'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
import isort
except ImportError:
print(('Cannot import isort, you forgot to install?\n'
'run `pip install isort` to install.'), file=sys.stderr)
sys.exit(1)
print()
print('Options')
print('=======')
print()
print('Exclude:', EXCLUDE_SCRIPTS)
print()
files = ['setup.py', script_name]
print('Results')
print('=======')
print()
fails = 0
for f in files:
# unfortunately, we have to do it twice
if isort.SortImports(f, check=True).incorrectly_sorted:
fails += 1
print()
isort.SortImports(f, show_diff=True)
print()
print()
print('Statistics')
print('==========')
print()
print('%d files failed to pass' % fails)
class cmd_pep8(Command):
description = 'run pep8'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
import pep8
except ImportError:
print(('Cannot import pep8, you forgot to install?\n'
'run `pip install pep8` to install.'), file=sys.stderr)
sys.exit(1)
p8 = pep8.StyleGuide()
# do not include code not written in b.py
p8.options.exclude += EXCLUDE_SCRIPTS
# ignore four-space indentation error
p8.options.ignore += ('E111', 'E121')
print()
print('Options')
print('=======')
print()
print('Exclude:', p8.options.exclude)
print('Ignore :', p8.options.ignore)
print()
print('Results')
print('=======')
print()
report = p8.check_files('.')
print()
print('Statistics')
print('==========')
print()
report.print_statistics()
print('%-7d Total errors and warnings' % report.get_count())
class cmd_pyflakes(Command):
description = 'run Pyflakes'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
from pyflakes import api
from pyflakes import reporter as modReporter
except ImportError:
print(('Cannot import pyflakes, you forgot to install?\n'
'run `pip install pyflakes` to install.'), file=sys.stderr)
sys.exit(1)
from os.path import basename
reporter = modReporter._makeDefaultReporter()
# monkey patch for exclusion of pathes
api_iterSourceCode = api.iterSourceCode
def _iterSourceCode(paths):
for path in api_iterSourceCode(paths):
if basename(path) not in EXCLUDE_SCRIPTS:
yield path
api.iterSourceCode = _iterSourceCode
print()
print('Options')
print('=======')
print()
print('Exclude:', EXCLUDE_SCRIPTS)
print()
print('Results')
print('=======')
print()
warnings = api.checkRecursive('.', reporter)
print()
print('Total warnings: %d' % warnings)
class cmd_pylint(Command):
description = 'run Pylint'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
from pylint import lint
except ImportError:
print(('Cannot import pylint, you forgot to install?\n'
'run `pip install pylint` to install.'), file=sys.stderr)
sys.exit(1)
print()
print('Options')
print('=======')
print()
print('Exclude:', EXCLUDE_SCRIPTS)
files = ['setup.py', script_name]
args = [
'--ignore=%s' % ','.join(EXCLUDE_SCRIPTS),
'--output-format=colorized',
'--include-ids=y',
'--indent-string=" "',
] + files
print()
lint.Run(args)
# ============================================================================
with open(script_name) as f:
meta = dict(
(k.strip(' _'), eval(v)) for k, v in
# There will be a '\n', with eval(), it's safe to ignore
(line.split('=') for line in f if line.startswith('__'))
)
# renaming meta-data keys
meta_renames = [
('program', 'name'),
('website', 'url'),
('email', 'author_email'),
]
for old, new in meta_renames:
if old in meta:
meta[new] = meta[old]
del meta[old]
# keep these
meta_keys = ['name', 'description', 'version', 'license', 'url', 'author',
'author_email']
meta = dict([m for m in meta.items() if m[0] in meta_keys])
with open('README.rst') as f:
long_description = f.read()
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.3',
'Topic :: Text Processing',
]
setup_d = dict(
long_description=long_description,
cmdclass={
'isort': cmd_isort,
'pep8': cmd_pep8,
'pyflakes': cmd_pyflakes,
'pylint': cmd_pylint,
},
classifiers=classifiers,
scripts=[script_name],
install_requires=['lxml'],
**meta
)
if __name__ == '__main__':
setup(**setup_d)