-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.44 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
46
47
48
49
50
51
52
53
54
55
[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.3"
description = "A Python library for rendering code videos"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Zhu Chongjing", email = "zhuchongjing_pypi@163.com"},
]
dependencies = [
"manim>=0.18.0",
"rich>=14.2.0",
"numpy>=1.24.4",
"proglog>=0.1.12",
"moviepy>=2.2.1;python_version>'3.8'",
"moviepy<2.0.0;python_version=='3.8'",
"pillow>=9.1",
"typing-extensions>=4.0.0",
"imageio-ffmpeg>=0.4.0",
"typeguard>=3.0",
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ExploreMaths/CodeVideoRenderer"