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.

setup.py 579B

1234567891011121314151617181920212223242526
  1. #! /usr/bin/env python
  2. from setuptools import setup
  3. from setuptools import find_packages
  4. install_requires = [
  5. 'acme',
  6. 'certbot',
  7. 'zope.interface',
  8. ]
  9. setup(
  10. name='certbot-dns',
  11. description="Certbot DNS authenticator",
  12. url='https://git.rthoni.com/robin.thoni/certbot-dns',
  13. author="Robin Thoni",
  14. author_email='robin@rthoni.com',
  15. license='MIT',
  16. install_requires=install_requires,
  17. packages=find_packages(),
  18. entry_points={
  19. 'certbot.plugins': [
  20. 'auth = certbot_dns.authenticator:Authenticator',
  21. ],
  22. },
  23. )