-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 900 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 900 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
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MediaOptimizationTool"
version = "2.1.0"
description = "A GUI interface to select options and trim videos to compress and convert video files with FFmpeg"
authors = [
{name = "David Gingerich", email = "gingerichdvd@gmail.com"}
]
requires-python = ">=3.12"
license = { file = "LICENSE" }
dependencies = [
"CTkMenuBar>=0.9",
"CTkMessagebox>=2.7",
"CTkTrimSlider>=2.0.0",
"customtkinter>=5.2.2",
"darkdetect>=0.8.0",
"packaging>=26.0",
"pillow>=12.1.1",
"python-vlc>=3.0.21203"
]
[project.optional-dependencies]
dev = [
"mypy==1.19.1",
]
[tool.mypy]
strict = false
[[tool.mypy.overrides]]
module = [
"CTkMenuBar",
"CTkMenuBar.*",
"CTkMessagebox",
"CTkMessagebox.*",
"customtkinter",
"customtkinter.*",
"vlc",
"vlc.*"
]
ignore_missing_imports = true