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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# This is a setup script for pythons distutils. It will install the aafigure
# extension when run as: python setup.py install
# Author: Chris Liechti <cliechti@gmx.net>
#
# This is open source software under the BSD license. See LICENSE.txt for more
# details.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'aafigure',
version = '0.6',
description = "ASCII art to image converter",
url = 'http://launchpad.net/aafigure',
license = 'BSD',
long_description = """\
This package provides a module ``aafigure``, that can be used from other
programs, and a command line tool ``aafigure``.
Example, test.txt::
+-----+ ^
| | |
--->+ +---o--->
| | |
+-----+ V
Command::
aafigure test.txt -t svg -o test.svg
Please see documentation for examples.
http://aafigure.readthedocs.io/
""",
author = 'Chris Liechti',
author_email = 'cliechti@gmx.net',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms = 'any',
packages = ['aafigure'],
scripts = ['scripts/aafigure'],
)
|