diff options
author | smerten <smerten@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2013-11-16 13:19:53 +0000 |
---|---|---|
committer | smerten <smerten@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2013-11-16 13:19:53 +0000 |
commit | b4f817c8fb346e8689f29307cf0c032706d5fe7a (patch) | |
tree | 19473b002a522c8913b0d22ba74431ec8aa8aa4e /sandbox/docutils_xml/setup.py | |
parent | 055a0f883360892f1e978fcf33aae6b12517c2c6 (diff) | |
download | docutils-b4f817c8fb346e8689f29307cf0c032706d5fe7a.tar.gz |
Package for XML support for Docutils. Meant to be included in the main
Docutils source tree.
Code in this version is moved here from odf2docutils V1.0.1.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7727 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox/docutils_xml/setup.py')
-rwxr-xr-x | sandbox/docutils_xml/setup.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sandbox/docutils_xml/setup.py b/sandbox/docutils_xml/setup.py new file mode 100755 index 000000000..2a498f5fc --- /dev/null +++ b/sandbox/docutils_xml/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python + +from distutils.core import setup + +from version import version + +setup(name='docutils_xml', + version=version, + description='Docutils support for XML based processing', + author='Stefan Merten', + author_email='smerten@oekonux.de', + url='http://docutils.sourceforge.net/sandbox/docutils_xml/', + license='GPL 2', + requires=[ 'lxml' ], + packages=[ 'docutils_xml', + 'docutils_xml/parsers', 'docutils_xml/writers' ], + ) |