setup.py 546 B

123456789101112131415161718
  1. #! /usr/bin/env python 3
  2. # -*- coding: utf8 -*-
  3. from setuptools import setup
  4. setup(
  5. name="acme-updater",
  6. version="0.1dev",
  7. author = "Helmut Pozimski",
  8. author_email="helmut@pozimski.eu",
  9. description= ("tool that takes care of automatically replacing Let's "
  10. "Encrypt SSL certificates"),
  11. license="GNU General Public License version 2",
  12. packages=["amulib"],
  13. scripts=["acme-updater"],
  14. url="https://git.cyber-everything.de/Hoshpak/acme-updater",
  15. install_requires=["pyOpenSSL", "dnspython"]
  16. )