|
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 = "ffmpegio" |
| 10 | +description = "Media I/O with FFmpeg and NumPy array" |
| 11 | +readme = "README.rst" |
| 12 | +keywords = ["multimedia", "ffmpeg"] |
| 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 | + |
| 29 | +dynamic = ["version"] |
| 30 | +requires-python = ">=3.7" |
| 31 | +dependencies = ["ffmpegio-core >= 0.7.0", "numpy >= 1.20"] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Home = "https://python-ffmpegio.github.io/python-ffmpegio" |
| 35 | +Repository = "https://github.com/python-ffmpegio/python-ffmpegio" |
| 36 | +Discussions = "https://github.com/python-ffmpegio/python-ffmpegio/discussions" |
| 37 | +Issues = "https://github.com/python-ffmpegio/python-ffmpegio/issues" |
| 38 | +"Pull Requests" = "https://github.com/python-ffmpegio/python-ffmpegio/pulls" |
| 39 | + |
| 40 | + |
| 41 | +[tool.setuptools.dynamic] |
| 42 | +version = { attr = "ffmpegio_plugin_numpy.__version__" } |
| 43 | + |
| 44 | + |
| 45 | +[project.entry-points."ffmpegio"] |
| 46 | +rawdata_numpy = "ffmpegio_plugin_numpy" |
0 commit comments