forked from Zulko/moviepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (61 loc) · 1.68 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "moviepy"
version = "2.1.1"
description = "Video editing with Python"
readme = "README.md"
license = { text = "MIT License" }
authors = [{ name = "Zulko 2024" }]
keywords = ["video", "editing", "audio", "compositing", "ffmpeg"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Conversion",
]
dependencies = [
"decorator>=4.0.2,<6.0",
"imageio>=2.5,<3.0",
"imageio_ffmpeg>=0.2.0",
"numpy>=1.25.0",
"proglog<=1.0.0",
"python-dotenv>=0.10",
"pillow>=9.2.0,<11.0",
]
[project.optional-dependencies]
doc = [
"numpydoc<2.0",
"Sphinx==6.*",
"pydata-sphinx-theme==0.13",
"sphinx_design",
]
test = [
"coveralls>=3.0,<4.0",
"pytest-cov>=2.5.1,<3.0",
"pytest>=3.0.0,<7.0.0",
]
lint = [
"black>=23.7.0",
"flake8>=6.0.0",
"flake8-absolute-import>=1.0",
"flake8-docstrings>=1.7.0",
"flake8-rst-docstrings>=0.3",
"flake8-implicit-str-concat==0.4.0",
"isort>=5.12",
"pre-commit>=3.3",
]
[tool.setuptools.packages.find]
include = ["moviepy*"]
exclude = ["media", "tests", "docs"]