-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.86 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
[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"
readme-content-type = "text/markdown"
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.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",
]
requires-python = ">=3.8,<3.14"
dependencies = [
"scikit-learn>=1.2.2",
]
[dependency-groups]
dev = [
"isort",
"pytest>=7.0.0",
"ruff>=0.9.2",
]
[project.urls]
Homepage = "https://github.com/LinearBoost/linearboost-classifier"
Source = "https://github.com/LinearBoost/linearboost-classifier"
[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 = ["black", "blib2to3", "blackd", "_black_version"]