passagemath-gap-pkg-cddinterface 10.6.37__tar.gz
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.
- passagemath_gap_pkg_cddinterface-10.6.37/MANIFEST.in +21 -0
- passagemath_gap_pkg_cddinterface-10.6.37/PKG-INFO +94 -0
- passagemath_gap_pkg_cddinterface-10.6.37/README.rst +60 -0
- passagemath_gap_pkg_cddinterface-10.6.37/VERSION.txt +1 -0
- passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface/__init__.py +3 -0
- passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/PKG-INFO +94 -0
- passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/SOURCES.txt +15 -0
- passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/dependency_links.txt +1 -0
- passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/requires.txt +4 -0
- passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/top_level.txt +1 -0
- passagemath_gap_pkg_cddinterface-10.6.37/pyproject.toml +63 -0
- passagemath_gap_pkg_cddinterface-10.6.37/repair_wheel.py +44 -0
- passagemath_gap_pkg_cddinterface-10.6.37/sage/all__sagemath_gap_pkg_cddinterface.py +1 -0
- passagemath_gap_pkg_cddinterface-10.6.37/sage/libs/all__sagemath_gap_pkg_cddinterface.py +1 -0
- passagemath_gap_pkg_cddinterface-10.6.37/sage/libs/gap_pkg_cddinterface.pyx +1 -0
- passagemath_gap_pkg_cddinterface-10.6.37/setup.cfg +4 -0
- passagemath_gap_pkg_cddinterface-10.6.37/setup.py +13 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
graft passagemath_gap_pkg_cddinterface
|
|
2
|
+
|
|
3
|
+
include VERSION.txt
|
|
4
|
+
|
|
5
|
+
include sage/libs/gap_pkg_cddinterface.pyx
|
|
6
|
+
|
|
7
|
+
global-exclude *.c
|
|
8
|
+
global-exclude *.cpp
|
|
9
|
+
|
|
10
|
+
global-include all__sagemath_gap_pkg_cddinterface.py
|
|
11
|
+
|
|
12
|
+
include repair_wheel.py
|
|
13
|
+
|
|
14
|
+
global-exclude __pycache__
|
|
15
|
+
global-exclude *.py[co]
|
|
16
|
+
global-exclude *.bak
|
|
17
|
+
global-exclude *.so
|
|
18
|
+
global-exclude *~
|
|
19
|
+
prune .tox
|
|
20
|
+
prune build
|
|
21
|
+
prune dist
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: passagemath-gap-pkg-cddinterface
|
|
3
|
+
Version: 10.6.37
|
|
4
|
+
Summary: passagemath: Computational Group Theory with GAP: cddinterface package
|
|
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: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
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
|
+
Requires-Dist: passagemath-conf~=10.6.37.0; sys_platform != "win32"
|
|
33
|
+
Requires-Dist: passagemath-environment~=10.6.37.0
|
|
34
|
+
|
|
35
|
+
=========================================================================
|
|
36
|
+
passagemath: Computational Group Theory with GAP: cddinterface package
|
|
37
|
+
=========================================================================
|
|
38
|
+
|
|
39
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
40
|
+
source mathematical software in Python, released under the GNU General
|
|
41
|
+
Public Licence GPLv2+.
|
|
42
|
+
|
|
43
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
44
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
45
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
46
|
+
|
|
47
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
48
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
49
|
+
It was created in October 2024 with the following goals:
|
|
50
|
+
|
|
51
|
+
- providing modularized installation with pip,
|
|
52
|
+
- establishing first-class membership in the scientific Python
|
|
53
|
+
ecosystem,
|
|
54
|
+
- giving `clear attribution of upstream
|
|
55
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
56
|
+
- providing independently usable Python interfaces to upstream
|
|
57
|
+
libraries,
|
|
58
|
+
- offering `platform portability and integration testing
|
|
59
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
60
|
+
to upstream projects,
|
|
61
|
+
- inviting collaborations with upstream projects,
|
|
62
|
+
- `building a professional, respectful, inclusive
|
|
63
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
64
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
65
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
66
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
67
|
+
serverless deployment with Javascript,
|
|
68
|
+
- developing a native Windows port.
|
|
69
|
+
|
|
70
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
71
|
+
available online.
|
|
72
|
+
|
|
73
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
74
|
+
all major Linux distributions and recent versions of macOS.
|
|
75
|
+
|
|
76
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
77
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
78
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
79
|
+
or virtualization.
|
|
80
|
+
|
|
81
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
About this pip-installable distribution package
|
|
85
|
+
-----------------------------------------------
|
|
86
|
+
|
|
87
|
+
This pip-installable distribution ``passagemath-gap-pkg-cddinterface`` is a
|
|
88
|
+
distribution of the GAP package ``cddinterface`` for use with ``passagemath-gap``.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
What is included
|
|
92
|
+
----------------
|
|
93
|
+
|
|
94
|
+
- Wheels on PyPI include the GAP package ``cddinterface``
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
=========================================================================
|
|
2
|
+
passagemath: Computational Group Theory with GAP: cddinterface package
|
|
3
|
+
=========================================================================
|
|
4
|
+
|
|
5
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
6
|
+
source mathematical software in Python, released under the GNU General
|
|
7
|
+
Public Licence GPLv2+.
|
|
8
|
+
|
|
9
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
10
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
11
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
12
|
+
|
|
13
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
14
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
15
|
+
It was created in October 2024 with the following goals:
|
|
16
|
+
|
|
17
|
+
- providing modularized installation with pip,
|
|
18
|
+
- establishing first-class membership in the scientific Python
|
|
19
|
+
ecosystem,
|
|
20
|
+
- giving `clear attribution of upstream
|
|
21
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
22
|
+
- providing independently usable Python interfaces to upstream
|
|
23
|
+
libraries,
|
|
24
|
+
- offering `platform portability and integration testing
|
|
25
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
26
|
+
to upstream projects,
|
|
27
|
+
- inviting collaborations with upstream projects,
|
|
28
|
+
- `building a professional, respectful, inclusive
|
|
29
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
30
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
31
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
32
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
33
|
+
serverless deployment with Javascript,
|
|
34
|
+
- developing a native Windows port.
|
|
35
|
+
|
|
36
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
37
|
+
available online.
|
|
38
|
+
|
|
39
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
40
|
+
all major Linux distributions and recent versions of macOS.
|
|
41
|
+
|
|
42
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
43
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
44
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
45
|
+
or virtualization.
|
|
46
|
+
|
|
47
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
About this pip-installable distribution package
|
|
51
|
+
-----------------------------------------------
|
|
52
|
+
|
|
53
|
+
This pip-installable distribution ``passagemath-gap-pkg-cddinterface`` is a
|
|
54
|
+
distribution of the GAP package ``cddinterface`` for use with ``passagemath-gap``.
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
What is included
|
|
58
|
+
----------------
|
|
59
|
+
|
|
60
|
+
- Wheels on PyPI include the GAP package ``cddinterface``
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10.6.37
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: passagemath-gap-pkg-cddinterface
|
|
3
|
+
Version: 10.6.37
|
|
4
|
+
Summary: passagemath: Computational Group Theory with GAP: cddinterface package
|
|
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: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
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
|
+
Requires-Dist: passagemath-conf~=10.6.37.0; sys_platform != "win32"
|
|
33
|
+
Requires-Dist: passagemath-environment~=10.6.37.0
|
|
34
|
+
|
|
35
|
+
=========================================================================
|
|
36
|
+
passagemath: Computational Group Theory with GAP: cddinterface package
|
|
37
|
+
=========================================================================
|
|
38
|
+
|
|
39
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
40
|
+
source mathematical software in Python, released under the GNU General
|
|
41
|
+
Public Licence GPLv2+.
|
|
42
|
+
|
|
43
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
44
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
45
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
46
|
+
|
|
47
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
48
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
49
|
+
It was created in October 2024 with the following goals:
|
|
50
|
+
|
|
51
|
+
- providing modularized installation with pip,
|
|
52
|
+
- establishing first-class membership in the scientific Python
|
|
53
|
+
ecosystem,
|
|
54
|
+
- giving `clear attribution of upstream
|
|
55
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
56
|
+
- providing independently usable Python interfaces to upstream
|
|
57
|
+
libraries,
|
|
58
|
+
- offering `platform portability and integration testing
|
|
59
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
60
|
+
to upstream projects,
|
|
61
|
+
- inviting collaborations with upstream projects,
|
|
62
|
+
- `building a professional, respectful, inclusive
|
|
63
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
64
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
65
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
66
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
67
|
+
serverless deployment with Javascript,
|
|
68
|
+
- developing a native Windows port.
|
|
69
|
+
|
|
70
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
71
|
+
available online.
|
|
72
|
+
|
|
73
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
74
|
+
all major Linux distributions and recent versions of macOS.
|
|
75
|
+
|
|
76
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
77
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
78
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
79
|
+
or virtualization.
|
|
80
|
+
|
|
81
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
About this pip-installable distribution package
|
|
85
|
+
-----------------------------------------------
|
|
86
|
+
|
|
87
|
+
This pip-installable distribution ``passagemath-gap-pkg-cddinterface`` is a
|
|
88
|
+
distribution of the GAP package ``cddinterface`` for use with ``passagemath-gap``.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
What is included
|
|
92
|
+
----------------
|
|
93
|
+
|
|
94
|
+
- Wheels on PyPI include the GAP package ``cddinterface``
|
passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/SOURCES.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.rst
|
|
3
|
+
VERSION.txt
|
|
4
|
+
pyproject.toml
|
|
5
|
+
repair_wheel.py
|
|
6
|
+
setup.py
|
|
7
|
+
passagemath_gap_pkg_cddinterface/__init__.py
|
|
8
|
+
passagemath_gap_pkg_cddinterface.egg-info/PKG-INFO
|
|
9
|
+
passagemath_gap_pkg_cddinterface.egg-info/SOURCES.txt
|
|
10
|
+
passagemath_gap_pkg_cddinterface.egg-info/dependency_links.txt
|
|
11
|
+
passagemath_gap_pkg_cddinterface.egg-info/requires.txt
|
|
12
|
+
passagemath_gap_pkg_cddinterface.egg-info/top_level.txt
|
|
13
|
+
sage/all__sagemath_gap_pkg_cddinterface.py
|
|
14
|
+
sage/libs/all__sagemath_gap_pkg_cddinterface.py
|
|
15
|
+
sage/libs/gap_pkg_cddinterface.pyx
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
passagemath_gap_pkg_cddinterface-10.6.37/passagemath_gap_pkg_cddinterface.egg-info/top_level.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
# Minimum requirements for the build system to execute.
|
|
3
|
+
requires = [
|
|
4
|
+
'cython >=3.0.8, <3.2.0', 'cython >=3.0.8,<3.2.0',
|
|
5
|
+
'pkgconfig',
|
|
6
|
+
'setuptools >= 77.0.0',
|
|
7
|
+
'passagemath-setup ~= 10.6.37.0',
|
|
8
|
+
'passagemath-conf ~= 10.6.37.0 ; sys_platform != "win32"',
|
|
9
|
+
'passagemath-environment ~= 10.6.37.0',
|
|
10
|
+
]
|
|
11
|
+
build-backend = "setuptools.build_meta"
|
|
12
|
+
|
|
13
|
+
[project]
|
|
14
|
+
name = "passagemath-gap-pkg-cddinterface"
|
|
15
|
+
description = "passagemath: Computational Group Theory with GAP: cddinterface package"
|
|
16
|
+
dependencies = [
|
|
17
|
+
'passagemath-conf ~= 10.6.37.0 ; sys_platform != "win32"',
|
|
18
|
+
'passagemath-environment ~= 10.6.37.0',
|
|
19
|
+
]
|
|
20
|
+
dynamic = ["version"]
|
|
21
|
+
license = "GPL-2.0-or-later"
|
|
22
|
+
authors = [{name = "The Sage Developers", email = "sage-support@googlegroups.com"}]
|
|
23
|
+
maintainers = [
|
|
24
|
+
{name = "Matthias Köppe"},
|
|
25
|
+
{name = "passagemath contributors"},
|
|
26
|
+
]
|
|
27
|
+
classifiers = [
|
|
28
|
+
"Development Status :: 6 - Mature",
|
|
29
|
+
"Intended Audience :: Education",
|
|
30
|
+
"Intended Audience :: Science/Research",
|
|
31
|
+
"Operating System :: POSIX",
|
|
32
|
+
"Operating System :: POSIX :: Linux",
|
|
33
|
+
"Operating System :: MacOS :: MacOS X",
|
|
34
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
35
|
+
"Programming Language :: Python :: 3.10",
|
|
36
|
+
"Programming Language :: Python :: 3.11",
|
|
37
|
+
"Programming Language :: Python :: 3.12",
|
|
38
|
+
"Programming Language :: Python :: 3.13",
|
|
39
|
+
"Programming Language :: Python :: 3.14",
|
|
40
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
41
|
+
"Topic :: Scientific/Engineering :: Mathematics",
|
|
42
|
+
]
|
|
43
|
+
requires-python = ">=3.10, <3.15"
|
|
44
|
+
|
|
45
|
+
[project.urls]
|
|
46
|
+
"release notes" = "https://github.com/passagemath/passagemath/releases"
|
|
47
|
+
"repo (upstream)" = "https://github.com/sagemath/sage"
|
|
48
|
+
"repo" = "https://github.com/passagemath/passagemath"
|
|
49
|
+
documentation = "https://passagemath.org/docs/latest"
|
|
50
|
+
"homepage (upstream)" = "https://www.sagemath.org"
|
|
51
|
+
"discourse" = "https://passagemath.discourse.group"
|
|
52
|
+
"tracker (upstream)" = "https://github.com/sagemath/sage/issues"
|
|
53
|
+
"tracker" = "https://github.com/passagemath/passagemath/issues"
|
|
54
|
+
|
|
55
|
+
[project.readme]
|
|
56
|
+
file = "README.rst"
|
|
57
|
+
content-type = "text/x-rst"
|
|
58
|
+
|
|
59
|
+
[tool.setuptools]
|
|
60
|
+
include-package-data = false
|
|
61
|
+
|
|
62
|
+
[tool.setuptools.dynamic]
|
|
63
|
+
version = {file = ["VERSION.txt"]}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Add the GAP pkg transgrp data to the wheel
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
import shlex
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
|
|
9
|
+
from auditwheel.wheeltools import InWheel
|
|
10
|
+
|
|
11
|
+
from sage_conf import GAP_ROOT_PATHS
|
|
12
|
+
|
|
13
|
+
if "TMPDIR" in os.environ:
|
|
14
|
+
os.environ["TMPDIR"] = str(Path(os.environ["TMPDIR"]).resolve())
|
|
15
|
+
|
|
16
|
+
wheel = Path(sys.argv[1])
|
|
17
|
+
|
|
18
|
+
pkgdir = "pkg/cddinterface"
|
|
19
|
+
|
|
20
|
+
with InWheel(wheel, wheel):
|
|
21
|
+
found = False
|
|
22
|
+
for dir in GAP_ROOT_PATHS.split(';'):
|
|
23
|
+
print(f'Adding {dir}')
|
|
24
|
+
sys.stdout.flush()
|
|
25
|
+
parent = Path(dir).parent
|
|
26
|
+
name = Path(dir).name
|
|
27
|
+
if (Path(dir) / pkgdir).exists():
|
|
28
|
+
found = True
|
|
29
|
+
command = f'set -o pipefail; (cd {shlex.quote(str(parent))} && tar cf - --exclude "*/cddinterface/gen" --exclude "*/cddinterface/libcddinterface" --exclude "*/cddinterface/doc" --exclude "*/cddinterface/src" {name}/{pkgdir}) | tar xvf -'
|
|
30
|
+
print(f'Running {command}')
|
|
31
|
+
sys.stdout.flush()
|
|
32
|
+
if os.system(f"bash -c {shlex.quote(command)}") != 0:
|
|
33
|
+
sys.exit(1)
|
|
34
|
+
if not found:
|
|
35
|
+
print(f'Not found: {pkgdir}')
|
|
36
|
+
sys.exit(1)
|
|
37
|
+
|
|
38
|
+
# Remove the sage-conf dependency; it is not needed because our wheels ship what is needed.
|
|
39
|
+
|
|
40
|
+
command = 'sed -i.bak "/^Requires-Dist: passagemath-conf/d" *.dist-info/METADATA'
|
|
41
|
+
print(f'Running {command}')
|
|
42
|
+
sys.stdout.flush()
|
|
43
|
+
if os.system(f"bash -c {shlex.quote(command)}") != 0:
|
|
44
|
+
sys.exit(1)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-gap-pkg-cddinterface
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-gap-pkg-cddinterface
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-gap-pkg-cddinterface
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
# PEP 517 builds do not have . in sys.path
|
|
4
|
+
import os
|
|
5
|
+
import sys
|
|
6
|
+
sys.path.insert(0, os.path.dirname(__file__))
|
|
7
|
+
|
|
8
|
+
from sage_setup import sage_setup
|
|
9
|
+
|
|
10
|
+
sage_setup(['sagemath-gap-pkg-cddinterface'],
|
|
11
|
+
recurse_packages=('sage', 'passagemath_gap_pkg_cddinterface'),
|
|
12
|
+
spkgs=['gap_pkg_cddinterface'],
|
|
13
|
+
py_limited_api=True)
|