-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.23 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 = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ffmpeg-studio"
authors = [{ name = "Aman Raza" }]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.11"
readme = "README.md"
dynamic = ["version", "description"]
keywords = ["ffmpeg", "media", "video processing", "audio", "python", "wrapper", "transcoding"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Conversion",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/electro199/ffmpeg-studio"
Repository = "https://github.com/electro199/ffmpeg-studio"
Documentation = "https://electro199.github.io/ffmpeg-studio/"
[project.optional-dependencies]
dev = [
"mkdocs",
"mkdocs-material",
"pymdown-extensions",
"mkdocstrings[python]",
"mkdocs-autorefs"
]
[tool.flit.module]
name = "ffmpeg"