2018-10-16 21:34:45 +02:00
|
|
|
#
|
|
|
|
# pydoorlock, the python library for doorlock
|
|
|
|
#
|
|
|
|
# Author:
|
|
|
|
# Ralf Ramsauer <ralf@binary-kitchen.de>
|
|
|
|
#
|
2021-11-22 21:57:32 +01:00
|
|
|
# Copyright (c) Binary Kitchen, 2018-2021
|
2018-10-16 21:34:45 +02:00
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
# the COPYING file in the top-level directory.
|
|
|
|
#
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
with open("VERSION") as version_file:
|
2021-11-22 21:57:32 +01:00
|
|
|
version = version_file.read().lstrip("v").rstrip()
|
2018-10-16 21:34:45 +02:00
|
|
|
|
|
|
|
setup(name="pydoorlock", version=version,
|
|
|
|
description="A Python interface for doorlock",
|
2021-10-18 18:11:33 +02:00
|
|
|
license="GPLv2",
|
|
|
|
url="https://github.com/Binary-Kitchen/doorlockd/",
|
2018-10-16 21:34:45 +02:00
|
|
|
author_email="ralf@binary-kitchen.de",
|
2021-10-18 18:11:33 +02:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=["Flask", "Flask-WTF", "pyserial", "python-ldap"],
|
|
|
|
)
|