Strategies for finding binary dependencies
at main 26 lines 636 B view raw
1[project] 2name = "python-wheel" 3version = "0.1.0" 4description = "Add your description here" 5readme = "README.md" 6authors = [ 7 { name = "Vlad-Stefan Harbuz", email = "vlad@vlad.website" } 8] 9requires-python = ">=3.13" 10dependencies = [ 11 "numpy>=2.4.2", 12] 13 14[project.scripts] 15python-wheel = "python_wheel:main" 16 17[tool.scikit-build] 18minimum-version = "build-system.requires" 19build-dir = "build/{wheel_tag}" 20 21[tool.uv] 22cache-keys = [{ file = "pyproject.toml" }, { file = "src/**/*.{h,c,hpp,cpp}" }, { file = "CMakeLists.txt" }] 23 24[build-system] 25requires = ["scikit-build-core>=0.10", "pybind11"] 26build-backend = "scikit_build_core.build"