Files
radical3_auth_ldap/setup.py
2022-07-02 15:53:08 +02:00

13 lines
313 B
Python

#!/usr/bin/env python3
from setuptools import setup
setup(
name="radicale3-auth-ldap",
version="3.0",
description="LDAP Authentication Plugin for Radicale 3",
author="Raoul Thill",
license="GNU GPL v3",
install_requires=["radicale >= 3.0", "ldap"],
packages=["radicale3_auth_ldap"])