-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.15 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
[project]
name = "mp4forge"
version = "2.1.1"
description = "MP4 muxing tool with desktop and web interfaces"
requires-python = ">=3.11,<3.14"
dependencies = [
"platformdirs",
"python-iso639>=2025.11.11",
"python-dotenv",
"pymediainfo",
"typing_extensions",
"tomlkit",
"autoqpf>=0.2.5",
"psutil",
"shortuuid",
"semver",
]
[project.optional-dependencies]
# desktop GUI
desktop = [
"pyside6==6.10.1",
"qtawesome>=1.4.0",
"python-iso639>=2025.11.11",
"pymediainfo",
"typing_extensions",
]
# web backend (for headless/remote access)
web = ["fastapi>=0.115.0", "uvicorn[standard]>=0.31.0"]
# all dependencies (for development)
dev = [
"pyside6==6.10.1",
"qtawesome>=1.4.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.31.0",
"pyinstaller>=6.0.0",
"debugpy",
"ruff",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["core", "frontend_desktop", "backend"]
[tool.ruff]
line-length = 88
target-version = "py39"
include = ["core/**/*.py", "frontend_desktop/**/*.py", "backend/**/*.py"]
[tool.ruff.lint]
select = ["I", "UP"]