-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.55 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 = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
[project]
name = "ffmpeg_downloader"
description = "FFmpeg Release Build Downloader"
readme = "README.rst"
keywords = ["multimedia", "ffmpeg", "ffprobe", "download"]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = ["requests", "tqdm>=4.40.0", "platformdirs", "packaging"]
[project.urls]
Repository = "https://github.com/python-ffmpegio/python-ffmpeg-downloader"
Issues = "https://github.com/python-ffmpegio/python-ffmpegio-downloader/issues"
Pull_Requests = "https://github.com/python-ffmpegio/python-ffmpegio-downloader/pulls"
[project.scripts]
ffdl = "ffmpeg_downloader.ffdl:run"
[project.gui-scripts]
ffdl-gui = "ffmpeg_downloader.qt.__main__:main"
[tool.setuptools.dynamic]
version = { attr = "ffmpeg_downloader.__version__" }