jdupouy_radicale3-auth-ldap/setup.py

13 lines
319 B
Python
Raw Normal View History

#!/usr/bin/env python3
from setuptools import setup
setup(
name="radicale-auth-ldap",
2021-04-07 03:52:54 +00:00
version="3.0",
description="LDAP Authentication Plugin for Radicale 3",
author="Raoul Thill",
license="GNU GPL v3",
2021-04-07 03:52:54 +00:00
install_requires=["radicale >= 3.0", "ldap3 >= 2.3"],
packages=["radicale_auth_ldap"])