ports/devel/py-multimethod/files/patch-pyproject.toml
Po-Chuan Hsieh 7c9c12e559
devel/py-multimethod: Add py-multimethod 1.12
Multimethod provides a decorator for adding multiple argument dispatching to
functions. The decorator creates a multimethod object as needed, and registers
the function with its annotations.

There are several multiple dispatch libraries on PyPI. This one aims for
simplicity and speed. With caching of argument types, it should be the fastest
pure Python implementation possible.
2024-07-10 12:56:24 +08:00

10 lines
220 B
TOML

--- pyproject.toml.orig 2024-07-04 16:09:30 UTC
+++ pyproject.toml
@@ -1,3 +1,7 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+
[project]
name = "multimethod"
version = "1.12"