forked from KaHIP/KaHIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["scikit-build-core>=0.5", "pybind11>=2.10", "setuptools-scm>=8.0"]
build-backend = "scikit_build_core.build"
[project]
name = "kahip"
dynamic = ["version"]
description = "Karlsruhe High Quality Graph Partitioning Framework"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Christian Schulz"},
]
keywords = ["graph", "partitioning", "graph-partitioning", "multilevel"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
[tool.scikit-build]
cmake.build-type = "Release"
cmake.args = ["-DBUILDPYTHONMODULE=ON", "-DNOMPI=ON"]
wheel.packages = ["python/kahip"]
minimum-version = "0.5"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
[tool.setuptools_scm]
version_file = "python/kahip/_version.py"
# Strip 'v' prefix from tags: v3.19 -> 3.19 or v3.19.0 -> 3.19.0
tag_regex = "^v(?P<version>[0-9]+\\.[0-9]+(?:\\.[0-9]+)?)$"
fallback_version = "0.0.0"