Add pyproject.toml
This commit is contained in:
parent
d3475834ab
commit
c19fa9a76c
|
@ -2,10 +2,10 @@
|
|||
Algorithm for finding a maximum weight matching in general graphs.
|
||||
"""
|
||||
|
||||
from .algorithm import (maximum_weight_matching,
|
||||
adjust_weights_for_maximum_cardinality_matching,
|
||||
MatchingError)
|
||||
|
||||
__all__ = ["maximum_weight_matching",
|
||||
"adjust_weights_for_maximum_cardinality_matching",
|
||||
"MatchingError"]
|
||||
|
||||
from .algorithm import (maximum_weight_matching,
|
||||
adjust_weights_for_maximum_cardinality_matching,
|
||||
MatchingError)
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
[build-system]
|
||||
requires = ["setuptools >= 61.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "mwmatching"
|
||||
version = "3.0"
|
||||
authors = [{name = "Joris van Rantwijk"}]
|
||||
requires-python = ">= 3.7"
|
||||
classifiers = [
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Private :: Do Not Upload"
|
||||
]
|
||||
|
Loading…
Reference in New Issue