Install Augeas using setuptools

This commit is contained in:
Jakub Warmuz
2014-11-22 02:52:03 +01:00
parent c7ac555a43
commit 731727cb38
2 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ 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
python-dev gcc swig dialog libssl-dev
virtualenv --system-site-packages venv
./venv/bin/python setup.py install
sudo ./venv/bin/letsencrypt
+7 -5
View File
@@ -15,18 +15,20 @@ 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,