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 55"""
66from setuptools import setup
77
8- VERSION = '0.1.0 '
8+ VERSION = '0.1.1 '
99DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
1010LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
1111It 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):
3535
3636ANSI_ESCAPE_RE = re .compile (r'\x1b[^m]*m' )
3737TAB_WIDTH = 4
38- __version__ = '0.1.0 '
38+ __version__ = '0.1.1 '
3939ELLIPSIS = '…'
4040
4141
You can’t perform that action at this time.
0 commit comments