initial commit, just some small syntax sugar for Raoul Thill's LDAP plugin

This commit is contained in:
Marco Huenseler
2017-06-25 14:29:43 +02:00
commit cc32d985f5
2 changed files with 106 additions and 0 deletions

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
from setuptools import setup
setup(
name="radicale-auth-ldap",
version="0.1",
description="LDAP Authentication Plugin for Radicale 2",
author="Raoul Thill",
license="GNU GPL v3",
install_requires=["radicale>=2.0", "ldap3"],
packages=["radicale_auth_ldap"])