Add kerberos to requirements

This commit is contained in:
Priit Laes 2015-08-27 17:41:32 +00:00
parent 03f9c9fd50
commit a3fd7edbfb
3 changed files with 4 additions and 2 deletions

View File

@ -60,7 +60,7 @@ To install Certidude:
.. code:: bash .. code:: bash
apt-get install -y python3 python3-pip python3-dev cython3 build-essential libffi-dev libssl-dev apt-get install -y python3 python3-pip python3-dev cython3 build-essential libffi-dev libssl-dev libkrb5-dev
pip3 install certidude pip3 install certidude
Make sure you're running PyOpenSSL 0.15+ and netifaces 0.10.4+ from PyPI, Make sure you're running PyOpenSSL 0.15+ and netifaces 0.10.4+ from PyPI,

View File

@ -12,6 +12,7 @@ pyasn1==0.1.8
pycountry==1.14 pycountry==1.14
pycparser==2.14 pycparser==2.14
pycrypto==2.6.1 pycrypto==2.6.1
pykerberos==1.1.8
pyOpenSSL==0.15.1 pyOpenSSL==0.15.1
python-mimeparse==0.1.4 python-mimeparse==0.1.4
setproctitle==1.1.9 setproctitle==1.1.9

View File

@ -28,7 +28,8 @@ setup(
"pycrypto", "pycrypto",
"cryptography", "cryptography",
"markupsafe", "markupsafe",
"ldap3" "ldap3",
"pykerberos",
], ],
scripts=[ scripts=[
"misc/certidude" "misc/certidude"