-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["CodeVideoRenderer*"]
[tool.setuptools]
license-files = []
[tool.pyright]
strict = true
reportWildcardImportFromLibrary = false
reportSelfClsParameterName = false
reportIncompatibleMethodOverride = false
reportPossiblyUnboundVariable = false
[tool.setuptools.package-data]
CodeVideoRenderer = ["**/*.py", "**/*.ttf"]
[project]
name = "codevideorenderer"
version = "1.2.1"
description = "A Python library for rendering code videos"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "Zhu Chongjing", email = "zhuchongjing_pypi@163.com"},
]
dependencies = [
"manim>=0.20.1",
"rich>=14.2.0",
"numpy>=2.4.2",
"proglog>=0.1.12",
"moviepy>=2.2.1",
"pillow>=11.2.1",
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ZhuChongjing/CodeVideoRenderer"