2 # Author: Lea Wiemann <LeWiemann@gmail.com>
3 # Author: Chris Liechti <cliechti@gmx.net>
4 # Copyright: This file has been placed in the public domain.
6 from setuptools
import setup
, find_packages
8 name
= 'docutils-aafigure',
10 description
= "ASCII art figures for reStructuredText",
11 long_description
= """\
14 - a plugin for docutils (>= 0.5) -> aafigure directive
15 - a command line application docutils-aafigure
27 Command line example::
29 docutils-aafigure test.txt -t svg -o test.svg
31 Please see README.txt for examples.
33 author
= 'Chris Liechti',
34 author_email
= 'cliechti@gmx.net',
35 install_requires
= 'docutils>=0.5',
37 'Development Status :: 4 - Beta',
38 'Environment :: Console',
39 'Environment :: Web Environment',
40 'Intended Audience :: Developers',
41 #~ 'License :: OSI Approved :: BSD License',
42 'Operating System :: OS Independent',
43 'Programming Language :: Python',
44 'Topic :: Documentation',
48 packages
= find_packages(),
50 'docutils.parsers.rst.directives': [
51 'aafigure = aafigure.aafigure_directive:AAFigureDirective'
54 'docutils-aafigure = aafigure.aafigure:main',