~inkscape.dev/inkscape-devlibs/trunk

« back to all changes in this revision

Viewing changes to python/Lib/site-packages/lxml-3.6.0.dist-info/METADATA

  • Committer: Eduard Braun
  • Date: 2016-10-22 16:54:41 UTC
  • Revision ID: eduard.braun2@gmx.de-20161022165441-gfp6agtut9nh4p22
Update Python to version 2.7.12

Included modules:
  coverage 4.2
  lxml 3.6.4
  numpy 1.11.2
  scour 0.35
  six 1.10.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Metadata-Version: 2.0
2
 
Name: lxml
3
 
Version: 3.6.0
4
 
Summary: Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
5
 
Home-page: http://lxml.de/
6
 
Author: lxml dev team
7
 
Author-email: lxml-dev@lxml.de
8
 
License: UNKNOWN
9
 
Platform: UNKNOWN
10
 
Classifier: Development Status :: 5 - Production/Stable
11
 
Classifier: Intended Audience :: Developers
12
 
Classifier: Intended Audience :: Information Technology
13
 
Classifier: License :: OSI Approved :: BSD License
14
 
Classifier: Programming Language :: Cython
15
 
Classifier: Programming Language :: Python :: 2
16
 
Classifier: Programming Language :: Python :: 2.6
17
 
Classifier: Programming Language :: Python :: 2.7
18
 
Classifier: Programming Language :: Python :: 3
19
 
Classifier: Programming Language :: Python :: 3.2
20
 
Classifier: Programming Language :: Python :: 3.3
21
 
Classifier: Programming Language :: Python :: 3.4
22
 
Classifier: Programming Language :: Python :: 3.5
23
 
Classifier: Programming Language :: C
24
 
Classifier: Operating System :: OS Independent
25
 
Classifier: Topic :: Text Processing :: Markup :: HTML
26
 
Classifier: Topic :: Text Processing :: Markup :: XML
27
 
Classifier: Topic :: Software Development :: Libraries :: Python Modules
28
 
Provides-Extra: source
29
 
Requires-Dist: Cython (>=0.20); extra == 'source'
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
 
 
37
 
lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries.  It
38
 
provides safe and convenient access to these libraries using the ElementTree
39
 
API.
40
 
 
41
 
It extends the ElementTree API significantly to offer support for XPath,
42
 
RelaxNG, XML Schema, XSLT, C14N and much more.
43
 
 
44
 
To contact the project, go to the `project home page
45
 
<http://lxml.de/>`_ or see our bug tracker at
46
 
https://launchpad.net/lxml
47
 
 
48
 
In case you want to use the current in-development version of lxml,
49
 
you can get it from the github repository at
50
 
https://github.com/lxml/lxml .  Note that this requires Cython to
51
 
build the sources, see the build instructions on the project home
52
 
page.  To the same end, running ``easy_install lxml==dev`` will
53
 
install lxml from
54
 
https://github.com/lxml/lxml/tarball/master#egg=lxml-dev if you have
55
 
an appropriate version of Cython installed.
56
 
 
57
 
 
58
 
After an official release of a new stable series, bug fixes may become
59
 
available at
60
 
https://github.com/lxml/lxml/tree/lxml-3.6 .
61
 
Running ``easy_install lxml==3.6bugfix`` will install
62
 
the unreleased branch state from
63
 
https://github.com/lxml/lxml/tarball/lxml-3.6#egg=lxml-3.6bugfix
64
 
as soon as a maintenance branch has been established.  Note that this
65
 
requires Cython to be installed at an appropriate version for the build.
66
 
 
67
 
3.6.0 (2016-03-17)
68
 
==================
69
 
 
70
 
* GH#189: Static builds honour FTP proxy configurations when downloading
71
 
  the external libs.  Patch by Youhei Sakurai.
72
 
 
73
 
* GH#187: Now supports (only) version 5.x and later of PyPy.
74
 
  Patch by Armin Rigo.
75
 
 
76
 
* GH#186: Soupparser failed to process entities in Python 3.x.
77
 
  Patch by Duncan Morris.
78
 
 
79
 
* GH#185: Rare encoding related `TypeError` on import was fixed.
80
 
  Patch by Petr Demin.
81
 
 
82
 
* GH#181: Direct support for `.rnc` files in `RelaxNG()` if `rnc2rng`
83
 
  is installed.  Patch by Dirkjan Ochtman.
84
 
 
85
 
 
86
 
 
87