mirror of
https://github.com/apache/impala.git
synced 2026-01-02 12:00:33 -05:00
26 lines
881 B
Python
26 lines
881 B
Python
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
from prettytable import __version__ as version
|
|
|
|
setup(
|
|
name='prettytable',
|
|
version=version,
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.4',
|
|
'Programming Language :: Python :: 2.5',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Topic :: Text Processing'
|
|
],
|
|
license="BSD (3 clause)",
|
|
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',
|
|
py_modules=['prettytable'],
|
|
test_suite = "prettytable_test"
|
|
)
|