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