-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 873 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
32
33
[project]
name = "avcuda"
version = "0.2.4"
description = "PyAV extension with hardware encoding/decoding support on Nvidia GPUs."
authors = [{name = "Matteo Destro"}]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["av", "cuda", "torch", "ffmpeg", "libav", "video"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"av>=12.3.0",
"torch",
"nvidia-npp-cu12==12.3.1.54",
]
[project.urls]
Homepage = "https://github.com/materight/PyAV-CUDA.git"
Repository = "https://github.com/materight/PyAV-CUDA.git"
[build-system]
requires = [
"setuptools",
"cython",
"av==12.3.0", # Minimum supported av version
"nvidia-npp-cu12==12.3.1.54",
"nvidia-cuda-nvcc-cu12",
"nvidia-cuda-runtime-cu12",
]
build-backend = "setuptools.build_meta"