File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 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+ * ~
Original file line number Diff line number Diff line change 55"""
66from setuptools import setup
77
8- VERSION = '0.0.1 '
8+ VERSION = '0.1.0 '
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
1515
1616CLASSIFIERS = list (filter (None , map (str .strip ,
1717"""
18+ Development Status :: 5 - Production/Stable
1819Environment :: Console
1920Operating System :: OS Independent
2021Intended Audience :: Developers
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 ,
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ def __subclasshook__(cls, C):
3434
3535ANSI_ESCAPE_RE = re .compile (r'\x1b[^m]*m' )
3636TAB_WIDTH = 4
37+ __version__ = '0.1.0'
3738
3839
3940def _text_wrap (text , width = 70 ):
You can’t perform that action at this time.
0 commit comments