From d56ec3c1da5fa1f4780f78a4fb43ac581f1f33fa Mon Sep 17 00:00:00 2001 From: James Kasten Date: Tue, 18 Nov 2014 20:15:22 -0800 Subject: [PATCH] Adding last of @kuba fixes from PR#9 Thanks! --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 9d46ebea2..0d79a5762 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,10 @@ #!/usr/bin/env python from setuptools import setup setup( - name="trustify", + name="letsencrypt", version="0.1", - description="Trustify", - author="Trustify project", + description="Let's Encrypt", + author="Let's Encrypt Project", license="", url="https://letsencrypt.org", packages=[ @@ -23,7 +23,7 @@ setup( ], entry_points={ 'console_scripts': [ - 'trustify = trustify.client.client:authenticate' + 'letsencrypt = letsencrypt.client.client:authenticate' ] }, )