-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 801 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 801 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "video2pdf"
version = "0.1.1"
description = "Convert Video to a PDF file or a presentable slide."
readme = "README.md"
authors = [{ name = "Kunal Dawn, LearnOpenCV", email = "spmallick@learnopencv.com" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 1 - Planning",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["Annotation", "Automated Annotation", "OpenCV Annotate"]
dependencies = [
"opencv-python",
"img2pdf",
]
requires-python = ">=3.5"
[project.urls]
Homepage = "https://github.com/bigvisionai/video2pdf"