nbsync 0.1.1__tar.gz → 0.1.2__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 (36) hide show
  1. {nbsync-0.1.1 → nbsync-0.1.2}/PKG-INFO +1 -9
  2. {nbsync-0.1.1 → nbsync-0.1.2}/README.md +0 -8
  3. {nbsync-0.1.1 → nbsync-0.1.2}/pyproject.toml +1 -1
  4. {nbsync-0.1.1 → nbsync-0.1.2}/.devcontainer/devcontainer.json +0 -0
  5. {nbsync-0.1.1 → nbsync-0.1.2}/.devcontainer/postCreate.sh +0 -0
  6. {nbsync-0.1.1 → nbsync-0.1.2}/.devcontainer/starship.toml +0 -0
  7. {nbsync-0.1.1 → nbsync-0.1.2}/.gitattributes +0 -0
  8. {nbsync-0.1.1 → nbsync-0.1.2}/.github/workflows/ci.yaml +0 -0
  9. {nbsync-0.1.1 → nbsync-0.1.2}/.github/workflows/docs.yaml +0 -0
  10. {nbsync-0.1.1 → nbsync-0.1.2}/.github/workflows/publish.yaml +0 -0
  11. {nbsync-0.1.1 → nbsync-0.1.2}/.gitignore +0 -0
  12. {nbsync-0.1.1 → nbsync-0.1.2}/LICENSE +0 -0
  13. {nbsync-0.1.1 → nbsync-0.1.2}/docs/getting-started/configuration.md +0 -0
  14. {nbsync-0.1.1 → nbsync-0.1.2}/docs/getting-started/first-steps.md +0 -0
  15. {nbsync-0.1.1 → nbsync-0.1.2}/docs/getting-started/installation.md +0 -0
  16. {nbsync-0.1.1 → nbsync-0.1.2}/docs/index.md +0 -0
  17. {nbsync-0.1.1 → nbsync-0.1.2}/mkdocs.yaml +0 -0
  18. {nbsync-0.1.1 → nbsync-0.1.2}/notebooks/analysis.ipynb +0 -0
  19. {nbsync-0.1.1 → nbsync-0.1.2}/scripts/__init__.py +0 -0
  20. {nbsync-0.1.1 → nbsync-0.1.2}/scripts/plot.py +0 -0
  21. {nbsync-0.1.1 → nbsync-0.1.2}/scripts/plotting.py +0 -0
  22. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/__init__.py +0 -0
  23. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/cell.py +0 -0
  24. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/logger.py +0 -0
  25. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/markdown.py +0 -0
  26. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/notebook.py +0 -0
  27. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/plugin.py +0 -0
  28. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/py.typed +0 -0
  29. {nbsync-0.1.1 → nbsync-0.1.2}/src/nbsync/sync.py +0 -0
  30. {nbsync-0.1.1 → nbsync-0.1.2}/tests/__init__.py +0 -0
  31. {nbsync-0.1.1 → nbsync-0.1.2}/tests/conftest.py +0 -0
  32. {nbsync-0.1.1 → nbsync-0.1.2}/tests/test_cell.py +0 -0
  33. {nbsync-0.1.1 → nbsync-0.1.2}/tests/test_markdown.py +0 -0
  34. {nbsync-0.1.1 → nbsync-0.1.2}/tests/test_notebook.py +0 -0
  35. {nbsync-0.1.1 → nbsync-0.1.2}/tests/test_plugin.py +0 -0
  36. {nbsync-0.1.1 → nbsync-0.1.2}/tests/test_sync.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nbsync
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: MkDocs plugin treating Jupyter notebooks, Python scripts and Markdown files as first-class citizens for documentation with dynamic execution and real-time synchronization
5
5
  Project-URL: Documentation, https://daizutabi.github.io/nbsync/
6
6
  Project-URL: Source, https://github.com/daizutabi/nbsync
@@ -134,14 +134,6 @@ Use standard Markdown image syntax with the figure identifier:
134
134
  ![Chart description](my-notebook.ipynb){#my-figure}
135
135
  ```
136
136
 
137
- ## Advanced Usage
138
-
139
- For more detailed information on how to use nbsync, see:
140
-
141
- - [Notebook Configuration](usage/notebook.md) - Setting up notebook directories
142
- - [Class Options](usage/class.md) - Control how notebook content is displayed
143
- <!-- - [Workflow Tips](usage/workflow.md) - Best practices for documentation -->
144
-
145
137
  ## The Power of Separation
146
138
 
147
139
  Creating documentation and developing visualizations involve different
@@ -89,14 +89,6 @@ Use standard Markdown image syntax with the figure identifier:
89
89
  ![Chart description](my-notebook.ipynb){#my-figure}
90
90
  ```
91
91
 
92
- ## Advanced Usage
93
-
94
- For more detailed information on how to use nbsync, see:
95
-
96
- - [Notebook Configuration](usage/notebook.md) - Setting up notebook directories
97
- - [Class Options](usage/class.md) - Control how notebook content is displayed
98
- <!-- - [Workflow Tips](usage/workflow.md) - Best practices for documentation -->
99
-
100
92
  ## The Power of Separation
101
93
 
102
94
  Creating documentation and developing visualizations involve different
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "nbsync"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "MkDocs plugin treating Jupyter notebooks, Python scripts and Markdown files as first-class citizens for documentation with dynamic execution and real-time synchronization"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes