1
1
[build-system ]
2
- requires = [" setuptools" ," twine " , " wheel" , " efficient_apriori " ]
2
+ requires = [" setuptools" , " wheel" ]
3
3
build-backend = " setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " efficient_apriori"
7
- dynamic = [" readme" ," dependencies" ," version" ]
7
+ version = " 2.0.4"
8
+ dynamic = [" readme" ]
8
9
description = " An efficient Python implementation of the Apriori algorithm."
9
10
license = {file = " LICENSE" }
10
11
authors = [
@@ -19,32 +20,29 @@ classifiers = [
19
20
" Programming Language :: Python :: 3.11" ,
20
21
" Programming Language :: Python :: 3.12" ,
21
22
]
22
- requires-python = " >=3.7 "
23
+ requires-python = " >=3.8 "
23
24
24
25
[project .urls ]
25
26
Source = " https://github.com/tommyod/Efficient-Apriori"
27
+ Homepage = " https://github.com/tommyod/Efficient-Apriori"
28
+ Documentation = " https://github.com/tommyod/Efficient-Apriori#readme"
26
29
Repository = " https://github.com/tommyod/Efficient-Apriori.git"
27
30
28
31
[tool .setuptools .dynamic ]
29
- version = {attr = " efficient_apriori.__version__" }
30
32
readme = { file = " README.md" , content-type = " text/markdown" }
31
- dependencies = {file = [" requirements.txt" ]}
32
33
33
34
[tool .setuptools .packages .find ]
34
35
where = [" efficient_apriori" ]
35
36
exclude = [" contrib" , " docs" , " tests" ]
36
37
namespaces = false
37
38
38
- [tool .setuptools .package-data ]
39
- "*" = [" templates/*" , " *.tex" , " *.html" ]
40
-
41
39
[tool .pytest .ini_options ]
42
40
testpaths = [" efficient_apriori/tests" ]
43
41
addopts = " -v -ra -q"
44
42
log_cli = true
45
43
log_cli_level = " INFO"
46
44
log_format = " %(asctime)s %(levelname)s %(message)s"
47
45
log_date_format = " %Y-%m-%d %H:%M:%S"
48
- minversion = " 3.6 "
46
+ minversion = " 3.7 "
49
47
filterwarnings = " ignore"
50
48
norecursedirs = " docs"
0 commit comments