|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools >= 40.9.0", "wheel"] |
| 2 | +requires = ["setuptools >= 61.0.0", "wheel"] |
3 | 3 | build-backend = "setuptools.build_meta"
|
4 | 4 |
|
5 | 5 | [tool.pytest.ini_options]
|
6 | 6 | testpaths = ["tests"]
|
| 7 | + |
| 8 | +[project] |
| 9 | +name = "ffmpeg_downloader" |
| 10 | +description = "FFmpeg Release Build Downloader" |
| 11 | +readme = "README.rst" |
| 12 | +keywords = ["multimedia", "ffmpeg", "ffprobe", "download"] |
| 13 | +license = { text = "GPL-2.0 License" } |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", |
| 17 | + "Topic :: Multimedia :: Sound/Audio", |
| 18 | + "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", |
| 19 | + "Topic :: Multimedia :: Sound/Audio :: Conversion", |
| 20 | + "Topic :: Multimedia :: Video", |
| 21 | + "Topic :: Multimedia :: Video :: Capture", |
| 22 | + "Topic :: Multimedia :: Video :: Conversion", |
| 23 | + "Programming Language :: Python :: 3.7", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | +] |
| 28 | +dynamic = ["version"] |
| 29 | +requires-python = ">=3.7" |
| 30 | +dependencies = ["requests", "tqdm>=4.40.0", "appdirs", "packaging"] |
| 31 | + |
| 32 | +[project.urls] |
| 33 | +Repository = "https://github.com/python-ffmpegio/python-ffmpeg-downloader" |
| 34 | +Issues = "https://github.com/python-ffmpegio/python-ffmpegio-downloader/issues" |
| 35 | +Pull_Requests = "https://github.com/python-ffmpegio/python-ffmpegio-downloader/pulls" |
| 36 | + |
| 37 | +[project.scripts] |
| 38 | +ffdl = "ffmpeg_downloader.__main__:main" |
| 39 | + |
| 40 | +[tool.setuptools.dynamic] |
| 41 | +version = { attr = "ffmpeg_downloader.__version__" } |
0 commit comments