From 2497082083bae7fa6c5c223aef2a78a2700b3bab Mon Sep 17 00:00:00 2001 From: tommyod Date: Mon, 2 Sep 2024 09:54:36 +0200 Subject: [PATCH] discovery --- pyproject.toml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a7523a0..d6cd51a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta" [project] name = "efficient_apriori" -version = "2.0.4" +version = "2.0.5" dynamic = ["readme"] -description = " An efficient Python implementation of the Apriori algorithm." +description = "An efficient Python implementation of the Apriori algorithm." license = {file = "LICENSE"} authors = [ {name = "tommyod", email = "tommy.odland@gmail.com"}, @@ -28,14 +28,12 @@ Homepage = "https://github.com/tommyod/Efficient-Apriori" Documentation = "https://github.com/tommyod/Efficient-Apriori#readme" Repository = "https://github.com/tommyod/Efficient-Apriori.git" +[tool.setuptools] +packages = ["efficient_apriori"] + [tool.setuptools.dynamic] readme = { file = "README.md", content-type = "text/markdown"} -[tool.setuptools.packages.find] -where = ["efficient_apriori"] -exclude = ["contrib", "docs", "tests"] -namespaces = false - [tool.pytest.ini_options] testpaths = ["efficient_apriori/tests"] addopts = "-v -ra -q" @@ -43,6 +41,6 @@ log_cli = true log_cli_level = "INFO" log_format = "%(asctime)s %(levelname)s %(message)s" log_date_format = "%Y-%m-%d %H:%M:%S" -minversion = "3.7" +minversion = "3.8" filterwarnings = "ignore" norecursedirs = "docs"