From 36352d4a17049ea1858458ded973e2bbc1c41d72 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Thu, 4 May 2023 22:05:01 +0200 Subject: [PATCH] Fix a few warnings with setup.cfg and add the zip_safe option --- setup.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index fe0359e9..6111f0d1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ description = A markdown-like text editor for planning and writing novels url = https://novelwriter.io long_description = file: setup/description_pypi.md long_description_content_type = text/markdown -license_file = LICENSE.md +license_files = LICENSE.md license = GNU General Public License v3 classifiers = Programming Language :: Python :: 3 :: Only @@ -29,9 +29,10 @@ project_urls = Source Code = https://github.com/vkbo/novelWriter [options] +zip_safe = False python_requires = >=3.7 include_package_data = True -packages = find: +packages = find_namespace: install_requires = pyqt5>=5.10 lxml>=4.2.0