comparison planemo/lib/python3.7/site-packages/lxml-4.5.2.dist-info/METADATA @ 1:56ad4e20f292 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:32:28 -0400
parents
children
comparison
equal deleted inserted replaced
0:d30785e31577 1:56ad4e20f292
1 Metadata-Version: 2.1
2 Name: lxml
3 Version: 4.5.2
4 Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
5 Home-page: https://lxml.de/
6 Author: lxml dev team
7 Author-email: lxml-dev@lxml.de
8 Maintainer: lxml dev team
9 Maintainer-email: lxml-dev@lxml.de
10 License: BSD
11 Platform: UNKNOWN
12 Classifier: Development Status :: 5 - Production/Stable
13 Classifier: Intended Audience :: Developers
14 Classifier: Intended Audience :: Information Technology
15 Classifier: License :: OSI Approved :: BSD License
16 Classifier: Programming Language :: Cython
17 Classifier: Programming Language :: Python :: 2
18 Classifier: Programming Language :: Python :: 2.7
19 Classifier: Programming Language :: Python :: 3
20 Classifier: Programming Language :: Python :: 3.5
21 Classifier: Programming Language :: Python :: 3.6
22 Classifier: Programming Language :: Python :: 3.7
23 Classifier: Programming Language :: Python :: 3.8
24 Classifier: Programming Language :: C
25 Classifier: Operating System :: OS Independent
26 Classifier: Topic :: Text Processing :: Markup :: HTML
27 Classifier: Topic :: Text Processing :: Markup :: XML
28 Classifier: Topic :: Software Development :: Libraries :: Python Modules
29 Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*
30 Provides-Extra: cssselect
31 Requires-Dist: cssselect (>=0.7) ; extra == 'cssselect'
32 Provides-Extra: html5
33 Requires-Dist: html5lib ; extra == 'html5'
34 Provides-Extra: htmlsoup
35 Requires-Dist: BeautifulSoup4 ; extra == 'htmlsoup'
36 Provides-Extra: source
37 Requires-Dist: Cython (>=0.29.7) ; extra == 'source'
38
39 lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries. It
40 provides safe and convenient access to these libraries using the ElementTree
41 API.
42
43 It extends the ElementTree API significantly to offer support for XPath,
44 RelaxNG, XML Schema, XSLT, C14N and much more.
45
46 To contact the project, go to the `project home page
47 <https://lxml.de/>`_ or see our bug tracker at
48 https://launchpad.net/lxml
49
50 In case you want to use the current in-development version of lxml,
51 you can get it from the github repository at
52 https://github.com/lxml/lxml . Note that this requires Cython to
53 build the sources, see the build instructions on the project home
54 page. To the same end, running ``easy_install lxml==dev`` will
55 install lxml from
56 https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
57 an appropriate version of Cython installed.
58
59
60 After an official release of a new stable series, bug fixes may become
61 available at
62 https://github.com/lxml/lxml/tree/lxml-4.5 .
63 Running ``easy_install lxml==4.5bugfix`` will install
64 the unreleased branch state from
65 https://github.com/lxml/lxml/tarball/lxml-4.5#egg=lxml-4.5bugfix
66 as soon as a maintenance branch has been established. Note that this
67 requires Cython to be installed at an appropriate version for the build.
68
69 4.5.2 (2020-07-09)
70 ==================
71
72 Bugs fixed
73 ----------
74
75 * ``Cleaner()`` now validates that only known configuration options can be set.
76
77 * LP#1882606: ``Cleaner.clean_html()`` discarded comments and PIs regardless of the
78 corresponding configuration option, if ``remove_unknown_tags`` was set.
79
80 * LP#1880251: Instead of globally overwriting the document loader in libxml2, lxml now
81 sets it per parser run, which improves the interoperability with other users of libxml2
82 such as libxmlsec.
83
84 * LP#1881960: Fix build in CPython 3.10 by using Cython 0.29.21.
85
86 * The setup options "--with-xml2-config" and "--with-xslt-config" were accidentally renamed
87 to "--xml2-config" and "--xslt-config" in 4.5.1 and are now available again.
88
89
90
91