-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
80 lines (72 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["scikit-build-core>=0.8.0", "nanobind>=2.9.0", "setuptools>=80.0"]
build-backend = "scikit_build_core.build"
[project]
name = "viteo"
version = "0.1.1"
description = "Hardware-accelerated video frame extraction for Apple Silicon"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Rémi Héneault", email = "remi@heneault.fr"}
]
keywords = [
"video", "frame-extraction", "apple-silicon", "mlx",
"avfoundation", "videotoolbox", "hardware-acceleration",
"computer-vision", "video-processing"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: C++",
"Programming Language :: Objective 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 :: Implementation :: CPython",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mlx>=0.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"opencv-python>=4.8.0",
]
test = [
"pytest>=8.0",
"opencv-python>=4.8.0",
]
[project.urls]
Homepage = "https://github.com/codeSamuraii/viteo"
Repository = "https://github.com/codeSamuraii/viteo"
Documentation = "https://github.com/codeSamuraii/viteo#readme"
Issues = "https://github.com/codeSamuraii/viteo/issues"
[tool.scikit-build]
cmake.version = ">=3.18"
cmake.build-type = "Release"
wheel.packages = ["src/viteo"]
minimum-version = "0.8.0"
[tool.scikit-build.cmake.define]
CMAKE_OSX_ARCHITECTURES = "arm64"
[tool.cibuildwheel]
skip = ["*-win32", "*-win_amd64", "*-linux*", "*-musllinux*", "pp*"]
build = ["cp310-*", "cp311-*", "cp312-*", "cp313-*"]
[tool.cibuildwheel.macos]
archs = ["arm64"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
cache_dir = "/tmp/pytest_cache"
addopts = "-ra -v"
testpaths = ["tests"]