making flake8 happy

This commit is contained in:
Julian Hammer
2021-03-11 12:29:14 +01:00
parent 7da2f5bd7b
commit b7625a4a25
13 changed files with 40 additions and 37 deletions

View File

@@ -106,7 +106,7 @@ setup(
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=["networkx", "pyparsing>=2.3.1", "ruamel.yaml>=0.15.71",],
install_requires=["networkx", "pyparsing>=2.3.1", "ruamel.yaml>=0.15.71"],
python_requires=">=3.5",
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
@@ -128,7 +128,7 @@ setup(
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={"console_scripts": ["osaca=osaca.osaca:main",],},
entry_points={"console_scripts": ["osaca=osaca.osaca:main"]},
# Overwriting install and sdist to enforce cache distribution with package
cmdclass={"install": install, "sdist": sdist},
)