-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (42 loc) · 1.33 KB
/
setup.py
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
# This is a setup script for pythons distutils. It will install the aafigure
# extension when run as: python setup.py install
# Author: Chris Liechti <[email protected]>
#
# This is open source software under the BSD license. See LICENSE.txt for more
# details.
from distutils.core import setup
setup(
name = 'aafigure',
version = '0.5',
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 README.txt for examples.
""",
author = 'Chris Liechti',
author_email = '[email protected]',
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'],
)