From e491868ae1a831c66c7ed163c216b78a353fe3ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 9 Apr 2024 23:38:28 +0300 Subject: [PATCH] Simplify setup.cfg not to include every module - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html - https://setuptools.pypa.io/en/latest/userguide/declarative_config.html --- setup.cfg | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/setup.cfg b/setup.cfg index 4a4735a2d3..01f29a5eb5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,28 +26,12 @@ project_urls = Bug Tracker = https://github.com/Taxel/PlexTraktSync/issues [options] -packages = - plextraktsync - plextraktsync.commands - plextraktsync.config - plextraktsync.decorators - plextraktsync.logger - plextraktsync.media - plextraktsync.mixin - plextraktsync.plan - plextraktsync.plex - plextraktsync.queue - plextraktsync.rich - plextraktsync.sync - plextraktsync.trakt - plextraktsync.util - plextraktsync.watch +packages = find: python_requires = >=3.8 include_package_data = True [options.packages.find] -exclude = - tests +include = plextraktsync [options.entry_points] console_scripts =