mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 20:30:53 +00:00
- Fixes https://github.com/termux/termux-packages/issues/27404 - A strange error occurred `setuptools.errors.InvalidConfigError: No configuration found for dynamic 'license'.`, it seems to be OK if the code related to the error is just removed.
20 lines
638 B
Diff
20 lines
638 B
Diff
Prevents:
|
|
setuptools.errors.InvalidConfigError: No configuration found for dynamic 'license'.
|
|
Seems to be OK to do because not only does
|
|
$TERMUX_PREFIX/lib/python3.12/site-packages/vapoursynth-0.0.0.dist-info/licenses/COPYING.LESSER
|
|
still appear, but also Termux still adds
|
|
$TERMUX_PREFIX/share/doc/vapoursynth/copyright
|
|
to the package anyway
|
|
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -10,7 +10,7 @@ authors = [
|
|
requires-python = ">=3.8"
|
|
description = "A frameserver for the 21st century"
|
|
keywords = ["frameserver", "video", "audio"]
|
|
-dynamic = ["version", "license"]
|
|
+dynamic = ["version"]
|
|
readme = "README.md"
|
|
|
|
[project.urls]
|