File: setup.py

package info (click to toggle)
pyfiglet 0.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 228 kB
  • ctags: 187
  • sloc: python: 1,742; makefile: 11
file content (13 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python

from distutils.core import setup

setup(name='pyfiglet',
      version='0.4',
      description='Pure-python FIGlet implementation',
      author='Christopher Jones',
      author_email='cjones@insub.org',
      url='http://sourceforge.net/projects/pyfiglet/',
      py_modules=['pyfiglet'],
      scripts=['pyfiglet'],
)