passagemath-tachyon 10.6.9__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_tachyon-10.6.9/MANIFEST.in +23 -0
- passagemath_tachyon-10.6.9/PKG-INFO +104 -0
- passagemath_tachyon-10.6.9/README.rst +67 -0
- passagemath_tachyon-10.6.9/VERSION.txt +1 -0
- passagemath_tachyon-10.6.9/passagemath_tachyon.egg-info/PKG-INFO +104 -0
- passagemath_tachyon-10.6.9/passagemath_tachyon.egg-info/SOURCES.txt +16 -0
- passagemath_tachyon-10.6.9/passagemath_tachyon.egg-info/dependency_links.txt +1 -0
- passagemath_tachyon-10.6.9/passagemath_tachyon.egg-info/requires.txt +9 -0
- passagemath_tachyon-10.6.9/passagemath_tachyon.egg-info/top_level.txt +1 -0
- passagemath_tachyon-10.6.9/pyproject.toml +104 -0
- passagemath_tachyon-10.6.9/sage/all__sagemath_tachyon.py +7 -0
- passagemath_tachyon-10.6.9/sage/ext_data/doctest/invalid/syntax_error.tachyon +91 -0
- passagemath_tachyon-10.6.9/sage/interfaces/all__sagemath_tachyon.py +1 -0
- passagemath_tachyon-10.6.9/sage/interfaces/tachyon.py +900 -0
- passagemath_tachyon-10.6.9/sage/libs/all__sagemath_tachyon.py +7 -0
- passagemath_tachyon-10.6.9/sage/libs/tachyon.pyx +1 -0
- passagemath_tachyon-10.6.9/setup.cfg +4 -0
- passagemath_tachyon-10.6.9/setup.py +17 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
prune sage
|
|
2
|
+
|
|
3
|
+
include VERSION.txt
|
|
4
|
+
|
|
5
|
+
include sage/interfaces/tachyon.p*
|
|
6
|
+
include sage/libs/tachyon.p*
|
|
7
|
+
|
|
8
|
+
graft sage/ext_data/doctest/invalid
|
|
9
|
+
|
|
10
|
+
global-exclude *.c
|
|
11
|
+
global-exclude *.cpp
|
|
12
|
+
|
|
13
|
+
global-exclude all__sagemath_*.py
|
|
14
|
+
global-include all__sagemath_tachyon.py
|
|
15
|
+
|
|
16
|
+
global-exclude __pycache__
|
|
17
|
+
global-exclude *.py[co]
|
|
18
|
+
global-exclude *.bak
|
|
19
|
+
global-exclude *.so
|
|
20
|
+
global-exclude *~
|
|
21
|
+
prune .tox
|
|
22
|
+
prune build
|
|
23
|
+
prune dist
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: passagemath-tachyon
|
|
3
|
+
Version: 10.6.9
|
|
4
|
+
Summary: passagemath: Interface to the ray tracing system tachyon
|
|
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 :: Implementation :: CPython
|
|
28
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
29
|
+
Requires-Python: <3.14,>=3.10
|
|
30
|
+
Description-Content-Type: text/x-rst
|
|
31
|
+
Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
|
|
32
|
+
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
33
|
+
Requires-Dist: passagemath-environment~=10.6.9.0
|
|
34
|
+
Requires-Dist: passagemath-objects~=10.6.9.0
|
|
35
|
+
Provides-Extra: test
|
|
36
|
+
Requires-Dist: passagemath-repl; extra == "test"
|
|
37
|
+
|
|
38
|
+
========================================================
|
|
39
|
+
passagemath: Interface to the ray tracing system tachyon
|
|
40
|
+
========================================================
|
|
41
|
+
|
|
42
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
43
|
+
source mathematical software in Python, released under the GNU General
|
|
44
|
+
Public Licence GPLv2+.
|
|
45
|
+
|
|
46
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
47
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
48
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
49
|
+
|
|
50
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
51
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
52
|
+
It was created in October 2024 with the following goals:
|
|
53
|
+
|
|
54
|
+
- providing modularized installation with pip,
|
|
55
|
+
- establishing first-class membership in the scientific Python
|
|
56
|
+
ecosystem,
|
|
57
|
+
- giving `clear attribution of upstream
|
|
58
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
59
|
+
- providing independently usable Python interfaces to upstream
|
|
60
|
+
libraries,
|
|
61
|
+
- offering `platform portability and integration testing
|
|
62
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
63
|
+
to upstream projects,
|
|
64
|
+
- inviting collaborations with upstream projects,
|
|
65
|
+
- `building a professional, respectful, inclusive
|
|
66
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
67
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
68
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
69
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
70
|
+
serverless deployment with Javascript,
|
|
71
|
+
- developing a native Windows port.
|
|
72
|
+
|
|
73
|
+
`Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
|
|
74
|
+
available online.
|
|
75
|
+
|
|
76
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
77
|
+
all major Linux distributions and recent versions of macOS.
|
|
78
|
+
|
|
79
|
+
For the Linux aarch64 (ARM) platform, some third-party packages are still missing
|
|
80
|
+
wheels; see the `instructions for building them from source <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__.
|
|
81
|
+
|
|
82
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
83
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
84
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
85
|
+
or virtualization.
|
|
86
|
+
|
|
87
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
About this pip-installable distribution package
|
|
91
|
+
-----------------------------------------------
|
|
92
|
+
|
|
93
|
+
This pip-installable source distribution ``passagemath-tachyon`` provides an interface to
|
|
94
|
+
the ray tracing system `tachyon <http://jedi.ks.uiuc.edu/~johns/raytracer/>`_.
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
Examples
|
|
98
|
+
--------
|
|
99
|
+
|
|
100
|
+
A quick way to try it out interactively::
|
|
101
|
+
|
|
102
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-tachyon[test]" ipython
|
|
103
|
+
|
|
104
|
+
In [1]: from sage.all__sagemath_tachyon import *
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
========================================================
|
|
2
|
+
passagemath: Interface to the ray tracing system tachyon
|
|
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://doc.sagemath.org/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
|
+
For the Linux aarch64 (ARM) platform, some third-party packages are still missing
|
|
43
|
+
wheels; see the `instructions for building them from source <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__.
|
|
44
|
+
|
|
45
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
46
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
47
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
48
|
+
or virtualization.
|
|
49
|
+
|
|
50
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
About this pip-installable distribution package
|
|
54
|
+
-----------------------------------------------
|
|
55
|
+
|
|
56
|
+
This pip-installable source distribution ``passagemath-tachyon`` provides an interface to
|
|
57
|
+
the ray tracing system `tachyon <http://jedi.ks.uiuc.edu/~johns/raytracer/>`_.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
Examples
|
|
61
|
+
--------
|
|
62
|
+
|
|
63
|
+
A quick way to try it out interactively::
|
|
64
|
+
|
|
65
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-tachyon[test]" ipython
|
|
66
|
+
|
|
67
|
+
In [1]: from sage.all__sagemath_tachyon import *
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10.6.9
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: passagemath-tachyon
|
|
3
|
+
Version: 10.6.9
|
|
4
|
+
Summary: passagemath: Interface to the ray tracing system tachyon
|
|
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 :: Implementation :: CPython
|
|
28
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
29
|
+
Requires-Python: <3.14,>=3.10
|
|
30
|
+
Description-Content-Type: text/x-rst
|
|
31
|
+
Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
|
|
32
|
+
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
33
|
+
Requires-Dist: passagemath-environment~=10.6.9.0
|
|
34
|
+
Requires-Dist: passagemath-objects~=10.6.9.0
|
|
35
|
+
Provides-Extra: test
|
|
36
|
+
Requires-Dist: passagemath-repl; extra == "test"
|
|
37
|
+
|
|
38
|
+
========================================================
|
|
39
|
+
passagemath: Interface to the ray tracing system tachyon
|
|
40
|
+
========================================================
|
|
41
|
+
|
|
42
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
43
|
+
source mathematical software in Python, released under the GNU General
|
|
44
|
+
Public Licence GPLv2+.
|
|
45
|
+
|
|
46
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
47
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
48
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
49
|
+
|
|
50
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
51
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
52
|
+
It was created in October 2024 with the following goals:
|
|
53
|
+
|
|
54
|
+
- providing modularized installation with pip,
|
|
55
|
+
- establishing first-class membership in the scientific Python
|
|
56
|
+
ecosystem,
|
|
57
|
+
- giving `clear attribution of upstream
|
|
58
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
59
|
+
- providing independently usable Python interfaces to upstream
|
|
60
|
+
libraries,
|
|
61
|
+
- offering `platform portability and integration testing
|
|
62
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
63
|
+
to upstream projects,
|
|
64
|
+
- inviting collaborations with upstream projects,
|
|
65
|
+
- `building a professional, respectful, inclusive
|
|
66
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
67
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
68
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
69
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
70
|
+
serverless deployment with Javascript,
|
|
71
|
+
- developing a native Windows port.
|
|
72
|
+
|
|
73
|
+
`Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
|
|
74
|
+
available online.
|
|
75
|
+
|
|
76
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
77
|
+
all major Linux distributions and recent versions of macOS.
|
|
78
|
+
|
|
79
|
+
For the Linux aarch64 (ARM) platform, some third-party packages are still missing
|
|
80
|
+
wheels; see the `instructions for building them from source <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__.
|
|
81
|
+
|
|
82
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
83
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
84
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
85
|
+
or virtualization.
|
|
86
|
+
|
|
87
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
About this pip-installable distribution package
|
|
91
|
+
-----------------------------------------------
|
|
92
|
+
|
|
93
|
+
This pip-installable source distribution ``passagemath-tachyon`` provides an interface to
|
|
94
|
+
the ray tracing system `tachyon <http://jedi.ks.uiuc.edu/~johns/raytracer/>`_.
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
Examples
|
|
98
|
+
--------
|
|
99
|
+
|
|
100
|
+
A quick way to try it out interactively::
|
|
101
|
+
|
|
102
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-tachyon[test]" ipython
|
|
103
|
+
|
|
104
|
+
In [1]: from sage.all__sagemath_tachyon import *
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.rst
|
|
3
|
+
VERSION.txt
|
|
4
|
+
pyproject.toml
|
|
5
|
+
setup.py
|
|
6
|
+
passagemath_tachyon.egg-info/PKG-INFO
|
|
7
|
+
passagemath_tachyon.egg-info/SOURCES.txt
|
|
8
|
+
passagemath_tachyon.egg-info/dependency_links.txt
|
|
9
|
+
passagemath_tachyon.egg-info/requires.txt
|
|
10
|
+
passagemath_tachyon.egg-info/top_level.txt
|
|
11
|
+
sage/all__sagemath_tachyon.py
|
|
12
|
+
sage/ext_data/doctest/invalid/syntax_error.tachyon
|
|
13
|
+
sage/interfaces/all__sagemath_tachyon.py
|
|
14
|
+
sage/interfaces/tachyon.py
|
|
15
|
+
sage/libs/all__sagemath_tachyon.py
|
|
16
|
+
sage/libs/tachyon.pyx
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
# Minimum requirements for the build system to execute.
|
|
3
|
+
requires = [
|
|
4
|
+
'setuptools >= 77.0.0',
|
|
5
|
+
'pkgconfig',
|
|
6
|
+
'passagemath-conf ~= 10.6.9.0 ; sys_platform != "win32"',
|
|
7
|
+
'passagemath-setup ~= 10.6.9.0',
|
|
8
|
+
'passagemath-environment ~= 10.6.9.0',
|
|
9
|
+
'passagemath-objects ~= 10.6.9.0',
|
|
10
|
+
'cython >=3.0, != 3.0.3, <4.0', 'cython >=3.0.8,<3.1.0',
|
|
11
|
+
'cysignals <1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
|
|
12
|
+
]
|
|
13
|
+
build-backend = "setuptools.build_meta"
|
|
14
|
+
|
|
15
|
+
[project]
|
|
16
|
+
name = "passagemath-tachyon"
|
|
17
|
+
description = "passagemath: Interface to the ray tracing system tachyon"
|
|
18
|
+
dependencies = [
|
|
19
|
+
'cysignals <1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
|
|
20
|
+
'passagemath-environment ~= 10.6.9.0',
|
|
21
|
+
'passagemath-objects ~= 10.6.9.0',
|
|
22
|
+
]
|
|
23
|
+
dynamic = ["version"]
|
|
24
|
+
license = "GPL-2.0-or-later"
|
|
25
|
+
authors = [{name = "The Sage Developers", email = "sage-support@googlegroups.com"}]
|
|
26
|
+
maintainers = [
|
|
27
|
+
{name = "Matthias Köppe"},
|
|
28
|
+
{name = "passagemath contributors"},
|
|
29
|
+
]
|
|
30
|
+
classifiers = [
|
|
31
|
+
"Development Status :: 6 - Mature",
|
|
32
|
+
"Intended Audience :: Education",
|
|
33
|
+
"Intended Audience :: Science/Research",
|
|
34
|
+
"Operating System :: POSIX",
|
|
35
|
+
"Operating System :: POSIX :: Linux",
|
|
36
|
+
"Operating System :: MacOS :: MacOS X",
|
|
37
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
38
|
+
"Programming Language :: Python :: 3.10",
|
|
39
|
+
"Programming Language :: Python :: 3.11",
|
|
40
|
+
"Programming Language :: Python :: 3.12",
|
|
41
|
+
"Programming Language :: Python :: 3.13",
|
|
42
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
43
|
+
"Topic :: Scientific/Engineering :: Mathematics",
|
|
44
|
+
]
|
|
45
|
+
requires-python = ">=3.10, <3.14"
|
|
46
|
+
|
|
47
|
+
[project.urls]
|
|
48
|
+
"release notes" = "https://github.com/passagemath/passagemath/releases"
|
|
49
|
+
"repo (upstream)" = "https://github.com/sagemath/sage"
|
|
50
|
+
"repo" = "https://github.com/passagemath/passagemath"
|
|
51
|
+
documentation = "https://passagemath.org/docs/latest"
|
|
52
|
+
"homepage (upstream)" = "https://www.sagemath.org"
|
|
53
|
+
"discourse" = "https://passagemath.discourse.group"
|
|
54
|
+
"tracker (upstream)" = "https://github.com/sagemath/sage/issues"
|
|
55
|
+
"tracker" = "https://github.com/passagemath/passagemath/issues"
|
|
56
|
+
|
|
57
|
+
[project.readme]
|
|
58
|
+
file = "README.rst"
|
|
59
|
+
content-type = "text/x-rst"
|
|
60
|
+
|
|
61
|
+
[project.optional-dependencies]
|
|
62
|
+
test = [
|
|
63
|
+
"passagemath-repl",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[tool.cibuildwheel.linux]
|
|
67
|
+
# Unfortunately CIBW_REPAIR_WHEEL_COMMAND does not expand {project} (and other placeholders),
|
|
68
|
+
# so there is no clean way to refer to the repair_wheel.py script
|
|
69
|
+
# https://github.com/pypa/cibuildwheel/issues/1931
|
|
70
|
+
repair-wheel-command = [
|
|
71
|
+
'python3 -m pip install passagemath-conf auditwheel',
|
|
72
|
+
'python3 pkgs/sagemath-tachyon/repair_wheel.py {wheel}',
|
|
73
|
+
'auditwheel repair -w {dest_dir} {wheel}',
|
|
74
|
+
]
|
|
75
|
+
[tool.cibuildwheel.macos]
|
|
76
|
+
repair-wheel-command = [
|
|
77
|
+
'python3 -m pip install passagemath-conf auditwheel',
|
|
78
|
+
'python3 pkgs/sagemath-tachyon/repair_wheel.py {wheel}',
|
|
79
|
+
'delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}',
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[tool.setuptools]
|
|
83
|
+
include-package-data = false
|
|
84
|
+
|
|
85
|
+
[tool.setuptools.dynamic]
|
|
86
|
+
version = {file = ["VERSION.txt"]}
|
|
87
|
+
|
|
88
|
+
[external]
|
|
89
|
+
# External dependencies in the format proposed by https://peps.python.org/pep-0725
|
|
90
|
+
build-requires = [
|
|
91
|
+
"virtual:compiler/c",
|
|
92
|
+
"virtual:compiler/cpp",
|
|
93
|
+
"pkg:generic/pkg-config",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
host-requires = [
|
|
97
|
+
"pkg:generic/tachyon",
|
|
98
|
+
"pkg:generic/gmp",
|
|
99
|
+
"pkg:generic/mpc",
|
|
100
|
+
"pkg:generic/mpfr",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
dependencies = [
|
|
104
|
+
]
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# This is NOT a valid tachyon input file
|
|
2
|
+
#
|
|
3
|
+
# We use it to test that tachyon errors are diagnosed in the Sage
|
|
4
|
+
# interface to tachyon.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
begin_scene
|
|
8
|
+
resolution 400 400
|
|
9
|
+
|
|
10
|
+
camera
|
|
11
|
+
zoom 1.0
|
|
12
|
+
aspectratio 1.0
|
|
13
|
+
antialiasing 8
|
|
14
|
+
raydepth 8
|
|
15
|
+
center 2.3 2.4 2.0
|
|
16
|
+
viewdir -2.3 -2.4 -2.0
|
|
17
|
+
updir 0.0 0.0 1.0
|
|
18
|
+
end_camera
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
light center 4.0 3.0 2.0
|
|
22
|
+
rad 0.2
|
|
23
|
+
color 1.0 1.0 1.0
|
|
24
|
+
|
|
25
|
+
plane
|
|
26
|
+
center -2000 -1000 -500
|
|
27
|
+
normal 2.3 2.4 2.0
|
|
28
|
+
TEXTURE
|
|
29
|
+
AMBIENT 1.0 DIFFUSE 1.0 SPECULAR 1.0 OPACITY 1.0
|
|
30
|
+
COLOR 1.0 1.0 1.0
|
|
31
|
+
TEXFUNC 0
|
|
32
|
+
|
|
33
|
+
Texdef texture239
|
|
34
|
+
Ambient 0.333333333333 Diffuse 0.666666666667 Specular 0.0 Opacity 1
|
|
35
|
+
Color 0.0 0.0 0.0
|
|
36
|
+
TexFunc 0
|
|
37
|
+
Texdef texture240
|
|
38
|
+
Ambient 0.333333333333 Diffuse 0.666666666667 Specular 0.0 Opacity 1/2
|
|
39
|
+
Color 0.0 0.0 0.0
|
|
40
|
+
TexFunc 0
|
|
41
|
+
|
|
42
|
+
TRI V0 0.5 -0.5 0.5 V1 -0.5 -0.5 0.5 V2 -0.5 0.5 0.5
|
|
43
|
+
texture239
|
|
44
|
+
TRI V0 0.5 -0.5 0.5 V1 -0.5 0.5 0.5 V2 0.5 0.5 0.5
|
|
45
|
+
texture239
|
|
46
|
+
TRI V0 0.5 -0.5 0.5 V1 0.5 -0.5 -0.5 V2 -0.5 -0.5 -0.5
|
|
47
|
+
texture239
|
|
48
|
+
TRI V0 0.5 -0.5 0.5 V1 -0.5 -0.5 -0.5 V2 -0.5 -0.5 0.5
|
|
49
|
+
texture239
|
|
50
|
+
TRI V0 0.5 -0.5 0.5 V1 0.5 0.5 0.5 V2 0.5 0.5 -0.5
|
|
51
|
+
texture239
|
|
52
|
+
TRI V0 0.5 -0.5 0.5 V1 0.5 0.5 -0.5 V2 0.5 -0.5 -0.5
|
|
53
|
+
texture239
|
|
54
|
+
TRI V0 -0.5 -0.5 -0.5 V1 0.5 -0.5 -0.5 V2 0.5 0.5 -0.5
|
|
55
|
+
texture239
|
|
56
|
+
TRI V0 -0.5 -0.5 -0.5 V1 0.5 0.5 -0.5 V2 -0.5 0.5 -0.5
|
|
57
|
+
texture239
|
|
58
|
+
TRI V0 0.5 0.5 -0.5 V1 0.5 0.5 0.5 V2 -0.5 0.5 0.5
|
|
59
|
+
texture239
|
|
60
|
+
TRI V0 0.5 0.5 -0.5 V1 -0.5 0.5 0.5 V2 -0.5 0.5 -0.5
|
|
61
|
+
texture239
|
|
62
|
+
TRI V0 -0.5 0.5 0.5 V1 -0.5 -0.5 0.5 V2 -0.5 -0.5 -0.5
|
|
63
|
+
texture239
|
|
64
|
+
TRI V0 -0.5 0.5 0.5 V1 -0.5 -0.5 -0.5 V2 -0.5 0.5 -0.5
|
|
65
|
+
texture239
|
|
66
|
+
TRI V0 3 -0.5 0.5 V1 2 -0.5 0.5 V2 2 0.5 0.5
|
|
67
|
+
texture240
|
|
68
|
+
TRI V0 3 -0.5 0.5 V1 2 0.5 0.5 V2 3 0.5 0.5
|
|
69
|
+
texture240
|
|
70
|
+
TRI V0 3 -0.5 0.5 V1 3 -0.5 -0.5 V2 2 -0.5 -0.5
|
|
71
|
+
texture240
|
|
72
|
+
TRI V0 3 -0.5 0.5 V1 2 -0.5 -0.5 V2 2 -0.5 0.5
|
|
73
|
+
texture240
|
|
74
|
+
TRI V0 3 -0.5 0.5 V1 3 0.5 0.5 V2 3 0.5 -0.5
|
|
75
|
+
texture240
|
|
76
|
+
TRI V0 3 -0.5 0.5 V1 3 0.5 -0.5 V2 3 -0.5 -0.5
|
|
77
|
+
texture240
|
|
78
|
+
TRI V0 2 -0.5 -0.5 V1 3 -0.5 -0.5 V2 3 0.5 -0.5
|
|
79
|
+
texture240
|
|
80
|
+
TRI V0 2 -0.5 -0.5 V1 3 0.5 -0.5 V2 2 0.5 -0.5
|
|
81
|
+
texture240
|
|
82
|
+
TRI V0 3 0.5 -0.5 V1 3 0.5 0.5 V2 2 0.5 0.5
|
|
83
|
+
texture240
|
|
84
|
+
TRI V0 3 0.5 -0.5 V1 2 0.5 0.5 V2 2 0.5 -0.5
|
|
85
|
+
texture240
|
|
86
|
+
TRI V0 2 0.5 0.5 V1 2 -0.5 0.5 V2 2 -0.5 -0.5
|
|
87
|
+
texture240
|
|
88
|
+
TRI V0 2 0.5 0.5 V1 2 -0.5 -0.5 V2 2 0.5 -0.5
|
|
89
|
+
texture240
|
|
90
|
+
|
|
91
|
+
end_scene
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-tachyon
|