-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
76 lines (68 loc) · 1.92 KB
/
pyproject.toml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "bd_to_avp"
version = "0.2.136"
description = "Script to convert 3D Blu-ray Discs (and mts) to Apple Vision Pro (MV-HEVC) files"
authors = ["Chris Busillo <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/cbusillo/BD_to_AVP"
repository = "https://github.com/cbusillo/BD_to_AVP"
documentation = "https://github.com/cbusillo/BD_to_AVP"
keywords = ["Blu-ray", "3D", "Apple Vision Pro", "MV-HEVC", "Conversion", "Vision Pro", "BD3D"]
include = ["README.md", "pyproject.toml"]
[tool.poetry.dependencies]
python = ">=3.12.4,<3.13"
pgsrip = "^0.1.11"
setuptools = "^70.3.0"
ffmpeg-python = "^0.2.0"
tesseract = "^0.1.3"
requests = "^2.32.3"
psutil = "^5.9.8"
pyside6 = "^6.7.1"
pygithub = "^2.3.0"
humanize = "^4.9.0"
packaging = "^24.1"
babelfish = "^0.6.1"
opencv-python = "4.10.0.84"
wakepy = "^0.9.1"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
ruff = "^0.4.7"
ruff-lsp = "^0.0.53"
mypy = "^1.9.0"
briefcase = "=0.3.18"
types-requests = "^2.32.0.20240602"
types-psutil = "^5.9.5.20240516"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.briefcase]
project_name = "3D Blu-ray to Vision pro"
bundle = "com.shinycomputers"
architectures = ["arm64"]
version = "0.2.136"
icon = "bd_to_avp/resources/app_icon"
organization = "Shiny Computers"
[tool.briefcase.app.bd-to-avp]
formal_name = "3D Blu-ray to Vision Pro"
description = "Convert 3D Blu-ray Discs (and mts) to Apple Vision Pro (MV-HEVC) files"
categories = ["Multimedia", "Conversion"]
license.file = "LICENSE"
copyright = "Shiny Computers 2024"
sources = ["bd_to_avp", "pyproject.toml", "README.md"]
requires = [
"pyside6",
"ffmpeg-python",
"pgsrip",
"tesseract",
"setuptools",
"requests",
"psutil",
"pygithub",
"humanize",
"packaging",
"babelfish",
"wakepy",
"opencv-python==4.10.0.84"
]
[tool.poetry.scripts]
bd-to-avp = "bd_to_avp.__main__:main"