mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 07:10:32 -04:00
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.
10 lines
220 B
TOML
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"
|