-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.04 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
[project]
name = "scikit-rvm"
version = "0.1.0a1"
description = "Relevance Vector Machine implementation using the scikit-learn API"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "James Ritchie", email = "[email protected]" },
]
license = { text = "BSD" }
keywords = ["machine-learning", "rvm", "sparse", "bayesian", "scikit-learn"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0",
"scipy>=1.12",
"scikit-learn>=1.5",
]
[dependency-groups]
dev = [
"coverage>=7.10.3",
"ruff>=0.12.8",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["tests*"]
# Ruff configuration
[tool.ruff]
line-length = 100
src = ["skrvm", "tests"]
exclude = [
".venv",
"build",
"dist",
"__pycache__",
]
[tool.ruff.lint.isort]
known-first-party = ["skrvm"]