You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
301 B

  1. #!/usr/bin/env python3
  2. from distutils.core import setup
  3. setup(
  4. name="radicale-auth-ldap",
  5. version="0.1",
  6. description="LDAP Authentication Plugin for Radicale 3",
  7. author="Dennis Buchhorn",
  8. install_requires=["radicale >= 3.0", "ldap3 >= 2.3"],
  9. packages=["radicale-auth-ldap"])