passagemath-cliquer 10.5.12__cp310-cp310-musllinux_1_2_x86_64.whl → 10.6.33__cp310-cp310-musllinux_1_2_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,111 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-cliquer
3
+ Version: 10.6.33
4
+ Summary: passagemath: Finding cliques in graphs with cliquer
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License-Expression: GPL-2.0-or-later
8
+ Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
+ Project-URL: repo (upstream), https://github.com/sagemath/sage
10
+ Project-URL: repo, https://github.com/passagemath/passagemath
11
+ Project-URL: documentation, https://passagemath.org/docs/latest
12
+ Project-URL: homepage (upstream), https://www.sagemath.org
13
+ Project-URL: discourse, https://passagemath.discourse.group
14
+ Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
15
+ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
+ Classifier: Development Status :: 6 - Mature
17
+ Classifier: Intended Audience :: Education
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft :: Windows
23
+ Classifier: Programming Language :: Python :: 3 :: Only
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.15,>=3.10
31
+ Description-Content-Type: text/x-rst
32
+ Provides-Extra: test
33
+ Requires-Dist: passagemath-graphs; extra == "test"
34
+ Requires-Dist: passagemath-repl; extra == "test"
35
+
36
+ ===============================================================================
37
+ passagemath: Finding cliques in graphs with cliquer
38
+ ===============================================================================
39
+
40
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
41
+ source mathematical software in Python, released under the GNU General
42
+ Public Licence GPLv2+.
43
+
44
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
45
+ developed 2005-2025 under the motto “Creating a Viable Open Source
46
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
47
+
48
+ The passagemath fork uses the motto "Creating a Free Passage Between the
49
+ Scientific Python Ecosystem and Mathematical Software Communities."
50
+ It was created in October 2024 with the following goals:
51
+
52
+ - providing modularized installation with pip,
53
+ - establishing first-class membership in the scientific Python
54
+ ecosystem,
55
+ - giving `clear attribution of upstream
56
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
57
+ - providing independently usable Python interfaces to upstream
58
+ libraries,
59
+ - offering `platform portability and integration testing
60
+ services <https://github.com/passagemath/passagemath/issues/704>`__
61
+ to upstream projects,
62
+ - inviting collaborations with upstream projects,
63
+ - `building a professional, respectful, inclusive
64
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
65
+ - `empowering Sage users to participate in the scientific Python ecosystem
66
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
67
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
68
+ serverless deployment with Javascript,
69
+ - developing a native Windows port.
70
+
71
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
72
+ available online.
73
+
74
+ passagemath attempts to support and provides binary wheels suitable for
75
+ all major Linux distributions and recent versions of macOS.
76
+
77
+ Binary wheels for native Windows (x86_64) are are available for a subset of
78
+ the passagemath distributions. Use of the full functionality of passagemath
79
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
80
+ or virtualization.
81
+
82
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
83
+
84
+
85
+ About this pip-installable distribution package
86
+ -----------------------------------------------
87
+
88
+ This pip-installable distribution ``passagemath-cliquer`` provides an interface
89
+ to `cliquer <https://users.aalto.fi/~pat/cliquer.html>`_, an exact branch-and-bound
90
+ algorithm for finding cliques in an arbitrary weighted graph by Patric Östergård.
91
+
92
+
93
+ What is included
94
+ ----------------
95
+
96
+ * `Cython interface to cliquer <https://passagemath.org/docs/latest/html/en/reference/graphs/sage/graphs/cliquer.html>`_
97
+
98
+
99
+ Examples
100
+ --------
101
+
102
+ ::
103
+
104
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-cliquer[test]" ipython
105
+
106
+ In [1]: from sage.all__sagemath_cliquer import *
107
+
108
+ In [2]: from sage.graphs.cliquer import max_clique
109
+
110
+ In [3]: C = graphs.PetersenGraph(); max_clique(C)
111
+ Out[3]: [7, 9]
@@ -0,0 +1,10 @@
1
+ passagemath_cliquer.libs/libcliquer-c696efef.so.1.0.21,sha256=COT0CWjr0I9CI9yUwoiWLFnteviFivzfqX7ljbhwHXI,143049
2
+ sage/all__sagemath_cliquer.py,sha256=jBej4FzxkgjVdTK_hCm3u9rgoYX3_PAHa2mZXK8KvUM,107
3
+ sage/graphs/all__sagemath_cliquer.py,sha256=Rby8pG2esTxBpJcnmT0FiU_RsBsT_mzMEXds-AjXrUI,46
4
+ sage/graphs/cliquer.cpython-310-x86_64-linux-gnu.so,sha256=0djbJjXCbrKQv4rJ4Yiu-LXzkok87Ob9aNWNtZZrX1o,644665
5
+ sage/graphs/cliquer.pxd,sha256=NTJnYsne4hPSF65aG6CayHmkTJ3NwEJkngGTV3M7uQ0,654
6
+ sage/graphs/cliquer.pyx,sha256=H2IMZxZu8xeKynaefRM6_8zzCu-w4TVAtcrwp-07Z_U,9640
7
+ passagemath_cliquer-10.6.33.dist-info/METADATA,sha256=xezfP_W-rTJjsMP47VLLWKh_j6rYKuTitO0xgXwh-ts,4831
8
+ passagemath_cliquer-10.6.33.dist-info/WHEEL,sha256=YJPq7zroHSsdctrb_KymZ4ss41PkmaA9SD9TZzqKSX8,112
9
+ passagemath_cliquer-10.6.33.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
10
+ passagemath_cliquer-10.6.33.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-musllinux_1_2_x86_64
5
5
 
@@ -1,3 +1,4 @@
1
1
  # sage_setup: distribution = sagemath-cliquer
2
+ # delvewheel: patch
2
3
 
3
4
  from sage.all__sagemath_graphs import *
@@ -1,82 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: passagemath-cliquer
3
- Version: 10.5.12
4
- Summary: passagemath: Finding cliques in graphs with cliquer
5
- Author-email: The Sage Developers <sage-support@googlegroups.com>
6
- Maintainer: Matthias Köppe, passagemath contributors
7
- License: GNU General Public License (GPL) v2 or later
8
- Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
- Project-URL: repo (upstream), https://github.com/sagemath/sage
10
- Project-URL: repo, https://github.com/passagemath/passagemath
11
- Project-URL: documentation, https://doc.sagemath.org
12
- Project-URL: homepage (upstream), https://www.sagemath.org
13
- Project-URL: discourse, https://passagemath.discourse.group
14
- Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
15
- Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
- Classifier: Development Status :: 6 - Mature
17
- Classifier: Intended Audience :: Education
18
- Classifier: Intended Audience :: Science/Research
19
- Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
20
- Classifier: Operating System :: POSIX
21
- Classifier: Operating System :: MacOS :: MacOS X
22
- Classifier: Programming Language :: Python :: 3 :: Only
23
- Classifier: Programming Language :: Python :: 3.9
24
- Classifier: Programming Language :: Python :: 3.10
25
- Classifier: Programming Language :: Python :: 3.11
26
- Classifier: Programming Language :: Python :: 3.12
27
- Classifier: Programming Language :: Python :: Implementation :: CPython
28
- Classifier: Topic :: Scientific/Engineering :: Mathematics
29
- Requires-Python: <3.13,>=3.9
30
- Description-Content-Type: text/x-rst
31
- Provides-Extra: test
32
- Requires-Dist: passagemath-graphs; extra == "test"
33
- Requires-Dist: passagemath-repl; extra == "test"
34
-
35
- ===============================================================================
36
- passagemath: Finding cliques in graphs with cliquer
37
- ===============================================================================
38
-
39
- About SageMath
40
- --------------
41
-
42
- "Creating a Viable Open Source Alternative to
43
- Magma, Maple, Mathematica, and MATLAB"
44
-
45
- Copyright (C) 2005-2024 The Sage Development Team
46
-
47
- https://www.sagemath.org
48
-
49
- SageMath fully supports all major Linux distributions, recent versions of
50
- macOS, and Windows (Windows Subsystem for Linux).
51
-
52
- See https://doc.sagemath.org/html/en/installation/index.html
53
- for general installation instructions.
54
-
55
-
56
- About this pip-installable distribution package
57
- -----------------------------------------------
58
-
59
- This pip-installable distribution ``passagemath-cliquer`` provides an interface
60
- to `cliquer <https://users.aalto.fi/~pat/cliquer.html>`_, an exact branch-and-bound
61
- algorithm for finding cliques in an arbitrary weighted graph by Patric Östergård.
62
-
63
-
64
- What is included
65
- ----------------
66
-
67
- * `Cython interface to cliquer <https://doc.sagemath.org/html/en/reference/graphs/sage/graphs/cliquer.html>`_
68
-
69
-
70
- Examples
71
- --------
72
-
73
- ::
74
-
75
- $ pipx run --pip-args="--prefer-binary" --spec "passagemath-cliquer[test]" ipython
76
-
77
- In [1]: from sage.all__sagemath_cliquer import *
78
-
79
- In [2]: from sage.graphs.cliquer import max_clique
80
-
81
- In [3]: C = graphs.PetersenGraph(); max_clique(C)
82
- Out[3]: [7, 9]
@@ -1,10 +0,0 @@
1
- passagemath_cliquer-10.5.12.dist-info/METADATA,sha256=2ML7z67VviS2UvNKzU7zNAxsn6sGYhn6U1H6o7_X8gM,3142
2
- passagemath_cliquer-10.5.12.dist-info/RECORD,,
3
- passagemath_cliquer-10.5.12.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
4
- passagemath_cliquer-10.5.12.dist-info/WHEEL,sha256=0z-dx3WjYQPNrkQK_QYzYKZwBXfy6u9GDaL6ineKHwA,112
5
- sage/all__sagemath_cliquer.py,sha256=5rEM-F-fdIbjUSxWEH57axum7EemBIu3HT1N43zDArQ,87
6
- sage/graphs/cliquer.pxd,sha256=NTJnYsne4hPSF65aG6CayHmkTJ3NwEJkngGTV3M7uQ0,654
7
- sage/graphs/all__sagemath_cliquer.py,sha256=Rby8pG2esTxBpJcnmT0FiU_RsBsT_mzMEXds-AjXrUI,46
8
- sage/graphs/cliquer.pyx,sha256=H2IMZxZu8xeKynaefRM6_8zzCu-w4TVAtcrwp-07Z_U,9640
9
- sage/graphs/cliquer.cpython-310-x86_64-linux-gnu.so,sha256=JQX1QuJCnjLsyhVSvVD69Y_g4aHHGwdd21k-I80Rmkw,597457
10
- passagemath_cliquer.libs/libcliquer-51fbecf1.so.1.0.21,sha256=cdPTiZMjvbnSJeD65X_PjweS6pZZxNLWZ5et8vvKrYA,140953