-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.46 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
[build-system]
requires = ["scikit-build-core", "numpy"]
build-backend = "scikit_build_core.build"
[project]
name = "apriltag-python"
version = "3.4.5"
description = "Python wrapper for the AprilTag visual fiducial detector"
readme = "README.md"
license = {text = "BSD-2-Clause"}
authors = [
{name = "chibai", email = "huangyibin1992@gmail.com"}
]
requires-python = ">=3.10"
dependencies = [
"numpy",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[project.urls]
Homepage = "https://github.com/AprilRobotics/apriltag"
Repository = "https://github.com/chibai/apriltag-python"
[tool.scikit-build]
# CMake arguments for building (works on both Linux and Windows)
cmake.args = [
"-DBUILD_SHARED_LIBS=ON",
"-DBUILD_EXAMPLES=OFF",
"-DBUILD_PYTHON_WRAPPER=ON",
"-DCMAKE_BUILD_TYPE=Release",
"-DBUILD_EXAMPLES=OFF"
]
# Include Python source files from src/
wheel.packages = ["src/apriltag"]
wheel.exclude = ["include", "lib", "share", "apriltag/apriltag"]