1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-04 01:08:51 +03:00
pgcli/setup.py
2014-10-12 15:07:34 -07:00

27 lines
746 B
Python

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',
],
entry_points='''
[console_scripts]
pgcli=pgcli:pgcli
''',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
)