-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 980 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (39 loc) · 980 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
46
47
[project]
name = "video2chars"
version = "0.7.0"
authors = [
{ name="Ryan Yin", email="ryan4yin@linux.com" },
]
description = "Convert video to character art animation."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.25.0,<1.27.0",
"pillow>=9.5.0,<10.0.0",
"click>=8.0.0,<9.0.0",
"moviepy>=1.0.3,< 1.1.0",
"imageio-ffmpeg>=0.4.9,<0.5.0",
]
license = {text = "MIT"}
[project.scripts]
video2chars = "video2chars:convert"
[project.urls]
Homepage = "https://github.com/yuansuye/video2chars"
Issues = "https://github.com/yuansuye/video2chars/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
excludes = ["**/*.mp4"]
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.0.0,<9.0.0",
"pip>=24.0",
]