-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.93 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
[build-system]
requires = ["scikit-build-core>=0.9.0", "pybind11>=2.13", "numpy"]
build-backend = "scikit_build_core.build"
[project]
name = "fastrvm"
version = "0.1.5"
description = "Relevance Vector Machine in Python with a C++ Core"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
authors = [ { name = "brdav", email = "" } ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics"
]
keywords = [
"relevance vector machine",
"sparse bayesian learning",
"sparse models",
"kernel methods",
"probabilistic machine learning",
"sparse regression",
"regression",
"classification",
]
dependencies = [
"numpy>=1.24.1; python_version < '3.13'",
"numpy>=2.3.2; python_version >= '3.13'",
"scikit-learn>=1.7.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"build",
"wheel",
"packaging",
"pre-commit",
"pandas",
]
[project.urls]
Homepage = "https://github.com/brdav/fastrvm"
Source = "https://github.com/brdav/fastrvm"
[tool.scikit-build]
cmake.version = ">3.18"
cmake.build-type = "Release"
wheel.expand-macos-universal-tags = true
wheel.packages = ["src/python/fastrvm"]
[tool.cibuildwheel]
build = "cp310-* cp311-* cp312-* cp313-* cp314-*"
test-command = "python -c \"import fastrvm; print('Test passed')\""
skip = "*musllinux*"
[tool.cibuildwheel.linux]
before-all = "yum install -y lapack-devel openblas-devel"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-q"
testpaths = ["tests"]
norecursedirs = [
"extern",
"build",
"_skbuild",
]