-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.96 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "linearboost"
dynamic = ["version"]
authors = [
{ name = "Hamidreza Keshavarz", email = "hamid9@outlook.com" },
{ name = "Reza Rawassizadeh", email = "rezar@bu.edu"},
]
description = "LinearBoost Classifier is a rapid and accurate classification algorithm that builds upon a very fast, linear classifier."
readme = "README.md"
keywords = [
"classification", "classifier", "linear", "adaboost", "boosting", "boost"
]
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10,<3.14"
dependencies = [
"scikit-learn>=1.2.2",
"typing-extensions>=4.1.0; python_full_version < '3.11'"
]
[dependency-groups]
dev = [
"isort",
"pre-commit>=3.5.0",
"pytest>=7.0.0",
"ruff>=0.9.2",
"filelock>=3.20.1", # <-- ADD THIS LINE
]
[project.urls]
Homepage = "https://github.com/LinearBoost/linearboost-classifier"
Documentation = "https://linearboost.readthedocs.io"
Repository = "https://github.com/LinearBoost/linearboost-classifier"
Issues = "https://github.com/LinearBoost/linearboost-classifier/issues"
[tool.hatch.version]
path = "src/linearboost/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/linearboost"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = ["ignore"]
[tool.black]
line-length = 120
[tool.isort]
atomic = true
profile = "black"
skip_gitignore = true
known_first_party = ["linearboost"]