passagemath-environment 10.4.1__py3-none-any.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.
Files changed (70) hide show
  1. passagemath_environment-10.4.1.data/scripts/sage +1140 -0
  2. passagemath_environment-10.4.1.data/scripts/sage-env +667 -0
  3. passagemath_environment-10.4.1.data/scripts/sage-num-threads.py +105 -0
  4. passagemath_environment-10.4.1.data/scripts/sage-python +2 -0
  5. passagemath_environment-10.4.1.data/scripts/sage-venv-config +42 -0
  6. passagemath_environment-10.4.1.data/scripts/sage-version.sh +9 -0
  7. passagemath_environment-10.4.1.dist-info/METADATA +76 -0
  8. passagemath_environment-10.4.1.dist-info/RECORD +70 -0
  9. passagemath_environment-10.4.1.dist-info/WHEEL +5 -0
  10. passagemath_environment-10.4.1.dist-info/top_level.txt +1 -0
  11. sage/all__sagemath_environment.py +4 -0
  12. sage/env.py +496 -0
  13. sage/features/__init__.py +981 -0
  14. sage/features/all.py +126 -0
  15. sage/features/bliss.py +85 -0
  16. sage/features/cddlib.py +38 -0
  17. sage/features/coxeter3.py +45 -0
  18. sage/features/csdp.py +83 -0
  19. sage/features/cython.py +38 -0
  20. sage/features/databases.py +302 -0
  21. sage/features/dvipng.py +40 -0
  22. sage/features/ecm.py +42 -0
  23. sage/features/ffmpeg.py +119 -0
  24. sage/features/four_ti_2.py +55 -0
  25. sage/features/fricas.py +66 -0
  26. sage/features/gap.py +86 -0
  27. sage/features/gfan.py +38 -0
  28. sage/features/giac.py +30 -0
  29. sage/features/graph_generators.py +171 -0
  30. sage/features/graphviz.py +117 -0
  31. sage/features/igraph.py +44 -0
  32. sage/features/imagemagick.py +138 -0
  33. sage/features/interfaces.py +256 -0
  34. sage/features/internet.py +65 -0
  35. sage/features/jmol.py +44 -0
  36. sage/features/join_feature.py +146 -0
  37. sage/features/kenzo.py +77 -0
  38. sage/features/latex.py +300 -0
  39. sage/features/latte.py +85 -0
  40. sage/features/lrs.py +164 -0
  41. sage/features/mcqd.py +45 -0
  42. sage/features/meataxe.py +46 -0
  43. sage/features/mip_backends.py +114 -0
  44. sage/features/msolve.py +68 -0
  45. sage/features/nauty.py +70 -0
  46. sage/features/normaliz.py +43 -0
  47. sage/features/palp.py +65 -0
  48. sage/features/pandoc.py +42 -0
  49. sage/features/pdf2svg.py +41 -0
  50. sage/features/phitigra.py +42 -0
  51. sage/features/pkg_systems.py +195 -0
  52. sage/features/polymake.py +43 -0
  53. sage/features/poppler.py +58 -0
  54. sage/features/rubiks.py +180 -0
  55. sage/features/sagemath.py +1205 -0
  56. sage/features/sat.py +103 -0
  57. sage/features/singular.py +48 -0
  58. sage/features/sirocco.py +45 -0
  59. sage/features/sphinx.py +71 -0
  60. sage/features/standard.py +38 -0
  61. sage/features/symengine_py.py +44 -0
  62. sage/features/tdlib.py +38 -0
  63. sage/features/threejs.py +75 -0
  64. sage/features/topcom.py +67 -0
  65. sage/misc/all__sagemath_environment.py +2 -0
  66. sage/misc/package.py +570 -0
  67. sage/misc/package_dir.py +621 -0
  68. sage/misc/temporary_file.py +546 -0
  69. sage/misc/viewer.py +369 -0
  70. sage/version.py +5 -0
@@ -0,0 +1,105 @@
1
+ #!python
2
+ #
3
+ # Determine the number of threads to be used by Sage.
4
+ # This is a simplified version of SAGE_ROOT/build/bin/sage-build-num-threads.py
5
+ #
6
+ # Outputs three space-separated numbers:
7
+ # 1) The number of threads to use for Sage, based on MAKE, MAKEFLAGS
8
+ # and SAGE_NUM_THREADS
9
+ # 2) The number of threads to use when parallel execution is explicitly
10
+ # asked for (e.g. sage -tp)
11
+ # 3) The number of CPU cores in the system, as determined by
12
+ # multiprocessing.cpu_count()
13
+ #
14
+ # AUTHOR: Jeroen Demeyer (2011-12-08): Github issue #12016
15
+ #
16
+ import os
17
+ import multiprocessing
18
+
19
+
20
+ def number_of_cores():
21
+ """
22
+ Try to determine the number of CPU cores in this system.
23
+ If successful return that number. Otherwise return 1.
24
+ """
25
+ # If the environment variable SAGE_NUM_CORES exists, use that value.
26
+ # This is useful for testing purposes.
27
+ try:
28
+ n = int(os.environ["SAGE_NUM_CORES"])
29
+ if n > 0:
30
+ return n
31
+ except (ValueError, KeyError):
32
+ pass
33
+
34
+ try:
35
+ n = multiprocessing.cpu_count()
36
+ if n > 0:
37
+ return n
38
+ except NotImplementedError:
39
+ pass
40
+
41
+ try: # Solaris fix
42
+ from subprocess import Popen, PIPE
43
+ p = Popen(['sysctl', '-n', 'hw.ncpu'],
44
+ stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
45
+ n = int(p.stdout.read().strip())
46
+ if n > 0:
47
+ return n
48
+ except (ValueError, OSError):
49
+ pass
50
+
51
+ return 1
52
+
53
+
54
+ def num_threads():
55
+ """
56
+ Determine the number of threads from the environment variable
57
+ :envvar:`SAGE_NUM_THREADS`. If it is 0 or not provided, use a default
58
+ of ``min(8, number_of_cores)``.
59
+
60
+ OUTPUT:
61
+
62
+ a tuple (num_threads, num_threads_parallel, num_cores)
63
+ """
64
+ num_cores = number_of_cores()
65
+
66
+ num_threads = None
67
+
68
+ # Number of threads to use when parallel execution is explicitly
69
+ # asked for
70
+ num_threads_parallel = num_threads
71
+ if num_threads_parallel is None:
72
+ num_threads_parallel = max(min(8, num_cores), 2)
73
+
74
+ try:
75
+ sage_num_threads = int(os.environ["SAGE_NUM_THREADS"])
76
+ if sage_num_threads == 0:
77
+ # If SAGE_NUM_THREADS is 0, use the default only
78
+ # if none of the above variables specified anything.
79
+ if num_threads is None:
80
+ num_threads = min(8, num_cores)
81
+ elif sage_num_threads > 0:
82
+ # SAGE_NUM_THREADS overrides everything
83
+ num_threads = sage_num_threads
84
+ num_threads_parallel = sage_num_threads
85
+ except (ValueError, KeyError):
86
+ pass
87
+
88
+ # If we still don't know, use 1 thread
89
+ if num_threads is None:
90
+ num_threads = 1
91
+
92
+ # Finally, use SAGE_NUM_THREADS_PARALLEL if set. A user isn't
93
+ # likely to set this, but it ensures that sage-env is idempotent
94
+ # if called more than once.
95
+ try:
96
+ sage_num_threads = int(os.environ["SAGE_NUM_THREADS_PARALLEL"])
97
+ if sage_num_threads > 0:
98
+ num_threads_parallel = sage_num_threads
99
+ except (ValueError, KeyError):
100
+ pass
101
+
102
+ return (num_threads, num_threads_parallel, num_cores)
103
+
104
+
105
+ print(*num_threads())
@@ -0,0 +1,2 @@
1
+ #!/bin/sh
2
+ sage -python "$@"
@@ -0,0 +1,42 @@
1
+ #!python
2
+ #
3
+ # This interpreter will be replaced by the interpreter in the venv
4
+ # during installation. The "sage" script uses this script to
5
+ # determine the correct SAGE_VENV.
6
+ #
7
+ # By using a non-existing interpreter here in src/bin/sage-venv-config,
8
+ # we make sure that it cannot be successfully executed accidentally,
9
+ # which would give the wrong SAGE_VENV.
10
+ #
11
+ VERSION = 'unknown'
12
+
13
+ try:
14
+ from sage_conf import *
15
+ except ImportError:
16
+ pass
17
+
18
+ from sys import prefix as SAGE_VENV
19
+
20
+ try:
21
+ from sage.version import version as VERSION
22
+ except ImportError:
23
+ pass
24
+
25
+ def _main():
26
+ from argparse import ArgumentParser
27
+ from sys import exit, stdout
28
+ parser = ArgumentParser()
29
+ parser.add_argument('--version', help="show version", action="version",
30
+ version='%(prog)s ' + VERSION)
31
+ parser.add_argument("VARIABLE", nargs='?', help="output the value of VARIABLE")
32
+ args = parser.parse_args()
33
+ d = globals()
34
+ if args.VARIABLE:
35
+ stdout.write('{}\n'.format(d[args.VARIABLE]))
36
+ else:
37
+ for k, v in d.items():
38
+ if not k.startswith('_'):
39
+ stdout.write('{}={}\n'.format(k, v))
40
+
41
+ if __name__ == "__main__":
42
+ _main()
@@ -0,0 +1,9 @@
1
+ # Sage version information for shell scripts.
2
+ #
3
+ # #31049: The following line is valid shell code but not valid Python code,
4
+ # which stops "setup.py develop" from rewriting it as a Python file.
5
+ :
6
+ # This file is auto-generated by the sage-update-version script, do not edit!
7
+ SAGE_VERSION='10.4.1'
8
+ SAGE_RELEASE_DATE='2024-10-15'
9
+ SAGE_VERSION_BANNER='passagemath version 10.4.1, Release Date: 2024-10-15'
@@ -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: cython
31
+ Requires-Dist: cython!=3.0.3,<4.0,>=3.0; extra == "cython"
32
+ Provides-Extra: docbuild
33
+ Requires-Dist: passagemath-docbuild~=10.4.1; extra == "docbuild"
34
+ Provides-Extra: pytest
35
+ Requires-Dist: pytest; extra == "pytest"
36
+ Provides-Extra: rst2ipynb
37
+ Requires-Dist: rst2ipynb>=0.2.2; extra == "rst2ipynb"
38
+ Provides-Extra: sage
39
+ Requires-Dist: passagemath-standard~=10.4.1; extra == "sage"
40
+ Provides-Extra: sws2rst
41
+ Requires-Dist: passagemath-sws2rst~=10.4.1; extra == "sws2rst"
42
+ Provides-Extra: tox
43
+ Requires-Dist: tox>=4.2.7; extra == "tox"
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,70 @@
1
+ passagemath_environment-10.4.1.data/scripts/sage,sha256=NYSueRGQ1q1p_7u1ZpG2dM9cgtQmRHz1b2AvFLKiS60,43257
2
+ passagemath_environment-10.4.1.data/scripts/sage-env,sha256=Q54ksJV-D6VBUFIeIqAiT8tktkzAEzi_wUpRuC23ITU,23221
3
+ passagemath_environment-10.4.1.data/scripts/sage-num-threads.py,sha256=U09CpRe4aXkHNWHoZSYoQwYRASrvoT-l-zslRiGVbWc,3128
4
+ passagemath_environment-10.4.1.data/scripts/sage-python,sha256=gXVskicH9NJtE5apMm1U-ZWDzWiz3Rm6dFBND2y60gI,28
5
+ passagemath_environment-10.4.1.data/scripts/sage-venv-config,sha256=4C_dvQRTdnp6H4Qs5TT1WvNuk0fGEnXkc0eGCdVDsNY,1197
6
+ passagemath_environment-10.4.1.data/scripts/sage-version.sh,sha256=txKqTqeVzzL5YSUEIVyueauhvLKOtyCtKX85I4be3pA,401
7
+ sage/all__sagemath_environment.py,sha256=d44XIAz0tXfPdQxa3dGJvF2WEf6stMQxLUFL0GC1Sv4,188
8
+ sage/env.py,sha256=T4AWIyZwaUz-slOUHT1ANh5xePHrRTyypWh20qnaxew,17483
9
+ sage/version.py,sha256=ebj3Fhj7xYXV0BZVBy_2b0YJguhPzfN3RDCWTMdBGjE,227
10
+ sage/features/__init__.py,sha256=2kE5iukeTqX6r8we2QNHC1Mlk15dlQgBK0acmkRJsmw,36527
11
+ sage/features/all.py,sha256=6YQEvdLvw6Ipb0u-PLsB97wWnHj28qBYoz3fGbgrFmg,4236
12
+ sage/features/bliss.py,sha256=SeLzXDEH30tgup593E42VJGGpR2gpRRI4lBt0ufCaGc,2447
13
+ sage/features/cddlib.py,sha256=zHN16TIyufH14rtexQRpCW8VQbeqRV1qRMKhDp31PJk,1330
14
+ sage/features/coxeter3.py,sha256=FwmbW2JsER7j8KGonUEDe0Mfn-5QndDY2gGLcS84gso,1475
15
+ sage/features/csdp.py,sha256=gen-XGjD-BcbOojILWv9L-T1zamb0_qFRlshk0k_j-k,2849
16
+ sage/features/cython.py,sha256=iCIV3-Btwv6vX2L15cbCyHuNx71-xcLcpwt6wCYC1Xc,1291
17
+ sage/features/databases.py,sha256=zkPIrTerbAzb9tthtQ13Bc7AexJ2LZOIV60KNPxoN4I,10632
18
+ sage/features/dvipng.py,sha256=SJCwJNUamQuPL2-bOzT3JrA8QMdJ0t20EB9n5ogXnHE,1330
19
+ sage/features/ecm.py,sha256=qMnrunufXVKz104N-eY_3fy4Sgdzd0ohs1kXOeHvXFI,1313
20
+ sage/features/ffmpeg.py,sha256=wtJL6t56Oe1D4k1ChZjZ6LP_kx3pGPOFkYCjvr28JPM,4762
21
+ sage/features/four_ti_2.py,sha256=fKuKtWscuOCF4T1v8iNAlkRxSfyfp_1M-W4l9xaG6gg,1723
22
+ sage/features/fricas.py,sha256=bhHt-RDXipIISzHvdkvMwGPOzC-qpD9eDIxSlkyW624,2333
23
+ sage/features/gap.py,sha256=L0697R7N0zsjPfcnZFIB5WTj_WY7VojyPogMOZcNPf8,3318
24
+ sage/features/gfan.py,sha256=KTLsGqregD8zzIRtfzJva40lFbPJLyLFzVXwJb5jqdE,1187
25
+ sage/features/giac.py,sha256=N4OflOOBhAy3eRDQsq-qt50sBfjKQS4TvWnQmr4oYaw,776
26
+ sage/features/graph_generators.py,sha256=LSoVbz7yMZDur68qz-s-YVz3xT72rhePpg8s9GJt92w,6175
27
+ sage/features/graphviz.py,sha256=BY9LU2-p9a3uvw8L07CVDDMiznyzJajFi1W7fb0T2pQ,3516
28
+ sage/features/igraph.py,sha256=1Vf1Fo_e4iFoihBYqKxNQL70Mhokir9xX6ADd3XGudU,1492
29
+ sage/features/imagemagick.py,sha256=GMTEXzGKkfIzVVwuX6JH-EREvHy_Z-XowN5SWd8pjgU,5236
30
+ sage/features/interfaces.py,sha256=5XPbHGOtH3khvXe2zl7kjR67YPq1Bhf7a6fv1d9s1z4,8295
31
+ sage/features/internet.py,sha256=he6OLOrLihRrkWCCKVwyBGZyXmU7XRP-ZWfUPR_A1C4,2074
32
+ sage/features/jmol.py,sha256=Gg7vTzNRJoPIQSbF25gifJvqHJDn0dm5HZTEA4TMdNA,1135
33
+ sage/features/join_feature.py,sha256=LV13-mTvGAtcpNqqOdMGzRt-IsHCFdt3KDIej3P5So4,5337
34
+ sage/features/kenzo.py,sha256=sHqSeagK7_p0RmSjQ8q-1kxIRxRsNa7jFSexAsr80Ks,2672
35
+ sage/features/latex.py,sha256=pyj57wpTfdTXFFsbIxr6OuOl0j5Sg1CrU_ZhxLIeLsI,9616
36
+ sage/features/latte.py,sha256=9NHYcDp_kLyrAtUdKQ2pOKYlo3oJy1R16p5Zg4E6_DQ,2617
37
+ sage/features/lrs.py,sha256=ru_VDo0Y6am54FQd9zqanhqoXnZXP2hudnkjD9GNNlI,5963
38
+ sage/features/mcqd.py,sha256=GfllBC9A170B0z64bE3AZ9yLfUF8aTdQDgGhRwCnYGc,1397
39
+ sage/features/meataxe.py,sha256=9uYHmPzED2RGmK5ge56zJlnHDhKVQidPEbxLThSdiaw,1458
40
+ sage/features/mip_backends.py,sha256=C6TzqKykHycwcxNQJXRjuU1Jh8DGAZOTq7aCXvUEGW4,3911
41
+ sage/features/msolve.py,sha256=kgFa-TsgZHUkIlVoJqq3cyz58gq2xWuz45ppoOFNzqw,2285
42
+ sage/features/nauty.py,sha256=RxY4q1skVUYFNYl00mNb93Z2W9wQHYPVxB46B7rDIcY,2341
43
+ sage/features/normaliz.py,sha256=cWmDeu3tMfyUOLA3IlqI6sYwRhSz0dv2tQhIClvvqcw,1384
44
+ sage/features/palp.py,sha256=kn34lTsCndDFlmpZdxsh0U1CxPpk8pF93FlUM9uP3ag,2254
45
+ sage/features/pandoc.py,sha256=znyRzmwjtdx16DPIkeU2hTxylRfntUfwgefcMYvVo8o,1358
46
+ sage/features/pdf2svg.py,sha256=N4-AHHe8EUoSBmNdnCC4JjpsqEFVw9pN6SENL2Y41a8,1412
47
+ sage/features/phitigra.py,sha256=VBWeUOd4lJTUr-M9IDJE2SkoUsHmtyD3N3fNDVQDf8c,1292
48
+ sage/features/pkg_systems.py,sha256=GOyVswRAAFqQ_oSZOZz-IA51c7a4N77tnQkfZ69xukY,6995
49
+ sage/features/polymake.py,sha256=Ix2qM0izHhBFa-IGTWjcbW9ofutbRP6FTL5p4buSgPU,1429
50
+ sage/features/poppler.py,sha256=hNdYa03BxYYiFTk70RAzJtCYxp0VEjGqrWMDpDosp5w,2231
51
+ sage/features/rubiks.py,sha256=8N54u2kShVqke1eRjLHBwqkENgc3vvfspI3h5gkPNKw,5261
52
+ sage/features/sagemath.py,sha256=ndgXELtpQRcDrAOgqKI7q7XIdjxXKiAZRx8wLZGeR8A,49904
53
+ sage/features/sat.py,sha256=XJXQPFU9PQRDwXVezC9j3iRJoDQSkWsI2b8F_fNNagk,2951
54
+ sage/features/singular.py,sha256=jyX5Pl-Zpo-I5kG0aKDFdPawMcM_S_Jv0QN7dsENNRg,1611
55
+ sage/features/sirocco.py,sha256=wWG1tWXFnUPY5XVL5eQXKSQiX4g-bwsMXekIltbVQFs,1452
56
+ sage/features/sphinx.py,sha256=sYSu-xCoOSY3uEyq-H0BVk1sErz-tX1AY24cboTbGzM,2272
57
+ sage/features/standard.py,sha256=Eh95Xj-swHqPvORXCntVmz0U1XxXqv7KpYdrUKJAdac,2036
58
+ sage/features/symengine_py.py,sha256=acVpHvjDe_Opl8iUAMbGaG13ROIjPEF9Fyn4HSn61Ek,1523
59
+ sage/features/tdlib.py,sha256=Lij2GGLbh0ja_fNYAff4ZozVi6lcD_5Dzn005IAgWBg,1260
60
+ sage/features/threejs.py,sha256=pqSVS0H2FwXmlHnGr5JtxpFQa08dssxfQwO0s7kVVtQ,2155
61
+ sage/features/topcom.py,sha256=swLvRxLgXZ3zg6-y0Pbh9ci6vGqsVEoTXJXf-UI_8nA,2211
62
+ sage/misc/all__sagemath_environment.py,sha256=LG7rw2H1bgnbQpXTph34n1ULnjE3vu4jViJEZE8M9lQ,109
63
+ sage/misc/package.py,sha256=xZF5iijW69X9DblpnLcYXQiRdjE7Uhu1MJ5eeq12T9o,19191
64
+ sage/misc/package_dir.py,sha256=E0rxLYFaXQ3Bn3Ri-IJS7GugT9g0DxXu03Xv026NcV0,25552
65
+ sage/misc/temporary_file.py,sha256=Z-0blAIrU1MAdpl3z8M_6n7-zj4Ac3NA-ULSIIKmCWU,19138
66
+ sage/misc/viewer.py,sha256=T7DRgW07qYcKQPJ0nG-N1KoVRHz3xrL7LxkVAZ7dvOo,11554
67
+ passagemath_environment-10.4.1.dist-info/METADATA,sha256=mEW4h--3OwV-98Brytc1bs8fXv1e7U1vI0W9r5465fs,3146
68
+ passagemath_environment-10.4.1.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
69
+ passagemath_environment-10.4.1.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
70
+ passagemath_environment-10.4.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (73.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,4 @@
1
+ # sage_setup: distribution = sagemath-environment
2
+ from sage.env import SAGE_ROOT, SAGE_SRC, SAGE_DOC_SRC, SAGE_LOCAL, DOT_SAGE, SAGE_ENV
3
+
4
+ from sage.misc.all__sagemath_environment import *