We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab93419 commit a7b5161Copy full SHA for a7b5161
2 files changed
setup.py
@@ -5,7 +5,7 @@
5
"""
6
from setuptools import setup
7
8
-VERSION = '0.1.1'
+VERSION = '0.1.2'
9
DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
10
LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
11
It converts your data into a string form suitable for pretty-printing as a table. The goal is to make it quick and easy
tableformatter.py
@@ -35,7 +35,7 @@ def __subclasshook__(cls, C):
35
36
ANSI_ESCAPE_RE = re.compile(r'\x1b[^m]*m')
37
TAB_WIDTH = 4
38
-__version__ = '0.1.1'
+__version__ = '0.1.2'
39
ELLIPSIS = '…'
40
41
0 commit comments