-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.65 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
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ffmpegio"
description = "Media I/O with FFmpeg"
readme = "README.rst"
keywords = ["multimedia", "ffmpeg"]
license = { text = "GPL-2.0 License" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Conversion",
"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",
]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"pluggy",
"packaging",
"typing_extensions >= 4.12",
"namedpipe >= 0.2.5",
]
[project.urls]
Repository = "https://github.com/python-ffmpegio/python-ffmpegio"
Documentation = "https://python-ffmpegio.github.io/python-ffmpegio/"
Discussions = "https://github.com/python-ffmpegio/python-ffmpegio/discussions"
Issues = "https://github.com/python-ffmpegio/python-ffmpegio/issues"
Pull_Requests = "https://github.com/python-ffmpegio/python-ffmpegio/pulls"
[tool.setuptools.dynamic]
version = { attr = "ffmpegio.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
# minversion = "6.0"
# addopts = "-ra -q"
[tool.ruff]
typing-modules = ["ffmpegio._typing", "ffmpegio.filtergraph.typing"]