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