11[build-system ]
2- requires = [" setuptools" ," twine " , " wheel" , " efficient_apriori " ]
2+ requires = [" setuptools" , " wheel" ]
33build-backend = " setuptools.build_meta"
44
55[project ]
66name = " efficient_apriori"
7- dynamic = [" readme" ," dependencies" ," version" ]
7+ version = " 2.0.4"
8+ dynamic = [" readme" ]
89description = " An efficient Python implementation of the Apriori algorithm."
910license = {file = " LICENSE" }
1011authors = [
@@ -19,32 +20,29 @@ classifiers = [
1920 " Programming Language :: Python :: 3.11" ,
2021 " Programming Language :: Python :: 3.12" ,
2122]
22- requires-python = " >=3.7 "
23+ requires-python = " >=3.8 "
2324
2425[project .urls ]
2526Source = " https://github.com/tommyod/Efficient-Apriori"
27+ Homepage = " https://github.com/tommyod/Efficient-Apriori"
28+ Documentation = " https://github.com/tommyod/Efficient-Apriori#readme"
2629Repository = " https://github.com/tommyod/Efficient-Apriori.git"
2730
2831[tool .setuptools .dynamic ]
29- version = {attr = " efficient_apriori.__version__" }
3032readme = { file = " README.md" , content-type = " text/markdown" }
31- dependencies = {file = [" requirements.txt" ]}
3233
3334[tool .setuptools .packages .find ]
3435where = [" efficient_apriori" ]
3536exclude = [" contrib" , " docs" , " tests" ]
3637namespaces = false
3738
38- [tool .setuptools .package-data ]
39- "*" = [" templates/*" , " *.tex" , " *.html" ]
40-
4139[tool .pytest .ini_options ]
4240testpaths = [" efficient_apriori/tests" ]
4341addopts = " -v -ra -q"
4442log_cli = true
4543log_cli_level = " INFO"
4644log_format = " %(asctime)s %(levelname)s %(message)s"
4745log_date_format = " %Y-%m-%d %H:%M:%S"
48- minversion = " 3.6 "
46+ minversion = " 3.7 "
4947filterwarnings = " ignore"
5048norecursedirs = " docs"
0 commit comments