aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-08-12 23:51:55 -0400
committerThibaut Horel <thibaut.horel@gmail.com>2014-08-12 23:51:55 -0400
commit38522eb9734aa9f22f5aee46560d99e563ecb53b (patch)
tree8538891687a3dfe1287a8eae725ce18d9c616115 /setup.py
downloadtabletext-38522eb9734aa9f22f5aee46560d99e563ecb53b.tar.gz
Initial commit
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..a7a560f
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+
+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',
+ author='Thibaut Horel',
+ author_email='thibaut.hore+tabletext@gmail.com',
+ py_modules=['tabletext'],
+ entry_points={"console_scripts": ["table=tabletext:main"]},
+ use_2to3=True,
+ license='GNU GPLv3'
+ )