aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: ce5811f6b64b33a068582b318bdc74d341c0ca1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3

from distutils.core import setup

setup(
    name="radicale-auth-ldap",
    version="0.3",
    description="LDAP Authentication Plugin for Radicale 3",
    author="Raoul Thill",
    license="GNU GPL v3",
    install_requires=["radicale >= 3.0", "ldap3 >= 2.3"],
    packages=["radicale_auth_ldap"])
bgstack15