-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.37 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "efficient_apriori"
version = "2.0.5"
dynamic = ["readme"]
description = "An efficient Python implementation of the Apriori algorithm."
license = {file = "LICENSE"}
authors = [
{name = "tommyod", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
[project.urls]
Source = "https://github.com/tommyod/Efficient-Apriori"
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.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.8"
filterwarnings = "ignore"
norecursedirs = "docs"