-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use pyproject.toml for building wheels
- Loading branch information
Showing
6 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0", "numpy>=1.14", "pybind11>=2.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "cliquematch" | ||
version = "3.0.1" | ||
authors = [ | ||
{ name="Gautham" }, | ||
] | ||
description="Finding correspondence via maximum cliques in large graphs" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/ahgamut/cliquematch" | ||
Issues = "https://github.com/ahgamut/cliquematch/issues" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,7 +100,7 @@ def build_extensions(self): | |
|
||
setup( | ||
name="cliquematch", | ||
version="3.0.0", | ||
version="3.0.1", | ||
author="Gautham Venkatasubramanian", | ||
author_email="[email protected]", | ||
description="Finding correspondence via maximum cliques in large graphs", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from cliquematch.core import Graph, NWGraph | ||
from .wrappers import * | ||
|
||
__version__ = "3.0.0" | ||
__version__ = "3.0.1" |