summaryrefslogtreecommitdiff
path: root/sandbox/xml2rst/setup.py
blob: 69261b88fbcd5aa55905269e393c98c2da0ca626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

from distutils.core import setup

from version import version

setup(name='xml2rst',
      version=version,
      description='A reStructuredText writer based on Docutils XML',
      author='Stefan Merten',
      author_email='smerten@oekonux.de',
      url='http://docutils.sourceforge.net/sandbox/xml2rst/',
      license='GPL 2',
      requires=[ 'docutils', 'lxml', 'docutils_xml', ],
      scripts=[ 'xml2rst.py' ],
      packages=[ 'xml2rstlib' ],
      package_data={ 'xml2rstlib': [ 'xml2rst.xsl',
                                     'xml2rst-nopy.xsl',
                                     'xml2rst-noexslt.xsl' ], },
     )