Add <target> to one more testcase (see r8206).
[docutils.git] / sandbox / aafigure / setup.py
blob5bee309862cfc5ae970e3ee6fcd3840439c53fca
1 # $Id$
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
7 setup(
8 name = 'docutils-aafigure',
9 version = '0.2',
10 description = "ASCII art figures for reStructuredText",
11 long_description = """\
12 This module provides:
14 - a plugin for docutils (>= 0.5) -> aafigure directive
15 - a command line application docutils-aafigure
17 reST example::
19 .. aafigure::
21 +-----+ ^
22 | | |
23 --->+ +---o--->
24 | | |
25 +-----+ V
27 Command line example::
29 docutils-aafigure test.txt -t svg -o test.svg
31 Please see README.txt for examples.
32 """,
33 author = 'Chris Liechti',
34 author_email = 'cliechti@gmx.net',
35 install_requires = 'docutils>=0.5',
36 classifiers = [
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',
45 'Topic :: Utilities',
47 platforms = 'any',
48 packages = find_packages(),
49 entry_points = {
50 'docutils.parsers.rst.directives': [
51 'aafigure = aafigure.aafigure_directive:AAFigureDirective'
53 'console_scripts': [
54 'docutils-aafigure = aafigure.aafigure:main',