blob: e773ec06c40e52f42df1e16697a1529276668251 (
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='TRUNK',
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://www.luke.maurits.id.au/software/prettytable',
license='http://www.luke.maurits.id.au/software/bsdlicense.txt',
py_modules=['prettytable']
)
|