diff --git a/.flake8 b/.flake8 index 632a8c0..6193c99 100644 --- a/.flake8 +++ b/.flake8 @@ -1,4 +1,4 @@ [flake8] max-line-length = 120 extend-ignore = E203, E501, E722 -extend-exclude = venv, scripts +extend-exclude = venv, scripts, build, dist diff --git a/Makefile b/Makefile index a91e402..53f1725 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ $(INSTALL_GUI_STAMP): requirements-GUI.txt ins: $(PACKAGE_PATH) $(PACKAGE_PATH): - $(PIP) install . + $(PIP) install -e . dist: CI pyinstaller -y comictagger.spec diff --git a/setup.py b/setup.py index a0f302f..270e471 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ setup( name="comictagger", install_requires=install_requires, extras_require=extras_require, - python_requires=">=3", + python_requires=">=3.9", description="A cross-platform GUI/CLI app for writing metadata to comic archives", author="ComicTagger team", author_email="comictagger@gmail.com", @@ -68,8 +68,7 @@ setup( "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.9", "Topic :: Utilities", "Topic :: Other/Nonlisted Topic", "Topic :: Multimedia :: Graphics",