-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (69 loc) · 1.91 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wnb"
dynamic = ["version"]
authors = [
{ name = "Mehdi Samsami", email = "[email protected]" },
]
description = "Python library for the implementations of general and weighted naive Bayes (WNB) classifiers."
readme = "README.md"
readme-content-type = "text/markdown"
keywords = [
"python",
"machine learning",
"bayes",
"naive bayes",
"classifier",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"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",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
]
requires-python = ">=3.8,<3.14"
dependencies = [
"pandas>=1.4.1",
"scipy>=1.8.0",
"scikit-learn>=1.0.2",
"typing-extensions>=4.8.0; python_full_version < '3.11'",
]
[dependency-groups]
dev = [
"black>=24.8.0",
"isort",
"pre-commit>=3.5.0",
"pytest>=7.0.0",
"ruff>=0.9.2",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/msamsami/wnb"
Source = "https://github.com/msamsami/wnb"
[tool.hatch.version]
path = "wnb/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["wnb"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = ["ignore"]
[tool.black]
line-length = 110
[tool.isort]
atomic = true
profile = "black"
skip_gitignore = true
known_first_party = ["black", "blib2to3", "blackd", "_black_version"]