blob: 5ca1e3dd481416c62700ddfdc41a4e5bc6f0d0db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env python
from setuptools import setup
setup(
name='prettytable',
version='0.5',
description='A simple Python library for easily displaying tabular data in a visually appealing ASCII table format',
author='Luke Maurits',
author_email='luke@maurits.id.au',
url='http://code.google.com/p/prettytable',
license='http://www.luke.maurits.id.au/software/bsdlicense.txt',
py_modules=['prettytable']
)
|