Fixes #663 - Fixes linting/pylint errors

Signed-off-by: BugFest <bugfest.dev@pm.me>
This commit is contained in:
BugFest
2023-04-09 19:49:08 +02:00
committed by Muayyad Alsadi
parent 2df11674c4
commit 016c97fd1e
7 changed files with 22 additions and 13 deletions

View File

@ -2,14 +2,16 @@ import os
from setuptools import setup
try:
readme = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
except: # noqa: E722
readme = ""
README = open(
os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8"
).read()
except: # noqa: E722 # pylint: disable=bare-except
README = ""
setup(
name="podman-compose",
description="A script to run docker-compose.yml using podman",
long_description=readme,
long_description=README,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",