File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.1.0 '
8
+ VERSION = '0.1.1 '
9
9
DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
10
10
LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
11
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
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def __subclasshook__(cls, C):
35
35
36
36
ANSI_ESCAPE_RE = re .compile (r'\x1b[^m]*m' )
37
37
TAB_WIDTH = 4
38
- __version__ = '0.1.0 '
38
+ __version__ = '0.1.1 '
39
39
ELLIPSIS = '…'
40
40
41
41
You can’t perform that action at this time.
0 commit comments