Skip to content

Commit

Permalink
use pyproject.toml for building wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
ahgamut committed Aug 26, 2024
1 parent c9dda18 commit 19ddd38
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Note: this is `cliquematch v3`. If you're looking for `v1`, you can go to the [`
[PyPI][wheels] wheels are available for Linux, Windows, and MacOS.

```bash
pip install cliquematch>=3.0.0
pip install cliquematch>=3.0.1
```

### Installing from source
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Gautham Venkatasubramanian"

# The full version, including alpha/beta/rc tags
release = "3.0.0"
release = "3.0.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Installing from a wheel

.. code:: bash
pip install cliquematch>=3.0.0
pip install cliquematch>=3.0.1
Installing from source
----------------------
Expand Down
22 changes: 22 additions & 0 deletions pyproject.toml
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"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/cliquematch/__init__.py
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"

0 comments on commit 19ddd38

Please sign in to comment.