sphinxnotes-data 1.0a17__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 (46) hide show
  1. sphinxnotes_data-1.0a17/.cruft.json +27 -0
  2. sphinxnotes_data-1.0a17/.github/workflows/lint.yml +9 -0
  3. sphinxnotes_data-1.0a17/.github/workflows/pages.yml +25 -0
  4. sphinxnotes_data-1.0a17/.github/workflows/pypi.yml +22 -0
  5. sphinxnotes_data-1.0a17/.github/workflows/release.yml +18 -0
  6. sphinxnotes_data-1.0a17/.github/workflows/tag.yml +28 -0
  7. sphinxnotes_data-1.0a17/.github/workflows/test.yml +16 -0
  8. sphinxnotes_data-1.0a17/.gitignore +137 -0
  9. sphinxnotes_data-1.0a17/.pre-commit-config.yaml +7 -0
  10. sphinxnotes_data-1.0a17/LICENSE +29 -0
  11. sphinxnotes_data-1.0a17/MANIFEST.in +11 -0
  12. sphinxnotes_data-1.0a17/Makefile +92 -0
  13. sphinxnotes_data-1.0a17/PKG-INFO +78 -0
  14. sphinxnotes_data-1.0a17/README.rst +32 -0
  15. sphinxnotes_data-1.0a17/docs/Makefile +23 -0
  16. sphinxnotes_data-1.0a17/docs/_images/.gitkeep +0 -0
  17. sphinxnotes_data-1.0a17/docs/_static/.gitkeep +0 -0
  18. sphinxnotes_data-1.0a17/docs/_static/sphinx-notes.png +0 -0
  19. sphinxnotes_data-1.0a17/docs/changelog.rst +20 -0
  20. sphinxnotes_data-1.0a17/docs/conf.py +122 -0
  21. sphinxnotes_data-1.0a17/docs/index.rst +114 -0
  22. sphinxnotes_data-1.0a17/docs/make.bat +37 -0
  23. sphinxnotes_data-1.0a17/pyproject.toml +100 -0
  24. sphinxnotes_data-1.0a17/ruff.toml +14 -0
  25. sphinxnotes_data-1.0a17/setup.cfg +4 -0
  26. sphinxnotes_data-1.0a17/src/sphinxnotes/data/__init__.py +97 -0
  27. sphinxnotes_data-1.0a17/src/sphinxnotes/data/adhoc.py +94 -0
  28. sphinxnotes_data-1.0a17/src/sphinxnotes/data/config.py +30 -0
  29. sphinxnotes_data-1.0a17/src/sphinxnotes/data/data.py +534 -0
  30. sphinxnotes_data-1.0a17/src/sphinxnotes/data/extractx.py +87 -0
  31. sphinxnotes_data-1.0a17/src/sphinxnotes/data/meta.py +35 -0
  32. sphinxnotes_data-1.0a17/src/sphinxnotes/data/preset.py +55 -0
  33. sphinxnotes_data-1.0a17/src/sphinxnotes/data/py.typed +0 -0
  34. sphinxnotes_data-1.0a17/src/sphinxnotes/data/render.py +471 -0
  35. sphinxnotes_data-1.0a17/src/sphinxnotes/data/renderer.py +121 -0
  36. sphinxnotes_data-1.0a17/src/sphinxnotes/data/template.py +175 -0
  37. sphinxnotes_data-1.0a17/src/sphinxnotes/data/utils/__init__.py +150 -0
  38. sphinxnotes_data-1.0a17/src/sphinxnotes/data/utils/ctxproxy.py +144 -0
  39. sphinxnotes_data-1.0a17/src/sphinxnotes/data/utils/freestyle.py +93 -0
  40. sphinxnotes_data-1.0a17/src/sphinxnotes_data.egg-info/PKG-INFO +78 -0
  41. sphinxnotes_data-1.0a17/src/sphinxnotes_data.egg-info/SOURCES.txt +44 -0
  42. sphinxnotes_data-1.0a17/src/sphinxnotes_data.egg-info/dependency_links.txt +1 -0
  43. sphinxnotes_data-1.0a17/src/sphinxnotes_data.egg-info/requires.txt +22 -0
  44. sphinxnotes_data-1.0a17/src/sphinxnotes_data.egg-info/top_level.txt +1 -0
  45. sphinxnotes_data-1.0a17/tests/__init__.py +0 -0
  46. sphinxnotes_data-1.0a17/tests/test_data.py +126 -0
@@ -0,0 +1,27 @@
1
+ {
2
+ "template": "https://github.com/sphinx-notes/cookiecutter",
3
+ "commit": "251643b4d04376494409369c91f29ca047687a5d",
4
+ "checkout": null,
5
+ "context": {
6
+ "cookiecutter": {
7
+ "namespace": "sphinxnotes",
8
+ "name": "data",
9
+ "full_name": "sphinxnotes-data",
10
+ "author": "Shengyu Zhang",
11
+ "description": "Use reStructuredText/markdown to define, constrain, render, and analyze data in Sphinx documentations",
12
+ "version": "1.0a0",
13
+ "github_owner": "sphinx-notes",
14
+ "github_repo": "data",
15
+ "pypi_name": "sphinxnotes-data",
16
+ "pypi_owner": "SilverRainZ",
17
+ "is_python_project": true,
18
+ "python_version": "3.12",
19
+ "is_sphinx_extension": true,
20
+ "sphinx_version": "7.0",
21
+ "development_status": "3 - Alpha",
22
+ "_template": "https://github.com/sphinx-notes/cookiecutter",
23
+ "_commit": "251643b4d04376494409369c91f29ca047687a5d"
24
+ }
25
+ },
26
+ "directory": null
27
+ }
@@ -0,0 +1,9 @@
1
+ name: Ruff
2
+ on: [ push, pull_request ]
3
+
4
+ jobs:
5
+ ruff:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - uses: chartboost/ruff-action@v1
@@ -0,0 +1,25 @@
1
+ name: Deploy Sphinx documentation to Pages
2
+
3
+ # Runs on pushes targeting the default branch
4
+ on:
5
+ push:
6
+ branches: [master]
7
+
8
+ # Cancel any in-progress job or run
9
+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
10
+ concurrency:
11
+ group: ${{ github.ref }}
12
+ cancel-in-progress: true
13
+
14
+ jobs:
15
+ pages:
16
+ runs-on: ubuntu-latest
17
+ environment:
18
+ name: github-pages
19
+ url: ${{ steps.deployment.outputs.page_url }}
20
+ permissions:
21
+ pages: write
22
+ id-token: write
23
+ steps:
24
+ - id: deployment
25
+ uses: sphinx-notes/pages@v3
@@ -0,0 +1,22 @@
1
+ name: Publish package distributions to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "*"
7
+
8
+ jobs:
9
+ pypi:
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: pypi
13
+ url: https://pypi.org/p/sphinxnotes-data
14
+ permissions:
15
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-python@v5
19
+ - run: pip install build twine && make dist
20
+ - uses: pypa/gh-action-pypi-publish@release/v1
21
+ with:
22
+ password: ${{ secrets.PYPI_API_TOKEN }}
@@ -0,0 +1,18 @@
1
+ name: Publish Github Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "[0-9]+.[0-9]+" # MAJOR.MINOR (1.0: y, 1.0a0: n, 1.0.1: n)
7
+
8
+ jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: ncipollo/release-action@v1
16
+ with:
17
+ body: |
18
+ Changelog: https://sphinx.silverrainz.me/data/changelog.html
@@ -0,0 +1,28 @@
1
+ name: Tag and Publish every commit
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ tag:
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: pypi
13
+ url: https://pypi.org/p/sphinxnotes-project
14
+ permissions:
15
+ contents: write
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: '0'
20
+ - uses: anothrNick/github-tag-action@v1
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ CUSTOM_TAG: 1.0a${{ github.run_number }}
24
+ - uses: actions/setup-python@v5
25
+ - run: pip install build twine && make dist
26
+ - uses: pypa/gh-action-pypi-publish@release/v1
27
+ with:
28
+ password: ${{ secrets.PYPI_API_TOKEN }}
@@ -0,0 +1,16 @@
1
+ name: Test
2
+ on:
3
+ push:
4
+ pull_request:
5
+ schedule:
6
+ - cron: '0 7 * * 6'
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - uses: actions/setup-python@v5
13
+ with:
14
+ python-version-file: 'pyproject.toml'
15
+ - run: python3 -m pip install .[dev]
16
+ - run: make test
@@ -0,0 +1,137 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+
131
+ # Poetry
132
+ poetry.lock
133
+
134
+ # Sphinx
135
+ docs/_build/
136
+ # sphinxnotes-any >= 2.5
137
+ docs/.any*
@@ -0,0 +1,7 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.14.11
4
+ hooks:
5
+ - id: ruff-check
6
+ args: [ --fix ]
7
+ - id: ruff-format
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Shengyu Zhang
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,11 @@
1
+ # This file is generated from sphinx-notes/cookiecutter.
2
+ # You need to consider modifying the TEMPLATE or modifying THIS FILE.
3
+
4
+ include LICENSE
5
+ include README.rst
6
+
7
+ recursive-include tests *
8
+ recursive-exclude * __pycache__
9
+ recursive-exclude * *.py[co]
10
+
11
+ recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
@@ -0,0 +1,92 @@
1
+ # This file is generated from sphinx-notes/cookiecutter.
2
+ # You need to consider modifying the TEMPLATE or modifying THIS FILE.
3
+
4
+ LANG = en_US.UTF-8
5
+
6
+ MAKE = make
7
+ PY = python3
8
+ RM = rm -rf
9
+ GIT = git
10
+ OPEN = xdg-open
11
+
12
+ .PHONY: docs
13
+ docs:
14
+ $(MAKE) -C docs/
15
+
16
+ .PHONY: view
17
+ view:
18
+ $(OPEN) docs/_build/html/index.html
19
+
20
+ .PHONY: clean
21
+ clean:
22
+ $(MAKE) -C docs/ clean; $(RM) dist/
23
+
24
+ .PHONY: fmt
25
+ fmt:
26
+ ruff format src/ && ruff check --fix src/
27
+
28
+ .PHONY: test
29
+ test:
30
+ $(PY) -m unittest discover -s tests -v
31
+
32
+ ################################################################################
33
+ # Distribution Package
34
+ ################################################################################
35
+
36
+ # Build distribution package, for "install" or "upload".
37
+ .PHONY: dist
38
+ dist: pyproject.toml clean
39
+ $(PY) -m build
40
+
41
+ # Install distribution package to user directory.
42
+ #
43
+ # NOTE: It may breaks your system-level packages, use at your own risk.
44
+ .PHONY: install
45
+ install: dist
46
+ export PIP_BREAK_SYSTEM_PACKAGES=1 # required by Python 3.11+, see PEP-668
47
+ $(PY) -m pip install --user --no-deps --force-reinstall dist/*.whl
48
+
49
+ # Publish wheel to PyPI offical server <https://pypi.org/> when you want to
50
+ # You should have a PyPI account and have PyPI token configured.
51
+ #
52
+ # See also https://packaging.python.org/en/latest/tutorials/packaging-projects/#uploading-the-distribution-archives
53
+ .PHONY: upload
54
+ upload: dist
55
+ $(PY) -m twine upload --repository pypi $</*
56
+
57
+ ################################################################################
58
+ # Cookiecutter Incremental Updates
59
+ ################################################################################
60
+
61
+ # Keep up to date with the latest template.
62
+ # See https://github.com/sphinx-notes/cookiecutter.
63
+ .PHONY: tmpl-update tmpl-update-done tmpl-apply-rej
64
+
65
+ tmpl-update:
66
+ $(PY) -m cruft update
67
+
68
+ tmpl-update-done:
69
+ $(GIT) commit -m "chore: Update project template to sphinx-notes/cookiecutter@$(shell jq -r '.commit' .cruft.json | head -c8)"
70
+
71
+ tmpl-apply-rej:
72
+ @for rej in $$(find . -name '*.rej'); do \
73
+ echo "applying $$rej..."; \
74
+ wiggle --replace $${rej%.rej} $$rej; \
75
+ done
76
+
77
+ # Update project version.
78
+ .PHONY: bump-version bump-version-done
79
+
80
+ bump-version:
81
+ @echo -n "Please enter the version to bump: "
82
+ @read version && $(PY) -m cruft update --variables-to-update "{ \"version\" : \"$$version\" }"
83
+
84
+ bump-version-done:
85
+ VERSION=$(shell jq -r '.context.cookiecutter.version' .cruft.json); \
86
+ $(GIT) commit -m "chore: Bump version to $$VERSION"; \
87
+ $(GIT) tag $$VERSION
88
+
89
+
90
+ ################################################################################
91
+ # CUSTOM TARGETS
92
+ ################################################################################
@@ -0,0 +1,78 @@
1
+ Metadata-Version: 2.4
2
+ Name: sphinxnotes-data
3
+ Version: 1.0a17
4
+ Summary: Use reStructuredText/markdown to define, constrain, render, and analyze data in Sphinx documentations
5
+ Author: Shengyu Zhang
6
+ Maintainer: Shengyu Zhang
7
+ License-Expression: BSD-3-Clause
8
+ Project-URL: homepage, https://sphinx.silverrainz.me/data
9
+ Project-URL: documentation, https://sphinx.silverrainz.me/data
10
+ Project-URL: repository, https://github.com/sphinx-notes/data
11
+ Project-URL: changelog, https://sphinx.silverrainz.me/data/changelog.html
12
+ Project-URL: tracker, https://github.com/sphinx-notes/data/issues
13
+ Keywords: sphinx,extension,documentation,sphinxnotes
14
+ Classifier: Development Status :: 3 - Alpha
15
+ Classifier: Environment :: Plugins
16
+ Classifier: Framework :: Sphinx
17
+ Classifier: Framework :: Sphinx :: Extension
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Programming Language :: Python
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Topic :: Documentation
22
+ Classifier: Topic :: Documentation :: Sphinx
23
+ Requires-Python: >=3.12
24
+ Description-Content-Type: text/x-rst
25
+ License-File: LICENSE
26
+ Requires-Dist: Sphinx>=7.0
27
+ Provides-Extra: dev
28
+ Requires-Dist: build; extra == "dev"
29
+ Requires-Dist: twine; extra == "dev"
30
+ Requires-Dist: cruft; extra == "dev"
31
+ Requires-Dist: ruff>=0.11.10; extra == "dev"
32
+ Requires-Dist: pre-commit; extra == "dev"
33
+ Provides-Extra: test
34
+ Requires-Dist: pytest; extra == "test"
35
+ Provides-Extra: docs
36
+ Requires-Dist: furo; extra == "docs"
37
+ Requires-Dist: sphinx_design; extra == "docs"
38
+ Requires-Dist: sphinx_copybutton; extra == "docs"
39
+ Requires-Dist: sphinxcontrib-gtagjs; extra == "docs"
40
+ Requires-Dist: sphinx-sitemap; extra == "docs"
41
+ Requires-Dist: sphinxext-opengraph; extra == "docs"
42
+ Requires-Dist: sphinx-last-updated-by-git; extra == "docs"
43
+ Requires-Dist: sphinxnotes-project; extra == "docs"
44
+ Requires-Dist: sphinxnotes-comboroles; extra == "docs"
45
+ Dynamic: license-file
46
+
47
+ .. This file is generated from sphinx-notes/cookiecutter.
48
+ You need to consider modifying the TEMPLATE or modifying THIS FILE.
49
+
50
+ ================
51
+ sphinxnotes-data
52
+ ================
53
+
54
+ .. |docs| image:: https://img.shields.io/github/deployments/sphinx-notes/data/github-pages
55
+ :target: https://sphinx.silverrainz.me/data
56
+ :alt: Documentation Status
57
+ .. |license| image:: https://img.shields.io/github/license/sphinx-notes/data
58
+ :target: https://github.com/sphinx-notes/data/blob/master/LICENSE
59
+ :alt: Open Source License
60
+ .. |pypi| image:: https://img.shields.io/pypi/v/sphinxnotes-data.svg
61
+ :target: https://pypi.python.org/pypi/sphinxnotes-data
62
+ :alt: PyPI Package
63
+ .. |download| image:: https://img.shields.io/pypi/dm/sphinxnotes-data
64
+ :target: https://pypistats.org/packages/sphinxnotes-data
65
+ :alt: PyPI Package Downloads
66
+
67
+ |docs| |license| |pypi| |download|
68
+
69
+ Use reStructuredText/markdown to define, constrain, render, and analyze data in Sphinx documentations.
70
+
71
+ .. INTRODUCTION START
72
+ (MUST written in standard reStructuredText, without Sphinx stuff)
73
+
74
+ .. INTRODUCTION END
75
+
76
+ Please refer to Documentation_ for more details.
77
+
78
+ .. _Documentation: https://sphinx.silverrainz.me/data
@@ -0,0 +1,32 @@
1
+ .. This file is generated from sphinx-notes/cookiecutter.
2
+ You need to consider modifying the TEMPLATE or modifying THIS FILE.
3
+
4
+ ================
5
+ sphinxnotes-data
6
+ ================
7
+
8
+ .. |docs| image:: https://img.shields.io/github/deployments/sphinx-notes/data/github-pages
9
+ :target: https://sphinx.silverrainz.me/data
10
+ :alt: Documentation Status
11
+ .. |license| image:: https://img.shields.io/github/license/sphinx-notes/data
12
+ :target: https://github.com/sphinx-notes/data/blob/master/LICENSE
13
+ :alt: Open Source License
14
+ .. |pypi| image:: https://img.shields.io/pypi/v/sphinxnotes-data.svg
15
+ :target: https://pypi.python.org/pypi/sphinxnotes-data
16
+ :alt: PyPI Package
17
+ .. |download| image:: https://img.shields.io/pypi/dm/sphinxnotes-data
18
+ :target: https://pypistats.org/packages/sphinxnotes-data
19
+ :alt: PyPI Package Downloads
20
+
21
+ |docs| |license| |pypi| |download|
22
+
23
+ Use reStructuredText/markdown to define, constrain, render, and analyze data in Sphinx documentations.
24
+
25
+ .. INTRODUCTION START
26
+ (MUST written in standard reStructuredText, without Sphinx stuff)
27
+
28
+ .. INTRODUCTION END
29
+
30
+ Please refer to Documentation_ for more details.
31
+
32
+ .. _Documentation: https://sphinx.silverrainz.me/data
@@ -0,0 +1,23 @@
1
+ # This file is generated from sphinx-notes/cookiecutter.
2
+ # You need to consider modifying the TEMPLATE or modifying THIS FILE.
3
+
4
+ # Minimal makefile for Sphinx documentation
5
+
6
+ # You can set these variables from the command line.
7
+ SPHINXOPTS =
8
+ SPHINXBUILD = python3 -msphinx
9
+ SOURCEDIR = .
10
+ BUILDDIR = _build
11
+
12
+ default: html
13
+
14
+ # Put it first so that "make" without argument is like "make help".
15
+ help:
16
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
17
+
18
+ .PHONY: help Makefile default
19
+
20
+ # Catch-all target: route all unknown targets to Sphinx using the new
21
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
22
+ %: Makefile
23
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
File without changes
File without changes
@@ -0,0 +1,20 @@
1
+ .. This file is generated from sphinx-notes/cookiecutter.
2
+ You need to consider modifying the TEMPLATE or modifying THIS FILE.
3
+
4
+ ==========
5
+ Change Log
6
+ ==========
7
+
8
+ .. hint:: You may want to learn about our `Release Strategy`__
9
+
10
+ __ https://sphinx.silverrainz.me/release.html
11
+
12
+ .. Example:
13
+
14
+ 1.0
15
+ ===
16
+
17
+ .. version:: _
18
+ :date: yyyy-mm-dd
19
+
20
+ Change log here.