summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluke.maurits <luke.maurits@0f58610c-415a-11de-9c03-5d6cfad8e937>2009-05-26 08:06:00 +0000
committerluke.maurits <luke.maurits@0f58610c-415a-11de-9c03-5d6cfad8e937>2009-05-26 08:06:00 +0000
commit59b67078b62c53afe8a37b54cb9a1a6b9b2fd109 (patch)
tree07f4cd6fb88666f7b69a1fc423af6c7b17595418
parent33724bf4548474f15eed664906dbc02621cd24f1 (diff)
downloadpython-prettytable-0.5.tar.gz
Finalised 0.5 branch.0.5
git-svn-id: http://prettytable.googlecode.com/svn/branches/0.5@7 0f58610c-415a-11de-9c03-5d6cfad8e937
-rw-r--r--src/dist/prettytable-0.5.tar.gzbin0 -> 6112 bytes
-rw-r--r--src/dist/prettytable-0.5.zipbin0 -> 7474 bytes
-rw-r--r--src/prettytable.egg-info/PKG-INFO10
-rw-r--r--src/prettytable.egg-info/SOURCES.txt6
-rw-r--r--src/prettytable.egg-info/dependency_links.txt1
-rw-r--r--src/prettytable.egg-info/top_level.txt1
-rw-r--r--src/prettytable.py2
-rw-r--r--src/setup.py4
8 files changed, 21 insertions, 3 deletions
diff --git a/src/dist/prettytable-0.5.tar.gz b/src/dist/prettytable-0.5.tar.gz
new file mode 100644
index 0000000..b64d11c
--- /dev/null
+++ b/src/dist/prettytable-0.5.tar.gz
Binary files differ
diff --git a/src/dist/prettytable-0.5.zip b/src/dist/prettytable-0.5.zip
new file mode 100644
index 0000000..4bfeb17
--- /dev/null
+++ b/src/dist/prettytable-0.5.zip
Binary files differ
diff --git a/src/prettytable.egg-info/PKG-INFO b/src/prettytable.egg-info/PKG-INFO
new file mode 100644
index 0000000..987fd43
--- /dev/null
+++ b/src/prettytable.egg-info/PKG-INFO
@@ -0,0 +1,10 @@
+Metadata-Version: 1.0
+Name: prettytable
+Version: 0.5
+Summary: A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
+Home-page: http://code.google.com/p/prettytable
+Author: Luke Maurits
+Author-email: luke@maurits.id.au
+License: http://www.luke.maurits.id.au/software/bsdlicense.txt
+Description: UNKNOWN
+Platform: UNKNOWN
diff --git a/src/prettytable.egg-info/SOURCES.txt b/src/prettytable.egg-info/SOURCES.txt
new file mode 100644
index 0000000..3547b4a
--- /dev/null
+++ b/src/prettytable.egg-info/SOURCES.txt
@@ -0,0 +1,6 @@
+prettytable.py
+setup.py
+prettytable.egg-info/PKG-INFO
+prettytable.egg-info/SOURCES.txt
+prettytable.egg-info/dependency_links.txt
+prettytable.egg-info/top_level.txt \ No newline at end of file
diff --git a/src/prettytable.egg-info/dependency_links.txt b/src/prettytable.egg-info/dependency_links.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/src/prettytable.egg-info/dependency_links.txt
@@ -0,0 +1 @@
+
diff --git a/src/prettytable.egg-info/top_level.txt b/src/prettytable.egg-info/top_level.txt
new file mode 100644
index 0000000..deb2d14
--- /dev/null
+++ b/src/prettytable.egg-info/top_level.txt
@@ -0,0 +1 @@
+prettytable
diff --git a/src/prettytable.py b/src/prettytable.py
index bd00f6b..2790f48 100644
--- a/src/prettytable.py
+++ b/src/prettytable.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# PrettyTable TRUNK
+# PrettyTable 0.5
# Copyright (c) 2009, Luke Maurits <luke@maurits.id.au>
# All rights reserved.
# With contributions from:
diff --git a/src/setup.py b/src/setup.py
index e773ec0..5ca1e3d 100644
--- a/src/setup.py
+++ b/src/setup.py
@@ -3,11 +3,11 @@ from setuptools import setup
setup(
name='prettytable',
- version='TRUNK',
+ 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://www.luke.maurits.id.au/software/prettytable',
+ url='http://code.google.com/p/prettytable',
license='http://www.luke.maurits.id.au/software/bsdlicense.txt',
py_modules=['prettytable']
)