aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-08-14 14:06:22 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2014-08-14 14:06:22 -0400
commit66dc59fed3cf6c8491174591a913715589c9c888 (patch)
treeff20bd9ca93cd5d786f1c7fa60335b40a799efb7
parent1c17e36ebe2bed642e44dfaedcb8cab2b03bb3ac (diff)
downloadtabletext-0.1.tar.gz
Update setup.py, add CHANGELOGv0.1
-rw-r--r--CHANGELOG.rst7
-rw-r--r--setup.py10
2 files changed, 13 insertions, 4 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
new file mode 100644
index 0000000..71ef6a0
--- /dev/null
+++ b/CHANGELOG.rst
@@ -0,0 +1,7 @@
+Release history
+---------------
+
+0.1 (2014-08-14)
+~~~~~~~~~~~~~~~~
+
+Initial release
diff --git a/setup.py b/setup.py
index a7a560f..ab049e2 100644
--- a/setup.py
+++ b/setup.py
@@ -4,11 +4,13 @@ from setuptools import setup
setup(name='tabletext',
version='0.1',
- description='Pretty-print tabular data',
- long_description=open("README.rst").read(),
- url='https://github.com/Thibauth/python-pushover',
+ description='Python library and command line utility to pretty-print\
+ tabular data',
+ long_description=open("README.rst").read() + "\n"
+ + open("CHANGELOG.rst").read(),
+ url='https://github.com/Thibauth/tabletext',
author='Thibaut Horel',
- author_email='thibaut.hore+tabletext@gmail.com',
+ author_email='thibaut.horel+tabletext@gmail.com',
py_modules=['tabletext'],
entry_points={"console_scripts": ["table=tabletext:main"]},
use_2to3=True,