-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (74 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
80 lines (74 loc) · 1.63 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "niaarm"
version = "0.4.6"
description = "A minimalistic framework for numerical association rule mining"
authors = [
{ name = "Žiga Stupan", email = "ziga.stupan1@student.um.si" },
{ name = "Iztok Fister Jr.", email = "iztok@iztok-jr-fister.eu" },
]
requires-python = ">=3.11"
readme = "README.md"
license = "MIT"
keywords = [
"association rule mining",
"data science",
"numerical association rule mining",
"preprocessing",
"visualization",
]
dependencies = [
"niapy>=2.6.1",
"numpy>=2.3.5",
"pandas>=2.3.3",
"nltk>=3.9.2",
"plotly>=6.5.0",
"scikit-learn>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/firefly-cpp/NiaARM"
Repository = "https://github.com/firefly-cpp/NiaARM"
Documentation = "https://niaarm.readthedocs.io/en/latest/"
[project.scripts]
niaarm = "niaarm.cli:main"
[dependency-groups]
dev = [
{ include-group = "pre-commit" },
{ include-group = "test" },
{ include-group = "lint" },
]
test = [
"pytest>=9.0.0",
"pytest-cov>=7.0.0",
"pytest-randomly>=4.0.1",
]
lint = [
"ruff>=0.14.9",
]
pre-commit = [
"pre-commit>=4.5.0"
]
docs = [
"sphinx-rtd-theme>=3.0.2",
"sphinxcontrib-bibtex>=2.6.5",
"sphinx>=8.2.3",
]
[tool.uv.build-backend]
source-include = [
"LICENSE",
"CHANGELOG.md",
"CITATION.cff",
"niaarm.1",
]
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]