summaryrefslogtreecommitdiff
path: root/sandbox/texinfo-writer/setup.py
blob: e5c992d48a1508d31c10330a90b0e9889a5e172a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

# Usage: python setup.py {build | install}

import os
from setuptools import setup, find_packages

setup(
    name                 = 'rst2texinfo',
    version              = '0.2',
    author               = 'Jon Waltman',
    author_email         = 'jonathan.waltman@gmail.com',
    description          = 'Converts reStructuredText to Texinfo',
    long_description     = open(os.path.join(os.path.dirname(__file__),
                                             'README.txt')).read(),
    license              = 'TBD',
    install_requires     = ['docutils'],
    scripts              = ['rst2texinfo.py'],
    py_modules           = ['texinfo'],
    include_package_data = True,
    classifiers = [
        "Development Status :: 2 - Pre-Alpha",
        "License :: OSI Approved",
        "Environment :: Console",
        "Intended Audience :: Developers",
        "Programming Language :: Python",
        "Topic :: Documentation",
        "Topic :: Terminals",
        "Topic :: Text Editors",
        "Topic :: Text Processing",
        "Topic :: Utilities",
    ],
)