Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 2f027a3

Browse files
committed
merged setup.cfg to pyproject.toml
1 parent 8793505 commit 2f027a3

File tree

2 files changed

+41
-41
lines changed

2 files changed

+41
-41
lines changed

pyproject.toml

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,46 @@
11
[build-system]
2-
requires = ["setuptools >= 40.9.0", "wheel"]
2+
requires = ["setuptools >= 61.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.pytest.ini_options]
66
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"

setup.cfg

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)