Skip to content

Commit

Permalink
discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyod committed Sep 2, 2024
1 parent c831be1 commit 2497082
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"},
Expand All @@ -28,21 +28,19 @@ 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"
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"

0 comments on commit 2497082

Please sign in to comment.