-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 744 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# pydoorlock, the python library for doorlock
#
# Author:
# Ralf Ramsauer <ralf@binary-kitchen.de>
#
# Copyright (c) Binary Kitchen, 2018-2021
#
# 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:
version = version_file.read().lstrip("v").rstrip()
setup(name="pydoorlock", version=version,
description="A Python interface for doorlock",
license="GPLv2",
url="https://github.com/Binary-Kitchen/doorlockd/",
author_email="ralf@binary-kitchen.de",
packages=find_packages(),
install_requires=["Flask", "Flask-WTF", "pyserial", "python-ldap"],
)