summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 89ed20ae07f97dac4ca9462a080f56c8f4a8f593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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',
            'tabulate',
            ],
        entry_points='''
            [console_scripts]
            pgcli=pgcli:pgcli
        ''',
        classifiers=[
            'License :: OSI Approved :: BSD License',
            'Programming Language :: Python',
            'Programming Language :: Python :: 3'
            ],
        )