From 7b363a3634e5a4ceeef3a6e229f798c6a4aa6adb Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Thu, 11 Dec 2014 00:59:28 -0800 Subject: [PATCH] Update the description in setup.py. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8b9d42d6..81319918 100644 --- a/setup.py +++ b/setup.py @@ -8,14 +8,14 @@ with open('pgcli/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) -description = 'CLI for Postgres. With auto-completion and syntax highlighting.' +description = 'CLI for Postgres Database. With auto-completion and syntax highlighting.' setup( name='pgcli', author='Amjith Ramanujam', version=version, - license='LICENSE.txt', + license='LICENSE', url='https://github.com/amjith/pgcli', packages=find_packages(), description=description,