setup.py: remove pending newline

Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
This commit is contained in:
Ralf Ramsauer 2021-11-22 21:57:32 +01:00
parent 15ff2c0293
commit 5419d4587a
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
# Author: # Author:
# Ralf Ramsauer <ralf@binary-kitchen.de> # 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 # This work is licensed under the terms of the GNU GPL, version 2. See
# the COPYING file in the top-level directory. # the COPYING file in the top-level directory.
@ -13,7 +13,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open("VERSION") as version_file: with open("VERSION") as version_file:
version = version_file.read().lstrip("v") version = version_file.read().lstrip("v").rstrip()
setup(name="pydoorlock", version=version, setup(name="pydoorlock", version=version,
description="A Python interface for doorlock", description="A Python interface for doorlock",