passagemath-docbuild 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 (26) hide show
  1. passagemath_docbuild-10.4.1/MANIFEST.in +1 -0
  2. passagemath_docbuild-10.4.1/PKG-INFO +46 -0
  3. passagemath_docbuild-10.4.1/README.rst +23 -0
  4. passagemath_docbuild-10.4.1/VERSION.txt +1 -0
  5. passagemath_docbuild-10.4.1/passagemath_docbuild.egg-info/PKG-INFO +46 -0
  6. passagemath_docbuild-10.4.1/passagemath_docbuild.egg-info/SOURCES.txt +24 -0
  7. passagemath_docbuild-10.4.1/passagemath_docbuild.egg-info/dependency_links.txt +1 -0
  8. passagemath_docbuild-10.4.1/passagemath_docbuild.egg-info/requires.txt +1 -0
  9. passagemath_docbuild-10.4.1/passagemath_docbuild.egg-info/top_level.txt +1 -0
  10. passagemath_docbuild-10.4.1/pyproject.toml +41 -0
  11. passagemath_docbuild-10.4.1/requirements.txt +2 -0
  12. passagemath_docbuild-10.4.1/sage_docbuild/__init__.py +0 -0
  13. passagemath_docbuild-10.4.1/sage_docbuild/__main__.py +532 -0
  14. passagemath_docbuild-10.4.1/sage_docbuild/build_options.py +32 -0
  15. passagemath_docbuild-10.4.1/sage_docbuild/builders.py +1362 -0
  16. passagemath_docbuild-10.4.1/sage_docbuild/conf.py +1104 -0
  17. passagemath_docbuild-10.4.1/sage_docbuild/ext/__init__.py +0 -0
  18. passagemath_docbuild-10.4.1/sage_docbuild/ext/inventory_builder.py +71 -0
  19. passagemath_docbuild-10.4.1/sage_docbuild/ext/multidocs.py +329 -0
  20. passagemath_docbuild-10.4.1/sage_docbuild/ext/sage_autodoc.py +3038 -0
  21. passagemath_docbuild-10.4.1/sage_docbuild/sphinxbuild.py +333 -0
  22. passagemath_docbuild-10.4.1/sage_docbuild/utils.py +379 -0
  23. passagemath_docbuild-10.4.1/sage_docbuild/vendor.py +32 -0
  24. passagemath_docbuild-10.4.1/setup.cfg +4 -0
  25. passagemath_docbuild-10.4.1/setup.py +15 -0
  26. passagemath_docbuild-10.4.1/tox.ini +30 -0
@@ -0,0 +1 @@
1
+ include VERSION.txt
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: passagemath-docbuild
3
+ Version: 10.4.1
4
+ Summary: passagemath: Build system of the Sage documentation
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ License: GNU General Public License (GPL) v2 or later
7
+ Project-URL: Homepage, https://www.sagemath.org
8
+ Classifier: Development Status :: 6 - Mature
9
+ Classifier: Intended Audience :: Education
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
12
+ Classifier: Operating System :: POSIX
13
+ Classifier: Operating System :: MacOS :: MacOS X
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
21
+ Description-Content-Type: text/x-rst
22
+ Requires-Dist: sphinx
23
+
24
+ ================================================================================
25
+ passagemath: Build system of the Sage documentation
26
+ ================================================================================
27
+
28
+ About SageMath
29
+ --------------
30
+
31
+ "Creating a Viable Open Source Alternative to
32
+ Magma, Maple, Mathematica, and MATLAB"
33
+
34
+ Copyright (C) 2005-2020 The Sage Development Team
35
+
36
+ https://www.sagemath.org
37
+
38
+ SageMath fully supports all major Linux distributions, recent versions of macOS, and Windows (using Windows Subsystem for Linux).
39
+
40
+ The traditional and recommended way to install SageMath is from source via Sage-the-distribution (https://www.sagemath.org/download-source.html). Sage-the-distribution first builds a large number of open source packages from source (unless it finds suitable versions installed in the system) and then installs the Sage Library (sagelib, implemented in Python and Cython).
41
+
42
+
43
+ About this pip-installable source distribution
44
+ ----------------------------------------------
45
+
46
+ This is the build system of the Sage documentation, based on Sphinx.
@@ -0,0 +1,23 @@
1
+ ================================================================================
2
+ passagemath: Build system of the Sage documentation
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-2020 The Sage Development Team
12
+
13
+ https://www.sagemath.org
14
+
15
+ SageMath fully supports all major Linux distributions, recent versions of macOS, and Windows (using Windows Subsystem for Linux).
16
+
17
+ The traditional and recommended way to install SageMath is from source via Sage-the-distribution (https://www.sagemath.org/download-source.html). Sage-the-distribution first builds a large number of open source packages from source (unless it finds suitable versions installed in the system) and then installs the Sage Library (sagelib, implemented in Python and Cython).
18
+
19
+
20
+ About this pip-installable source distribution
21
+ ----------------------------------------------
22
+
23
+ This is the build system of the Sage documentation, based on Sphinx.
@@ -0,0 +1 @@
1
+ 10.4.1
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: passagemath-docbuild
3
+ Version: 10.4.1
4
+ Summary: passagemath: Build system of the Sage documentation
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ License: GNU General Public License (GPL) v2 or later
7
+ Project-URL: Homepage, https://www.sagemath.org
8
+ Classifier: Development Status :: 6 - Mature
9
+ Classifier: Intended Audience :: Education
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
12
+ Classifier: Operating System :: POSIX
13
+ Classifier: Operating System :: MacOS :: MacOS X
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
21
+ Description-Content-Type: text/x-rst
22
+ Requires-Dist: sphinx
23
+
24
+ ================================================================================
25
+ passagemath: Build system of the Sage documentation
26
+ ================================================================================
27
+
28
+ About SageMath
29
+ --------------
30
+
31
+ "Creating a Viable Open Source Alternative to
32
+ Magma, Maple, Mathematica, and MATLAB"
33
+
34
+ Copyright (C) 2005-2020 The Sage Development Team
35
+
36
+ https://www.sagemath.org
37
+
38
+ SageMath fully supports all major Linux distributions, recent versions of macOS, and Windows (using Windows Subsystem for Linux).
39
+
40
+ The traditional and recommended way to install SageMath is from source via Sage-the-distribution (https://www.sagemath.org/download-source.html). Sage-the-distribution first builds a large number of open source packages from source (unless it finds suitable versions installed in the system) and then installs the Sage Library (sagelib, implemented in Python and Cython).
41
+
42
+
43
+ About this pip-installable source distribution
44
+ ----------------------------------------------
45
+
46
+ This is the build system of the Sage documentation, based on Sphinx.
@@ -0,0 +1,24 @@
1
+ MANIFEST.in
2
+ README.rst
3
+ VERSION.txt
4
+ pyproject.toml
5
+ requirements.txt
6
+ setup.py
7
+ tox.ini
8
+ passagemath_docbuild.egg-info/PKG-INFO
9
+ passagemath_docbuild.egg-info/SOURCES.txt
10
+ passagemath_docbuild.egg-info/dependency_links.txt
11
+ passagemath_docbuild.egg-info/requires.txt
12
+ passagemath_docbuild.egg-info/top_level.txt
13
+ sage_docbuild/__init__.py
14
+ sage_docbuild/__main__.py
15
+ sage_docbuild/build_options.py
16
+ sage_docbuild/builders.py
17
+ sage_docbuild/conf.py
18
+ sage_docbuild/sphinxbuild.py
19
+ sage_docbuild/utils.py
20
+ sage_docbuild/vendor.py
21
+ sage_docbuild/ext/__init__.py
22
+ sage_docbuild/ext/inventory_builder.py
23
+ sage_docbuild/ext/multidocs.py
24
+ sage_docbuild/ext/sage_autodoc.py
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.2"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "passagemath-docbuild"
7
+ description = "passagemath: Build system of the Sage documentation"
8
+ license = {text = "GNU General Public License (GPL) v2 or later"}
9
+ authors = [{name = "The Sage Developers", email = "sage-support@googlegroups.com"}]
10
+ classifiers = [
11
+ "Development Status :: 6 - Mature",
12
+ "Intended Audience :: Education",
13
+ "Intended Audience :: Science/Research",
14
+ "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
15
+ "Operating System :: POSIX",
16
+ "Operating System :: MacOS :: MacOS X",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: Implementation :: CPython",
23
+ "Topic :: Scientific/Engineering :: Mathematics",
24
+ ]
25
+ urls = {Homepage = "https://www.sagemath.org"}
26
+ dependencies = ["sphinx"]
27
+ dynamic = ["version"]
28
+
29
+ [project.readme]
30
+ file = "README.rst"
31
+ content-type = "text/x-rst"
32
+
33
+ [tool.setuptools]
34
+ packages = [
35
+ "sage_docbuild",
36
+ "sage_docbuild.ext",
37
+ ]
38
+ include-package-data = false
39
+
40
+ [tool.setuptools.dynamic]
41
+ version = {file = ["VERSION.txt"]}
@@ -0,0 +1,2 @@
1
+ #sage
2
+ sphinx
File without changes