Skip to content

Commit 81be364

Browse files
authored
Merge pull request #8 from python-tableformatter/git_ignore
Updated .gitignore and version
2 parents 33922ac + 132a59f commit 81be364

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ dist
66
*.pyc
77
.tox
88
.pytest_cache
9+
*.egg-info
910

1011
# Code Coverage
1112
.coverage
@@ -19,4 +20,4 @@ htmlcov
1920

2021
# mypy optional static type checker
2122
.mypy_cache
22-
*~
23+
*~

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)