-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.8 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
[build-system]
requires = ["scikit-build-core>=0.9.0", "pybind11>=2.11", "numpy"]
build-backend = "scikit_build_core.build"
[project]
name = "ppca-py"
version = "1.0.4"
description = "Probabilistic PCA (PPCA) with missing-data support - fast C++ core, clean Python API"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [ { name = "brdav", email = "" } ]
classifiers = [
"Programming Language :: Python :: 3",
"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",
"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 = ["ppca", "probabilistic pca", "dimensionality reduction", "missing data"]
dependencies = ["numpy>=1.22"]
[project.optional-dependencies]
dev = [
"pytest>=7",
"build",
"wheel",
"packaging",
"scikit-learn>=1.0",
"pre-commit",
]
[project.urls]
Homepage = "https://github.com/brdav/ppca-cpp"
Source = "https://github.com/brdav/ppca-cpp"
[tool.scikit-build]
cmake.version = ">3.18"
cmake.build-type = "Release"
wheel.expand-macos-universal-tags = true
wheel.packages = ["src/python/ppca"]
[tool.cibuildwheel]
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
test-command = "python -c \"import ppca; 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",
]