-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 791 Bytes
/
Copy pathpyproject.toml
File metadata and controls
26 lines (23 loc) · 791 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
[build-system]
requires = ["scikit-build-core>=0.9"]
build-backend = "scikit_build_core.build"
[project]
name = "strongsort-cpp"
version = "0.1.0"
description = "High-performance C++ implementation of the StrongSORT multi-object tracker with Python bindings"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Iaroslav Sheipak" }]
keywords = ["multi-object-tracking", "strongsort", "computer-vision", "tracking", "mot"]
classifiers = [
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[project.urls]
Homepage = "https://github.com/IaroslavSheipak/StrongSort"
[tool.scikit-build]
cmake.version = ">=3.20"
cmake.build-type = "Release"
wheel.packages = []