-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.75 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
[build-system]
requires = ["scikit-build-core>=0.4.3", "nanobind>=1.3.2"]
build-backend = "scikit_build_core.build"
[project]
name = "gsolver"
version = "0.1.0"
description = "Gaussian Belief Propagation SLAM Library"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
authors = [
{name = "RVP Group"}
]
keywords = ["slam", "robotics", "belief-propagation", "factor-graph", "optimization"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.20",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.urls]
Homepage = "https://github.com/rvp-group/gsolver"
Repository = "https://github.com/rvp-group/gsolver"
[tool.scikit-build]
minimum-version = "0.4"
cmake.args = ["-DGSOLVER_BUILD_PYTHON=ON", "-DGSOLVER_BUILD_EXAMPLES=OFF", "-DGSOLVER_BUILD_TESTS=OFF"]
[tool.scikit-build.wheel]
install-dir = "gsolver"
# The only pure-Python file is python/__init__.py, installed into the package by
# python/CMakeLists.txt (install-dir is "gsolver", so it lands as gsolver/__init__.py
# alongside the compiled _gsolver module). An empty list disables package
# auto-discovery, which would otherwise pick up the C++ "gsolver/" source directory.
packages = []
[tool.pytest.ini_options]
testpaths = ["python/tests"]
python_files = ["test_*.py"]