Skip to content

Commit

Permalink
Add LICENSE, tests in source tarball
Browse files Browse the repository at this point in the history
  • Loading branch information
foutaise committed Feb 15, 2019
1 parent afad378 commit d2ad4a2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
include README.md
include *.md
include *.py
include *.pyi
include LICENSE
include tox.ini
include .coveragerc

global-exclude *.pyc
4 changes: 2 additions & 2 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Metadata-Version: 1.0
Name: texttable
Version: 1.5.0
Version: 1.6.1
Summary: module for creating simple ASCII tables
Home-page: https://github.com/foutaise/texttable/
Author: Gerome Fournier
Author-email: [email protected]
License: MIT
Download-URL: https://github.com/foutaise/texttable/archive/v1.5.0.tar.gz
Download-URL: https://github.com/foutaise/texttable/archive/v1.6.1.tar.gz
Description: texttable is a module to generate a formatted text table, using ASCII
characters.
Platform: any
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,10 @@ DATA
__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__credits__ = 'Jeff Kowalczyk:\n - textwrap improved import\n ...at...
__license__ = 'MIT'
__version__ = '1.6.0'
__version__ = '1.6.1'
VERSION
1.6.0
1.6.1
AUTHOR
Gerome Fournier <jef(at)foutaise.org>
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

setup(
name="texttable",
version="1.6.0",
version="1.6.1",
author="Gerome Fournier",
author_email="[email protected]",
url="https://github.com/foutaise/texttable/",
download_url="https://github.com/foutaise/texttable/archive/v1.6.0.tar.gz",
download_url="https://github.com/foutaise/texttable/archive/v1.6.1.tar.gz",
license="MIT",
py_modules=["texttable"],
description=DESCRIPTION,
Expand Down
2 changes: 1 addition & 1 deletion texttable.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__license__ = 'MIT'
__version__ = '1.6.0'
__version__ = '1.6.1'
__credits__ = """\
Jeff Kowalczyk:
- textwrap improved import
Expand Down

0 comments on commit d2ad4a2

Please sign in to comment.