-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1.06 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
[project]
name = "ffmpeg-binaries"
authors = [{name="Matteo Dell'Acqua", email="[email protected]"}]
maintainers = [{name="Matteo Dell'Acqua", email="[email protected]"}]
description = "A static build of ffmpeg for Python"
license = {file="LICENSE"}
requires-python = ">=3.9"
keywords = ["ffmpeg", "static"]
dynamic = ["version"]
readme = "README.md"
dependencies = [
'requests',
'patool'
]
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'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'
]
[project.scripts]
ffmpeg = "ffmpeg.executable:_run"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "ffmpeg.__version__"}
[tool.setuptools.package-data]
"*" = ["*.json"]