Adding last of @kuba fixes from PR#9 Thanks!

This commit is contained in:
James Kasten
2014-11-18 20:15:22 -08:00
parent dcdbd13674
commit d56ec3c1da
+4 -4
View File
@@ -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'
]
},
)