mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
commit
0ab8e4e6d4
2 changed files with 10 additions and 7 deletions
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
13
setup.py
13
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue