-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 984 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
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "patchwork"
version = "0.1.0"
description = "Patchable renders, git style!"
authors = [
{name = "in03", email = "[email protected]"},
]
dependencies = [
"pydavinci @ git+https://github.com/in03/pydavinci",
"timecode<2.0.0,>=1.3.1",
"rich<13.0.0,>=12.6.0",
"dearpygui<2.0.0,>=1.8.0",
"ffmpeg-python<1.0.0,>=0.2.0",
"typer<1.0.0,>=0.7.0",
"inquirer<4.0.0,>=3.1.3",
"pydantic<2.0.0,>=1.10.5",
"rtoml<1.0.0,>=0.9.0",
"pyfiglet<1.0.0,>=0.8.post1",
"git+https://github.com/in03/pydavinci",
"pydavinci-18 @ git+https://github.com/in03/pydavinci",
]
requires-python = "<3.12,>=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
patchwork = "patchwork.cli:main"
[project.optional-dependencies]
dev = [
"opentimelineio>=0.16.0",
"pyside6>=6.7.0",
]