-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (37 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
39 lines (37 loc) · 1.21 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
[project]
name = "video-processing-workshop"
version = "0.1.0"
description = "A comprehensive resource for diving deep into the fascinating world of digital video processing. Whether you're starting from the basics or looking to refine your advanced skills, this workshop provides hands-on guidance and clear explanations"
authors = [
{ name = "Amirhossein Heydari", email = "amirhosseinheydari78@gmail.com" },
]
maintainers = [
{ name = "Amirhossein Heydari", email = "amirhosseinheydari78@gmail.com" },
]
keywords = [
"DVP",
"digital video processing",
"video processing",
"media processing",
]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE", "assets/original/LICENSE"]
requires-python = ">=3.14.5"
dependencies = [
"av>=17.0.1,<18.0.0",
"ImageIO>=2.37.3,<3.0.0",
"ipykernel>=7.2.0,<8.0.0",
"ipympl>=0.10.0,<1.0.0",
"ipywidgets>=8.1.8,<9.0.0",
"matplotlib>=3.10.9,<4.0.0",
"numpy>=2.4.6,<3.0.0",
"opencv-python>=4.13.0.92,<5.0.0",
# "python-ffmpeg>=2.0.12,<3.0.0",
"scipy>=1.17.1,<2.0.0",
]
[project.urls]
Repository = "https://github.com/mr-pylin/video-processing-workshop"
MyHomepage = "https://mr-pylin.github.io"
[tool.black]
line-length = 120