~ubuntu-branches/ubuntu/maverick/pyfiglet/maverick

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Rivera
  • Date: 2010-01-28 13:00:41 UTC
  • Revision ID: james.westby@ubuntu.com-20100128130041-1bfzkpkap84x1vwq
Tags: 0.4+dfsg-1
Initial release (Closes: #564609)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
from distutils.core import setup
 
4
 
 
5
setup(name='pyfiglet',
 
6
      version='0.4',
 
7
      description='Pure-python FIGlet implementation',
 
8
      author='Christopher Jones',
 
9
      author_email='cjones@insub.org',
 
10
      url='http://sourceforge.net/projects/pyfiglet/',
 
11
      py_modules=['pyfiglet'],
 
12
      scripts=['pyfiglet'],
 
13
)