aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 748baa9c08b29ac54413249857b8dcff7029f753 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 >= 2.3, < 2.4"],
    packages=["radicale_auth_ldap"])
bgstack15