aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: a7a560fa74733ae59ee393ea14ccd03223d117d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'
      )