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.
Files changed (108) hide show
  1. passagemath_environment-10.4.1/MANIFEST.in +23 -0
  2. passagemath_environment-10.4.1/PKG-INFO +76 -0
  3. passagemath_environment-10.4.1/README.rst +32 -0
  4. passagemath_environment-10.4.1/VERSION.txt +1 -0
  5. passagemath_environment-10.4.1/bin/math-readline +32 -0
  6. passagemath_environment-10.4.1/bin/sage +1140 -0
  7. passagemath_environment-10.4.1/bin/sage-cachegrind +25 -0
  8. passagemath_environment-10.4.1/bin/sage-callgrind +16 -0
  9. passagemath_environment-10.4.1/bin/sage-cleaner +230 -0
  10. passagemath_environment-10.4.1/bin/sage-coverage +327 -0
  11. passagemath_environment-10.4.1/bin/sage-cython +39 -0
  12. passagemath_environment-10.4.1/bin/sage-env +667 -0
  13. passagemath_environment-10.4.1/bin/sage-env-config.in +54 -0
  14. passagemath_environment-10.4.1/bin/sage-eval +11 -0
  15. passagemath_environment-10.4.1/bin/sage-fixdoctests +691 -0
  16. passagemath_environment-10.4.1/bin/sage-grep +5 -0
  17. passagemath_environment-10.4.1/bin/sage-grepdoc +5 -0
  18. passagemath_environment-10.4.1/bin/sage-inline-fortran +12 -0
  19. passagemath_environment-10.4.1/bin/sage-ipynb2rst +50 -0
  20. passagemath_environment-10.4.1/bin/sage-ipython +16 -0
  21. passagemath_environment-10.4.1/bin/sage-list-packages +103 -0
  22. passagemath_environment-10.4.1/bin/sage-massif +25 -0
  23. passagemath_environment-10.4.1/bin/sage-notebook +267 -0
  24. passagemath_environment-10.4.1/bin/sage-num-threads.py +105 -0
  25. passagemath_environment-10.4.1/bin/sage-omega +25 -0
  26. passagemath_environment-10.4.1/bin/sage-preparse +302 -0
  27. passagemath_environment-10.4.1/bin/sage-python +2 -0
  28. passagemath_environment-10.4.1/bin/sage-run +27 -0
  29. passagemath_environment-10.4.1/bin/sage-run-cython +10 -0
  30. passagemath_environment-10.4.1/bin/sage-runtests +9 -0
  31. passagemath_environment-10.4.1/bin/sage-src-env-config.in +39 -0
  32. passagemath_environment-10.4.1/bin/sage-startuptime.py +163 -0
  33. passagemath_environment-10.4.1/bin/sage-update-version +162 -0
  34. passagemath_environment-10.4.1/bin/sage-valgrind +34 -0
  35. passagemath_environment-10.4.1/bin/sage-venv-config +42 -0
  36. passagemath_environment-10.4.1/bin/sage-version.sh +9 -0
  37. passagemath_environment-10.4.1/passagemath_environment.egg-info/PKG-INFO +76 -0
  38. passagemath_environment-10.4.1/passagemath_environment.egg-info/SOURCES.txt +106 -0
  39. passagemath_environment-10.4.1/passagemath_environment.egg-info/dependency_links.txt +1 -0
  40. passagemath_environment-10.4.1/passagemath_environment.egg-info/requires.txt +24 -0
  41. passagemath_environment-10.4.1/passagemath_environment.egg-info/top_level.txt +1 -0
  42. passagemath_environment-10.4.1/pyproject.toml +87 -0
  43. passagemath_environment-10.4.1/pyproject.toml.m4 +62 -0
  44. passagemath_environment-10.4.1/requirements-editable.txt.m4 +0 -0
  45. passagemath_environment-10.4.1/requirements.txt.m4 +0 -0
  46. passagemath_environment-10.4.1/sage/all__sagemath_environment.py +4 -0
  47. passagemath_environment-10.4.1/sage/env.py +496 -0
  48. passagemath_environment-10.4.1/sage/features/__init__.py +981 -0
  49. passagemath_environment-10.4.1/sage/features/all.py +126 -0
  50. passagemath_environment-10.4.1/sage/features/bliss.py +85 -0
  51. passagemath_environment-10.4.1/sage/features/cddlib.py +38 -0
  52. passagemath_environment-10.4.1/sage/features/coxeter3.py +45 -0
  53. passagemath_environment-10.4.1/sage/features/csdp.py +83 -0
  54. passagemath_environment-10.4.1/sage/features/cython.py +38 -0
  55. passagemath_environment-10.4.1/sage/features/databases.py +302 -0
  56. passagemath_environment-10.4.1/sage/features/dvipng.py +40 -0
  57. passagemath_environment-10.4.1/sage/features/ecm.py +42 -0
  58. passagemath_environment-10.4.1/sage/features/ffmpeg.py +119 -0
  59. passagemath_environment-10.4.1/sage/features/four_ti_2.py +55 -0
  60. passagemath_environment-10.4.1/sage/features/fricas.py +66 -0
  61. passagemath_environment-10.4.1/sage/features/gap.py +86 -0
  62. passagemath_environment-10.4.1/sage/features/gfan.py +38 -0
  63. passagemath_environment-10.4.1/sage/features/giac.py +30 -0
  64. passagemath_environment-10.4.1/sage/features/graph_generators.py +171 -0
  65. passagemath_environment-10.4.1/sage/features/graphviz.py +117 -0
  66. passagemath_environment-10.4.1/sage/features/igraph.py +44 -0
  67. passagemath_environment-10.4.1/sage/features/imagemagick.py +138 -0
  68. passagemath_environment-10.4.1/sage/features/interfaces.py +256 -0
  69. passagemath_environment-10.4.1/sage/features/internet.py +65 -0
  70. passagemath_environment-10.4.1/sage/features/jmol.py +44 -0
  71. passagemath_environment-10.4.1/sage/features/join_feature.py +146 -0
  72. passagemath_environment-10.4.1/sage/features/kenzo.py +77 -0
  73. passagemath_environment-10.4.1/sage/features/latex.py +300 -0
  74. passagemath_environment-10.4.1/sage/features/latte.py +85 -0
  75. passagemath_environment-10.4.1/sage/features/lrs.py +164 -0
  76. passagemath_environment-10.4.1/sage/features/mcqd.py +45 -0
  77. passagemath_environment-10.4.1/sage/features/meataxe.py +46 -0
  78. passagemath_environment-10.4.1/sage/features/mip_backends.py +114 -0
  79. passagemath_environment-10.4.1/sage/features/msolve.py +68 -0
  80. passagemath_environment-10.4.1/sage/features/nauty.py +70 -0
  81. passagemath_environment-10.4.1/sage/features/normaliz.py +43 -0
  82. passagemath_environment-10.4.1/sage/features/palp.py +65 -0
  83. passagemath_environment-10.4.1/sage/features/pandoc.py +42 -0
  84. passagemath_environment-10.4.1/sage/features/pdf2svg.py +41 -0
  85. passagemath_environment-10.4.1/sage/features/phitigra.py +42 -0
  86. passagemath_environment-10.4.1/sage/features/pkg_systems.py +195 -0
  87. passagemath_environment-10.4.1/sage/features/polymake.py +43 -0
  88. passagemath_environment-10.4.1/sage/features/poppler.py +58 -0
  89. passagemath_environment-10.4.1/sage/features/rubiks.py +180 -0
  90. passagemath_environment-10.4.1/sage/features/sagemath.py +1205 -0
  91. passagemath_environment-10.4.1/sage/features/sat.py +103 -0
  92. passagemath_environment-10.4.1/sage/features/singular.py +48 -0
  93. passagemath_environment-10.4.1/sage/features/sirocco.py +45 -0
  94. passagemath_environment-10.4.1/sage/features/sphinx.py +71 -0
  95. passagemath_environment-10.4.1/sage/features/standard.py +38 -0
  96. passagemath_environment-10.4.1/sage/features/symengine_py.py +44 -0
  97. passagemath_environment-10.4.1/sage/features/tdlib.py +38 -0
  98. passagemath_environment-10.4.1/sage/features/threejs.py +75 -0
  99. passagemath_environment-10.4.1/sage/features/topcom.py +67 -0
  100. passagemath_environment-10.4.1/sage/misc/all__sagemath_environment.py +2 -0
  101. passagemath_environment-10.4.1/sage/misc/package.py +570 -0
  102. passagemath_environment-10.4.1/sage/misc/package_dir.py +621 -0
  103. passagemath_environment-10.4.1/sage/misc/temporary_file.py +546 -0
  104. passagemath_environment-10.4.1/sage/misc/viewer.py +369 -0
  105. passagemath_environment-10.4.1/sage/version.py +5 -0
  106. passagemath_environment-10.4.1/setup.cfg +4 -0
  107. passagemath_environment-10.4.1/setup.py +3 -0
  108. 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')