File: setup.py

package info (click to toggle)
pyfiglet 0.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 192 kB
  • sloc: python: 374; sh: 25; makefile: 2
file content (13 lines) | stat: -rwxr-xr-x 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from setuptools import setup

setup(name='pyfiglet',
      version='0.6',
      description='Pure-python FIGlet implementation',
      author='Peter Waller (Thanks to Christopher Jones and Stefano Rivera)',
      author_email='peter.waller@gmail.com',
      url='https://github.com/pwaller/pyfiglet',
      packages=['pyfiglet'],
)