diff --git a/README.md b/README.md index dc60451f8..dd750d0f4 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Apache, though we will be expanding it to other platforms. ``` sudo apt-get install python python-setuptools python-virtualenv \ - python-dev python-augeas gcc swig dialog libssl-dev -virtualenv --system-site-packages venv + python-dev gcc swig dialog libssl-dev +virtualenv --no-site-packages venv ./venv/bin/python setup.py install sudo ./venv/bin/letsencrypt ``` diff --git a/setup.py b/setup.py index 3966bdccf..b39a8230d 100755 --- a/setup.py +++ b/setup.py @@ -15,18 +15,21 @@ setup( 'letsencrypt.scripts', ], install_requires=[ - #'dialog', - 'requests', 'jsonschema', 'M2Crypto', 'pycrypto', - #'python-augeas', + 'python-augeas', 'python2-pythondialog', + 'requests', + ], + dependency_links=[ + # http://augeas.net/download.html + 'https://fedorahosted.org/released/python-augeas/', ], entry_points={ 'console_scripts': [ - 'letsencrypt = letsencrypt.scripts.main:main' - ] + 'letsencrypt = letsencrypt.scripts.main:main', + ], }, zip_safe=False, include_package_data=True,