-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 857 Bytes
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
[build-system]
requires = [
"scikit-build-core>=0.10",
"cmake>=3.18",
"pybind11>=2.11",
]
build-backend = "scikit_build_core.build"
[project]
name = "limap"
version = "1.0.0.dev0"
description = "A toolbox for mapping and localization with line features"
authors = [
{ name = "Shaohui Liu", email = "b1ueber2y@gmail.com" },
{ name = "Yifan Yu", email = "markyu98@outlook.com" },
{ name = "Rémi Pautrat", email = "pautratrmi@microsoft.com" },
]
urls = {Repository = "https://github.com/cvg/limap"}
requires-python = ">=3.9,<3.12"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
[tool.scikit-build]
cmake.source-dir = "./"
wheel.packages = ["src/limap"]
cmake.define.VERSION_INFO = "1.0.0.dev0"