passagemath-environment 10.4.1__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_environment-10.4.1/MANIFEST.in +23 -0
- passagemath_environment-10.4.1/PKG-INFO +76 -0
- passagemath_environment-10.4.1/README.rst +32 -0
- passagemath_environment-10.4.1/VERSION.txt +1 -0
- passagemath_environment-10.4.1/bin/math-readline +32 -0
- passagemath_environment-10.4.1/bin/sage +1140 -0
- passagemath_environment-10.4.1/bin/sage-cachegrind +25 -0
- passagemath_environment-10.4.1/bin/sage-callgrind +16 -0
- passagemath_environment-10.4.1/bin/sage-cleaner +230 -0
- passagemath_environment-10.4.1/bin/sage-coverage +327 -0
- passagemath_environment-10.4.1/bin/sage-cython +39 -0
- passagemath_environment-10.4.1/bin/sage-env +667 -0
- passagemath_environment-10.4.1/bin/sage-env-config.in +54 -0
- passagemath_environment-10.4.1/bin/sage-eval +11 -0
- passagemath_environment-10.4.1/bin/sage-fixdoctests +691 -0
- passagemath_environment-10.4.1/bin/sage-grep +5 -0
- passagemath_environment-10.4.1/bin/sage-grepdoc +5 -0
- passagemath_environment-10.4.1/bin/sage-inline-fortran +12 -0
- passagemath_environment-10.4.1/bin/sage-ipynb2rst +50 -0
- passagemath_environment-10.4.1/bin/sage-ipython +16 -0
- passagemath_environment-10.4.1/bin/sage-list-packages +103 -0
- passagemath_environment-10.4.1/bin/sage-massif +25 -0
- passagemath_environment-10.4.1/bin/sage-notebook +267 -0
- passagemath_environment-10.4.1/bin/sage-num-threads.py +105 -0
- passagemath_environment-10.4.1/bin/sage-omega +25 -0
- passagemath_environment-10.4.1/bin/sage-preparse +302 -0
- passagemath_environment-10.4.1/bin/sage-python +2 -0
- passagemath_environment-10.4.1/bin/sage-run +27 -0
- passagemath_environment-10.4.1/bin/sage-run-cython +10 -0
- passagemath_environment-10.4.1/bin/sage-runtests +9 -0
- passagemath_environment-10.4.1/bin/sage-src-env-config.in +39 -0
- passagemath_environment-10.4.1/bin/sage-startuptime.py +163 -0
- passagemath_environment-10.4.1/bin/sage-update-version +162 -0
- passagemath_environment-10.4.1/bin/sage-valgrind +34 -0
- passagemath_environment-10.4.1/bin/sage-venv-config +42 -0
- passagemath_environment-10.4.1/bin/sage-version.sh +9 -0
- passagemath_environment-10.4.1/passagemath_environment.egg-info/PKG-INFO +76 -0
- passagemath_environment-10.4.1/passagemath_environment.egg-info/SOURCES.txt +106 -0
- passagemath_environment-10.4.1/passagemath_environment.egg-info/dependency_links.txt +1 -0
- passagemath_environment-10.4.1/passagemath_environment.egg-info/requires.txt +24 -0
- passagemath_environment-10.4.1/passagemath_environment.egg-info/top_level.txt +1 -0
- passagemath_environment-10.4.1/pyproject.toml +87 -0
- passagemath_environment-10.4.1/pyproject.toml.m4 +62 -0
- passagemath_environment-10.4.1/requirements-editable.txt.m4 +0 -0
- passagemath_environment-10.4.1/requirements.txt.m4 +0 -0
- passagemath_environment-10.4.1/sage/all__sagemath_environment.py +4 -0
- passagemath_environment-10.4.1/sage/env.py +496 -0
- passagemath_environment-10.4.1/sage/features/__init__.py +981 -0
- passagemath_environment-10.4.1/sage/features/all.py +126 -0
- passagemath_environment-10.4.1/sage/features/bliss.py +85 -0
- passagemath_environment-10.4.1/sage/features/cddlib.py +38 -0
- passagemath_environment-10.4.1/sage/features/coxeter3.py +45 -0
- passagemath_environment-10.4.1/sage/features/csdp.py +83 -0
- passagemath_environment-10.4.1/sage/features/cython.py +38 -0
- passagemath_environment-10.4.1/sage/features/databases.py +302 -0
- passagemath_environment-10.4.1/sage/features/dvipng.py +40 -0
- passagemath_environment-10.4.1/sage/features/ecm.py +42 -0
- passagemath_environment-10.4.1/sage/features/ffmpeg.py +119 -0
- passagemath_environment-10.4.1/sage/features/four_ti_2.py +55 -0
- passagemath_environment-10.4.1/sage/features/fricas.py +66 -0
- passagemath_environment-10.4.1/sage/features/gap.py +86 -0
- passagemath_environment-10.4.1/sage/features/gfan.py +38 -0
- passagemath_environment-10.4.1/sage/features/giac.py +30 -0
- passagemath_environment-10.4.1/sage/features/graph_generators.py +171 -0
- passagemath_environment-10.4.1/sage/features/graphviz.py +117 -0
- passagemath_environment-10.4.1/sage/features/igraph.py +44 -0
- passagemath_environment-10.4.1/sage/features/imagemagick.py +138 -0
- passagemath_environment-10.4.1/sage/features/interfaces.py +256 -0
- passagemath_environment-10.4.1/sage/features/internet.py +65 -0
- passagemath_environment-10.4.1/sage/features/jmol.py +44 -0
- passagemath_environment-10.4.1/sage/features/join_feature.py +146 -0
- passagemath_environment-10.4.1/sage/features/kenzo.py +77 -0
- passagemath_environment-10.4.1/sage/features/latex.py +300 -0
- passagemath_environment-10.4.1/sage/features/latte.py +85 -0
- passagemath_environment-10.4.1/sage/features/lrs.py +164 -0
- passagemath_environment-10.4.1/sage/features/mcqd.py +45 -0
- passagemath_environment-10.4.1/sage/features/meataxe.py +46 -0
- passagemath_environment-10.4.1/sage/features/mip_backends.py +114 -0
- passagemath_environment-10.4.1/sage/features/msolve.py +68 -0
- passagemath_environment-10.4.1/sage/features/nauty.py +70 -0
- passagemath_environment-10.4.1/sage/features/normaliz.py +43 -0
- passagemath_environment-10.4.1/sage/features/palp.py +65 -0
- passagemath_environment-10.4.1/sage/features/pandoc.py +42 -0
- passagemath_environment-10.4.1/sage/features/pdf2svg.py +41 -0
- passagemath_environment-10.4.1/sage/features/phitigra.py +42 -0
- passagemath_environment-10.4.1/sage/features/pkg_systems.py +195 -0
- passagemath_environment-10.4.1/sage/features/polymake.py +43 -0
- passagemath_environment-10.4.1/sage/features/poppler.py +58 -0
- passagemath_environment-10.4.1/sage/features/rubiks.py +180 -0
- passagemath_environment-10.4.1/sage/features/sagemath.py +1205 -0
- passagemath_environment-10.4.1/sage/features/sat.py +103 -0
- passagemath_environment-10.4.1/sage/features/singular.py +48 -0
- passagemath_environment-10.4.1/sage/features/sirocco.py +45 -0
- passagemath_environment-10.4.1/sage/features/sphinx.py +71 -0
- passagemath_environment-10.4.1/sage/features/standard.py +38 -0
- passagemath_environment-10.4.1/sage/features/symengine_py.py +44 -0
- passagemath_environment-10.4.1/sage/features/tdlib.py +38 -0
- passagemath_environment-10.4.1/sage/features/threejs.py +75 -0
- passagemath_environment-10.4.1/sage/features/topcom.py +67 -0
- passagemath_environment-10.4.1/sage/misc/all__sagemath_environment.py +2 -0
- passagemath_environment-10.4.1/sage/misc/package.py +570 -0
- passagemath_environment-10.4.1/sage/misc/package_dir.py +621 -0
- passagemath_environment-10.4.1/sage/misc/temporary_file.py +546 -0
- passagemath_environment-10.4.1/sage/misc/viewer.py +369 -0
- passagemath_environment-10.4.1/sage/version.py +5 -0
- passagemath_environment-10.4.1/setup.cfg +4 -0
- passagemath_environment-10.4.1/setup.py +3 -0
- passagemath_environment-10.4.1/tox.ini +118 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
prune sage
|
2
|
+
|
3
|
+
include sage/env.py
|
4
|
+
include sage/version.py
|
5
|
+
include sage/misc/package.py
|
6
|
+
include sage/misc/package_dir.py
|
7
|
+
include sage/misc/temporary_file.py
|
8
|
+
include sage/misc/viewer.py
|
9
|
+
graft sage/features
|
10
|
+
|
11
|
+
include VERSION.txt
|
12
|
+
|
13
|
+
global-exclude all__*.py
|
14
|
+
global-include all__sagemath_environment.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,76 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: passagemath-environment
|
3
|
+
Version: 10.4.1
|
4
|
+
Summary: passagemath: System and software environment
|
5
|
+
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
6
|
+
License: GNU General Public License (GPL) v2 or later
|
7
|
+
Project-URL: download, https://doc.sagemath.org/html/en/installation/index.html
|
8
|
+
Project-URL: release notes, https://github.com/sagemath/sage/releases
|
9
|
+
Project-URL: source, https://github.com/sagemath/sage
|
10
|
+
Project-URL: documentation, https://doc.sagemath.org
|
11
|
+
Project-URL: homepage, https://www.sagemath.org
|
12
|
+
Project-URL: tracker, https://github.com/sagemath/sage/issues
|
13
|
+
Classifier: Development Status :: 6 - Mature
|
14
|
+
Classifier: Intended Audience :: Education
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
16
|
+
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
17
|
+
Classifier: Operating System :: POSIX
|
18
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
24
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
25
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
26
|
+
Requires-Python: <3.13,>=3.9
|
27
|
+
Description-Content-Type: text/x-rst
|
28
|
+
Provides-Extra: conf
|
29
|
+
Requires-Dist: passagemath-conf~=10.4.1; extra == "conf"
|
30
|
+
Provides-Extra: docbuild
|
31
|
+
Requires-Dist: passagemath-docbuild~=10.4.1; extra == "docbuild"
|
32
|
+
Provides-Extra: sage
|
33
|
+
Requires-Dist: passagemath-standard~=10.4.1; extra == "sage"
|
34
|
+
Provides-Extra: cython
|
35
|
+
Requires-Dist: cython!=3.0.3,<4.0,>=3.0; extra == "cython"
|
36
|
+
Provides-Extra: pytest
|
37
|
+
Requires-Dist: pytest; extra == "pytest"
|
38
|
+
Provides-Extra: rst2ipynb
|
39
|
+
Requires-Dist: rst2ipynb>=0.2.2; extra == "rst2ipynb"
|
40
|
+
Provides-Extra: tox
|
41
|
+
Requires-Dist: tox>=4.2.7; extra == "tox"
|
42
|
+
Provides-Extra: sws2rst
|
43
|
+
Requires-Dist: passagemath-sws2rst~=10.4.1; extra == "sws2rst"
|
44
|
+
|
45
|
+
=========================================================================
|
46
|
+
passagemath: System and software environment
|
47
|
+
=========================================================================
|
48
|
+
|
49
|
+
About SageMath
|
50
|
+
--------------
|
51
|
+
|
52
|
+
"Creating a Viable Open Source Alternative to
|
53
|
+
Magma, Maple, Mathematica, and MATLAB"
|
54
|
+
|
55
|
+
Copyright (C) 2005-2024 The Sage Development Team
|
56
|
+
|
57
|
+
https://www.sagemath.org
|
58
|
+
|
59
|
+
SageMath fully supports all major Linux distributions, recent versions of
|
60
|
+
macOS, and Windows (Windows Subsystem for Linux).
|
61
|
+
|
62
|
+
See https://doc.sagemath.org/html/en/installation/index.html
|
63
|
+
for general installation instructions.
|
64
|
+
|
65
|
+
|
66
|
+
About this pip-installable distribution package
|
67
|
+
-----------------------------------------------
|
68
|
+
|
69
|
+
The pip-installable distribution package `sagemath-environment` is a
|
70
|
+
distribution of a small part of the Sage Library.
|
71
|
+
|
72
|
+
It provides a small, fundamental subset of the modules of the Sage
|
73
|
+
library ("sagelib", `sagemath-standard`), providing the connection to the
|
74
|
+
system and software environment. It also includes the `sage` script for
|
75
|
+
launching the Sage REPL and accessing various developer tools (see `sage
|
76
|
+
--help`).
|
@@ -0,0 +1,32 @@
|
|
1
|
+
=========================================================================
|
2
|
+
passagemath: System and software environment
|
3
|
+
=========================================================================
|
4
|
+
|
5
|
+
About SageMath
|
6
|
+
--------------
|
7
|
+
|
8
|
+
"Creating a Viable Open Source Alternative to
|
9
|
+
Magma, Maple, Mathematica, and MATLAB"
|
10
|
+
|
11
|
+
Copyright (C) 2005-2024 The Sage Development Team
|
12
|
+
|
13
|
+
https://www.sagemath.org
|
14
|
+
|
15
|
+
SageMath fully supports all major Linux distributions, recent versions of
|
16
|
+
macOS, and Windows (Windows Subsystem for Linux).
|
17
|
+
|
18
|
+
See https://doc.sagemath.org/html/en/installation/index.html
|
19
|
+
for general installation instructions.
|
20
|
+
|
21
|
+
|
22
|
+
About this pip-installable distribution package
|
23
|
+
-----------------------------------------------
|
24
|
+
|
25
|
+
The pip-installable distribution package `sagemath-environment` is a
|
26
|
+
distribution of a small part of the Sage Library.
|
27
|
+
|
28
|
+
It provides a small, fundamental subset of the modules of the Sage
|
29
|
+
library ("sagelib", `sagemath-standard`), providing the connection to the
|
30
|
+
system and software environment. It also includes the `sage` script for
|
31
|
+
launching the Sage REPL and accessing various developer tools (see `sage
|
32
|
+
--help`).
|
@@ -0,0 +1 @@
|
|
1
|
+
10.4.1
|
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/usr/bin/env sage-python
|
2
|
+
|
3
|
+
# Cleverly run Mathematica with the benefit of readline, which
|
4
|
+
# is something the usual commercial mathematica doesn't provide!
|
5
|
+
# See
|
6
|
+
# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/363500
|
7
|
+
|
8
|
+
import sys
|
9
|
+
import signal
|
10
|
+
import subprocess
|
11
|
+
from sage.cpython.string import str_to_bytes
|
12
|
+
|
13
|
+
def child_exited(*args):
|
14
|
+
global child
|
15
|
+
status = child.poll()
|
16
|
+
if status is not None:
|
17
|
+
sys.exit(status)
|
18
|
+
|
19
|
+
signal.signal(signal.SIGCHLD, child_exited)
|
20
|
+
|
21
|
+
child = subprocess.Popen('math', shell=True, stdin=subprocess.PIPE)
|
22
|
+
pipe = child.stdin
|
23
|
+
while True:
|
24
|
+
try:
|
25
|
+
line = input()
|
26
|
+
pipe.write(str_to_bytes(line + '\n'))
|
27
|
+
pipe.flush()
|
28
|
+
except KeyboardInterrupt:
|
29
|
+
pipe.close()
|
30
|
+
except EOFError:
|
31
|
+
break
|
32
|
+
sys.stdout.write('\n')
|