Skip to content

Commit 132a59f

Browse files
committed
Updated version to 0.1.0
Also: - Added Development Status to setup.py - Added __version__ to tableformatter.py
1 parent 1112274 commit 132a59f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.0.1'
8+
VERSION = '0.1.0'
99
DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
1010
LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
1111
It converts your data into a string form suitable for pretty-printing as a table. The goal is to make it quick and easy
@@ -15,6 +15,7 @@
1515

1616
CLASSIFIERS = list(filter(None, map(str.strip,
1717
"""
18+
Development Status :: 5 - Production/Stable
1819
Environment :: Console
1920
Operating System :: OS Independent
2021
Intended Audience :: Developers
@@ -52,7 +53,7 @@
5253
url='https://github.com/python-tableformatter/tableformatter',
5354
license='MIT',
5455
platforms=['any'],
55-
py_modules = ['tableformatter'],
56+
py_modules=['tableformatter'],
5657
keywords='table tabular formatter',
5758
python_requires='>=3.4',
5859
install_requires=INSTALL_REQUIRES,

tableformatter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def __subclasshook__(cls, C):
3434

3535
ANSI_ESCAPE_RE = re.compile(r'\x1b[^m]*m')
3636
TAB_WIDTH = 4
37+
__version__ = '0.1.0'
3738

3839

3940
def _text_wrap(text, width=70):

0 commit comments

Comments
 (0)