mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
setup.py: remove pending newline
Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
This commit is contained in:
parent
15ff2c0293
commit
5419d4587a
4
setup.py
4
setup.py
@ -4,7 +4,7 @@
|
||||
# Author:
|
||||
# Ralf Ramsauer <ralf@binary-kitchen.de>
|
||||
#
|
||||
# Copyright (c) Binary Kitchen, 2018
|
||||
# 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.
|
||||
@ -13,7 +13,7 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("VERSION") as version_file:
|
||||
version = version_file.read().lstrip("v")
|
||||
version = version_file.read().lstrip("v").rstrip()
|
||||
|
||||
setup(name="pydoorlock", version=version,
|
||||
description="A Python interface for doorlock",
|
||||
|
Loading…
Reference in New Issue
Block a user