forked from moinwiki/emeraldtree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·60 lines (47 loc) · 1.93 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
#!/usr/bin/env python
"""
EmeraldTree, a light-weight toolkit for XML processing in Python
================================================================
EmeraldTree is a fork of ElementTree - the main differences are:
* It has a slightly different API:
- Handling of text: it uses unicode objects as children (not as
"tail" attributes of the elements)
* API cleanups, removing backward compatibility
* Better unicode support
* PolyglotWriter (for writing html5 that is also well-formed xml)
* Other improvements / optimizations
The fork happened at ElementTree 1.3a3-20070912-preview.
For more details please see the `EmeraldTree repository <https://github.com/moinwiki/emeraldtree/>`_.
"""
from setuptools import setup
DESCRIPTION="EmeraldTree - a light-weight XML object model for Python."
setup(
name="emeraldtree",
version="0.10.1",
url='https://github.com/moinwiki/emeraldtree/',
author="Bastian Blank",
author_email="[email protected]",
keywords=["xml", "html", "html5", "polyglot", "element", "tree", "dom", "unicode", ],
description=DESCRIPTION,
long_description=__doc__,
license="Python (MIT style)",
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: Python Software Foundation License',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML',
],
packages=["emeraldtree"],
install_requires=['six>=1.3.0'],
platforms="any",
)