2 # Usage: python setup.py {build | install}
5 from setuptools
import setup
, find_packages
10 author
= 'Jon Waltman',
11 author_email
= 'jonathan.waltman@gmail.com',
12 description
= 'Converts reStructuredText to Texinfo',
13 long_description
= open(os
.path
.join(os
.path
.dirname(__file__
),
14 'README.txt')).read(),
16 install_requires
= ['docutils'],
17 scripts
= ['rst2texinfo.py'],
18 py_modules
= ['texinfo'],
19 include_package_data
= True,
21 "Development Status :: 2 - Pre-Alpha",
22 "License :: OSI Approved",
23 "Environment :: Console",
24 "Intended Audience :: Developers",
25 "Programming Language :: Python",
26 "Topic :: Documentation",
28 "Topic :: Text Editors",
29 "Topic :: Text Processing",