mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
23 lines
642 B
Python
23 lines
642 B
Python
#
|
|
# pydoorlock, the python library for doorlock
|
|
#
|
|
# Author:
|
|
# Ralf Ramsauer <ralf@binary-kitchen.de>
|
|
#
|
|
# Copyright (c) Binary Kitchen, 2018
|
|
#
|
|
# 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")
|
|
|
|
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())
|