-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
49 lines (42 loc) · 1.12 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
[project]
name = "videomosaic"
version = "0.1.0"
description = "一站式短视频拼接软件 无依赖,点击即用,自动去黑边,自动帧同步,自动调整分辨率,批量变更视频为横屏/竖屏"
authors = [
{ name = "PythonImporter", email = "[email protected]" }
]
dependencies = [
"pyside6-fluent-widgets>=1.5.6",
"ansi2html>=1.9.1",
"loguru>=0.7.2",
"opencv-contrib-python>=4.10.0.84",
"typing-extensions>=4.12.2",
"auto-editor>=24.31.1",
"audio-separator[cpu]>=0.18.3",
"noisereduce>=3.0.2",
"onnx==1.16.1",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"nuitka>=2.2.3",
"pyinstaller>=6.10.0",
]
[[tool.rye.sources]]
name = "default"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[[tool.rye.sources]]
name = "pypi"
url = "https://pypi.org/simple"
[[tool.rye.sources]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu121"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/videomosaic"]