Commit 991221ed authored by Nicolas Delaby's avatar Nicolas Delaby

Initial import of xml_marshaller module implemented in lxml.

Major part of code come from no longer maintained pyxml library.
Fully compatible with PyXML implementation, enable namespace support for
XML Input/Output.
parents
from setuptools import setup, find_packages
import sys, os
version = '0.9'
setup(name='xml_marshaller',
version=version,
description="Converting Python objects to XML and back again.",
long_description="""
Marshals simple Python data types into a custom XML format.
The Marshaller and Unmarshaller classes can be subclassed in order
to implement marshalling into a different XML DTD.""",
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python License (CNRI Python License)',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Markup :: XML'],
keywords='XML marshaller',
author='XML-SIG',
author_email='xml-sig@python.org',
url='http://www.python.org/community/sigs/current/xml-sig/',
license='Python License (CNRI Python License)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=['lxml',],
entry_points="""
# -*- Entry points: -*-
""",
)
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment