Browse Source

specify and document dependencies

Helmut Pozimski 7 years ago
parent
commit
a8c7d1566b
2 changed files with 4 additions and 2 deletions
  1. 2 1
      README.md
  2. 2 1
      setup.py

+ 2 - 1
README.md

@@ -18,7 +18,8 @@ TBD
 
 acme-updater is developed for python 3.x. It might work on older versions but this is not supported. Additionally, the following python modules are required:
 
-TBD
+* pyOpenSSL
+* dnspython
 
 ## COPYING
 

+ 2 - 1
setup.py

@@ -13,5 +13,6 @@ setup(
     license="GNU General Public License version 2",
     packages=["amulib"],
     scripts=["acme-updater"],
-    url="https://git.cyber-everything.de/Hoshpak/acme-updater"
+    url="https://git.cyber-everything.de/Hoshpak/acme-updater",
+    install_requires=["pyOpenSSL", "dnspython"]
 )