1
0
Fork 0
pgcli/setup.py

28 lines
770 B
Python
Raw Normal View History

2014-10-12 22:07:34 +00:00
from setuptools import setup
setup(
name='pgcli',
author='Amjith Ramanujam',
version='0.1',
license='LICENSE.txt',
url='https://github.com/amjith/pgcli',
py_modules=['pgcli'],
description='CLI for Postgres. With auto-completion and '
'syntax highlighting',
install_requires=[
'Click',
'prompt_toolkit',
'psycopg2',
2014-11-24 07:30:17 +00:00
'tabulate',
2014-10-12 22:07:34 +00:00
],
entry_points='''
[console_scripts]
pgcli=pgcli:pgcli
''',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
)