From b0866968790b01e178c2fa5d17bec12b569c0c0e Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Mon, 18 Oct 2021 18:11:33 +0200 Subject: [PATCH] setup: specify requirements --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 426a178..68673da 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,9 @@ with open("VERSION") as version_file: setup(name="pydoorlock", version=version, description="A Python interface for doorlock", - license="GPLv2", url="https://github.com/Binary-Kitchen/doorlockd/", + license="GPLv2", + url="https://github.com/Binary-Kitchen/doorlockd/", author_email="ralf@binary-kitchen.de", - packages=find_packages()) + packages=find_packages(), + install_requires=["Flask", "Flask-WTF", "pyserial", "python-ldap"], + )