Removed item about backslash-escaped colons in field list field names: implemented...
[docutils.git] / sandbox / texinfo-writer / setup.py
blobe5c992d48a1508d31c10330a90b0e9889a5e172a
2 # Usage: python setup.py {build | install}
4 import os
5 from setuptools import setup, find_packages
7 setup(
8 name = 'rst2texinfo',
9 version = '0.2',
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(),
15 license = 'TBD',
16 install_requires = ['docutils'],
17 scripts = ['rst2texinfo.py'],
18 py_modules = ['texinfo'],
19 include_package_data = True,
20 classifiers = [
21 "Development Status :: 2 - Pre-Alpha",
22 "License :: OSI Approved",
23 "Environment :: Console",
24 "Intended Audience :: Developers",
25 "Programming Language :: Python",
26 "Topic :: Documentation",
27 "Topic :: Terminals",
28 "Topic :: Text Editors",
29 "Topic :: Text Processing",
30 "Topic :: Utilities",