removed obsolete issues (many of them fixed with AE)
[docutils.git] / sandbox / gschwant / htmlnav / setup.py
blob22a200ce76dc317258427f4d4986125f3156d0e1
1 #!/usr/bin/env python
3 from distutils.core import setup
5 def do_setup():
6 dist = setup(
7 name='html-with-navigation-bars-writer',
8 description='A HTML writer for Docutils which supports navigation bars',
9 url='http://docutils.sourceforg.net/sandbox/gschwant/htmlwnav/',
10 version='0.1',
11 author='Gunnar Schwant',
12 author_email='g.schwant@gmx.de',
13 license='Public Domain',
14 packages=['docutils.writers'],
15 package_dir={'docutils.writers':'writer'},
16 scripts=['rst2htmlnav.py']
18 return dist
20 if __name__ == '__main__':
21 do_setup()