diff --git a/debian/control b/debian/control index f38a7a2df1823c72849bb6f880e89f0e0f57b2bf..b069ebd3b2deef08002e1765876c1f7e1165d29f 100644 --- a/debian/control +++ b/debian/control @@ -10,11 +10,11 @@ Standards-Version: 3.9.4 Package: libpam-authclient Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: PAM module for authserv. - PAM module for authserv. +Description: PAM module for the A/I authentication protocol. + PAM module for the A/I authentication protocol. Package: ai-auth-server Architecture: all -Depends: ${python:Depends}, ${misc:Depends} +Depends: ${python:Depends}, ${misc:Depends}, python-pylibmc, memcached Description: Auth server package. Centralized authentication server with OTP support. diff --git a/setup.py b/setup.py index 3f6807f545f3d10d7a6dd1f7ab59a2869a53506f..20f425f8782d54fe4c4e05aa6d8f8715d2310294 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( package_data={}, entry_points={ 'console_scripts': [ - 'authserv = authserv.server:main', + 'ai-auth-server = authserv.server:main', ], } )