- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
239 lines (201 loc) · 7.86 KB
/
Copy pathsetup.py
File metadata and controls
239 lines (201 loc) · 7.86 KB
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
importos
importre
importsys
importfnmatch
# for command line options and supported environment variables, please
# see the end of 'setupinfo.py'
ifsys.version_info< (2, 6) orsys.version_info[:2] in [(3, 0), (3, 1)]:
print("This lxml version requires Python 2.6, 2.7, 3.2 or later.")
sys.exit(1)
try:
fromsetuptoolsimportsetup
exceptImportError:
fromdistutils.coreimportsetup
importversioninfo
importsetupinfo
# override these and pass --static for a static build. See
# doc/build.txt for more information. If you do not pass --static
# changing this will have no effect.
STATIC_INCLUDE_DIRS= []
STATIC_LIBRARY_DIRS= []
STATIC_CFLAGS= []
STATIC_BINARIES= []
# create lxml-version.h file
versioninfo.create_version_h()
lxml_version=versioninfo.version()
print("Building lxml version %s."%lxml_version)
OPTION_RUN_TESTS=setupinfo.has_option('run-tests')
branch_link="""
After an official release of a new stable series, bug fixes may become
available at
https://github.com/lxml/lxml/tree/lxml-%(branch_version)s .
Running ``easy_install lxml==%(branch_version)sbugfix`` will install
the unreleased branch state from
https://github.com/lxml/lxml/tarball/lxml-%(branch_version)s#egg=lxml-%(branch_version)sbugfix
as soon as a maintenance branch has been established. Note that this
requires Cython to be installed at an appropriate version for the build.
"""
ifversioninfo.is_pre_release():
branch_link=""
extra_options= {}
if'setuptools'insys.modules:
extra_options['zip_safe'] =False
try:
importpkg_resources
exceptImportError:
pass
else:
f=open("requirements.txt", "r")
try:
deps= [str(req) forreqinpkg_resources.parse_requirements(f)]
finally:
f.close()
extra_options['extras_require'] = {
'source': deps,
'cssselect': 'cssselect>=0.7',
'html5': 'html5lib',
'htmlsoup': 'BeautifulSoup4',
}
extra_options.update(setupinfo.extra_setup_args())
extra_options['package_data'] = {
'lxml': [
'lxml.etree.h',
'lxml.etree_api.h',
],
'lxml.includes': [
'*.pxd', '*.h'
],
'lxml.isoschematron': [
'resources/rng/iso-schematron.rng',
'resources/xsl/*.xsl',
'resources/xsl/iso-schematron-xslt1/*.xsl',
'resources/xsl/iso-schematron-xslt1/readme.txt'
],
}
extra_options['package_dir'] = {
'': 'src'
}
extra_options['packages'] = [
'lxml', 'lxml.includes', 'lxml.html', 'lxml.isoschematron'
]
defsetup_extra_options():
is_interesting_package=re.compile('^(libxml|libxslt|libexslt)$').match
defextract_files(directories, pattern='*'):
defget_files(root, dir_path, files):
return [ (root, dir_path, filename)
forfilenameinfnmatch.filter(files, pattern) ]
file_list= []
fordir_pathindirectories:
dir_path=os.path.realpath(dir_path)
forroot, dirs, filesinos.walk(dir_path):
rel_dir=root[len(dir_path)+1:]
ifis_interesting_package(rel_dir):
file_list.extend(get_files(root, rel_dir, files))
returnfile_list
defbuild_packages(files):
packages= {}
seen=set()
forroot_path, rel_path, filenameinfiles:
iffilenameinseen:
# libxml2/libxslt header filenames are unique
continue
seen.add(filename)
package_path='.'.join(rel_path.split(os.sep))
ifpackage_pathinpackages:
root, package_files=packages[package_path]
ifroot!=root_path:
print("conflicting directories found for include package '%s': %s and %s"
% (package_path, root_path, root))
continue
else:
package_files= []
packages[package_path] = (root_path, package_files)
package_files.append(filename)
returnpackages
# Copy Global Extra Options
extra_opts=dict(extra_options)
# Build ext modules
ext_modules=setupinfo.ext_modules(
STATIC_INCLUDE_DIRS, STATIC_LIBRARY_DIRS,
STATIC_CFLAGS, STATIC_BINARIES)
extra_opts['ext_modules'] =ext_modules
packages=extra_opts.get('packages', list())
package_dir=extra_opts.get('package_dir', dict())
package_data=extra_opts.get('package_data', dict())
# Add lxml.include with (lxml, libxslt headers...)
# python setup.py build --static --static-deps install
# python setup.py bdist_wininst --static
ifsetupinfo.OPTION_STATIC:
include_dirs= [] # keep them in order
forextensioninext_modules:
forinc_dirinextension.include_dirs:
ifinc_dirnotininclude_dirs:
include_dirs.append(inc_dir)
header_packages=build_packages(extract_files(include_dirs))
forpackage_path, (root_path, filenames) inheader_packages.items():
ifpackage_path:
package='lxml.includes.'+package_path
packages.append(package)
else:
package='lxml.includes'
package_data[package] =filenames
package_dir[package] =root_path
returnextra_opts
setup(
name="lxml",
version=lxml_version,
author="lxml dev team",
author_email="lxml-dev@lxml.de",
maintainer="lxml dev team",
maintainer_email="lxml-dev@lxml.de",
url="http://lxml.de/",
# Commented out because this causes distutils to emit warnings
# `Unknown distribution option: 'bugtrack_url'`
# which distract folks from real causes of problems when troubleshooting
# bugtrack_url="https://bugs.launchpad.net/lxml",
description="Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.",
long_description=((("""\
lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
provides safe and convenient access to these libraries using the ElementTree
API.
It extends the ElementTree API significantly to offer support for XPath,
RelaxNG, XML Schema, XSLT, C14N and much more.
To contact the project, go to the `project home page
<http://lxml.de/>`_ or see our bug tracker at
https://launchpad.net/lxml
In case you want to use the current in-development version of lxml,
you can get it from the github repository at
https://github.com/lxml/lxml . Note that this requires Cython to
build the sources, see the build instructions on the project home
page. To the same end, running ``easy_install lxml==dev`` will
install lxml from
https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
an appropriate version of Cython installed.
"""+branch_link) % { "branch_version" : versioninfo.branch_version() }) +
versioninfo.changes()),
classifiers= [
versioninfo.dev_status(),
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Programming Language :: Cython',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: C',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Software Development :: Libraries :: Python Modules'
],
**setup_extra_options()
)
ifOPTION_RUN_TESTS:
print("Running tests.")
importtest
sys.exit( test.main(sys.argv[:1]) )