webifier 1.0.1__tar.gz → 1.0.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 (26) hide show
  1. {webifier-1.0.1 → webifier-1.0.2}/PKG-INFO +11 -4
  2. {webifier-1.0.1 → webifier-1.0.2}/README.md +8 -1
  3. {webifier-1.0.1 → webifier-1.0.2}/action.yml +3 -1
  4. {webifier-1.0.1 → webifier-1.0.2}/pyproject.toml +2 -2
  5. {webifier-1.0.1 → webifier-1.0.2}/webifier/_version.py +2 -2
  6. {webifier-1.0.1 → webifier-1.0.2}/.github/workflows/python-publish.yml +0 -0
  7. {webifier-1.0.1 → webifier-1.0.2}/.gitignore +0 -0
  8. {webifier-1.0.1 → webifier-1.0.2}/LICENSE +0 -0
  9. {webifier-1.0.1 → webifier-1.0.2}/tests/test_extensions.py +0 -0
  10. {webifier-1.0.1 → webifier-1.0.2}/webifier/__init__.py +0 -0
  11. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/__init__.py +0 -0
  12. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/base.py +0 -0
  13. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/builder.py +0 -0
  14. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/extensions.py +0 -0
  15. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/frontmatter.py +0 -0
  16. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/html.py +0 -0
  17. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/loader.py +0 -0
  18. {webifier-1.0.1 → webifier-1.0.2}/webifier/core/markdown.py +0 -0
  19. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/__init__.py +0 -0
  20. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/cli.py +0 -0
  21. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/io.py +0 -0
  22. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/resolvers/__init__.py +0 -0
  23. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/resolvers/base.py +0 -0
  24. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/resolvers/builtins.py +0 -0
  25. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/resolvers/engine.py +0 -0
  26. {webifier-1.0.1 → webifier-1.0.2}/webifier/interface/resolvers/utils.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: webifier
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Cook up a fully functional static website from YAML and Markdown.
5
5
  Project-URL: Homepage, https://github.com/webifier/build
6
6
  Project-URL: Repository, https://github.com/webifier/build
7
7
  Project-URL: Issues, https://github.com/webifier/build/issues
8
- Author-email: Vahid Zehtab <vahid98zee@gmail.com>, Ahmad Salimi <ahsa9978@gmail.com>
8
+ Author-email: Vahid Zehtab <contact@vahidz.com>, Ahmad Salimi <ahsa9978@gmail.com>
9
9
  License-Expression: MIT
10
10
  License-File: LICENSE
11
11
  Keywords: jinja2,jupyter notebook,markdown,static site,webifier
@@ -23,7 +23,7 @@ Requires-Dist: jinja2<3.2,>=3.0
23
23
  Requires-Dist: markdown
24
24
  Requires-Dist: pygments
25
25
  Requires-Dist: pyyaml
26
- Requires-Dist: webifier-extensions>=1.0.1
26
+ Requires-Dist: webifier-extensions>=1.0.4
27
27
  Provides-Extra: dev
28
28
  Requires-Dist: pytest; extra == 'dev'
29
29
  Requires-Dist: ruff; extra == 'dev'
@@ -31,6 +31,11 @@ Description-Content-Type: text/markdown
31
31
 
32
32
  # Webifier
33
33
 
34
+ [![Docs](https://img.shields.io/badge/docs-webifier.github.io-blue)](https://webifier.github.io/)
35
+ [![PyPI](https://img.shields.io/pypi/v/webifier.svg)](https://pypi.org/project/webifier/)
36
+ [![Python Package](https://github.com/webifier/build/actions/workflows/python-publish.yml/badge.svg)](https://github.com/webifier/build/actions/workflows/python-publish.yml)
37
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
38
+
34
39
  Webifier turns YAML, Markdown, HTML, notebooks, and other static content into a
35
40
  static website. It is meant to remove the publishing overhead from personal
36
41
  projects, research notes, notebooks, reports, and evolving documentation: decide
@@ -48,6 +53,8 @@ ship as the `webifier-extensions` package, which is installed automatically with
48
53
  pip install webifier
49
54
  ```
50
55
 
56
+ Documentation and examples live at [webifier.github.io](https://webifier.github.io/).
57
+
51
58
  ## Build Locally
52
59
 
53
60
  ```shell
@@ -108,7 +115,7 @@ jobs:
108
115
  runs-on: ubuntu-latest
109
116
  steps:
110
117
  - uses: actions/checkout@v4
111
- - uses: webifier/build@main
118
+ - uses: webifier/build@v1.0.1
112
119
  with:
113
120
  baseurl: ""
114
121
  index: index.yml
@@ -1,5 +1,10 @@
1
1
  # Webifier
2
2
 
3
+ [![Docs](https://img.shields.io/badge/docs-webifier.github.io-blue)](https://webifier.github.io/)
4
+ [![PyPI](https://img.shields.io/pypi/v/webifier.svg)](https://pypi.org/project/webifier/)
5
+ [![Python Package](https://github.com/webifier/build/actions/workflows/python-publish.yml/badge.svg)](https://github.com/webifier/build/actions/workflows/python-publish.yml)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
7
+
3
8
  Webifier turns YAML, Markdown, HTML, notebooks, and other static content into a
4
9
  static website. It is meant to remove the publishing overhead from personal
5
10
  projects, research notes, notebooks, reports, and evolving documentation: decide
@@ -17,6 +22,8 @@ ship as the `webifier-extensions` package, which is installed automatically with
17
22
  pip install webifier
18
23
  ```
19
24
 
25
+ Documentation and examples live at [webifier.github.io](https://webifier.github.io/).
26
+
20
27
  ## Build Locally
21
28
 
22
29
  ```shell
@@ -77,7 +84,7 @@ jobs:
77
84
  runs-on: ubuntu-latest
78
85
  steps:
79
86
  - uses: actions/checkout@v4
80
- - uses: webifier/build@main
87
+ - uses: webifier/build@v1.0.1
81
88
  with:
82
89
  baseurl: ""
83
90
  index: index.yml
@@ -38,7 +38,9 @@ runs:
38
38
  - uses: actions/setup-python@v5
39
39
  with:
40
40
  python-version: "3.12"
41
- - run: pip install webifier
41
+ - run: python -m pip install --upgrade pip
42
+ shell: bash
43
+ - run: python -m pip install --upgrade webifier webifier-extensions
42
44
  shell: bash
43
45
  - run: webify --repo-full-name "${{ inputs.repo }}" --baseurl "${{ inputs.baseurl }}" --index ${{ inputs.index }} --output="${{ inputs.publish_dir }}" --templates-dir="${{ inputs.templates_dir }}"
44
46
  shell: bash
@@ -10,7 +10,7 @@ readme = "README.md"
10
10
  license = "MIT"
11
11
  requires-python = ">=3.10"
12
12
  authors = [
13
- { name = "Vahid Zehtab", email = "vahid98zee@gmail.com" },
13
+ { name = "Vahid Zehtab", email = "contact@vahidz.com" },
14
14
  { name = "Ahmad Salimi", email = "ahsa9978@gmail.com" },
15
15
  ]
16
16
  keywords = ["webifier", "jupyter notebook", "markdown", "jinja2", "static site"]
@@ -30,7 +30,7 @@ dependencies = [
30
30
  "markdown",
31
31
  "pygments",
32
32
  "pyyaml",
33
- "webifier-extensions>=1.0.1",
33
+ "webifier-extensions>=1.0.4",
34
34
  ]
35
35
 
36
36
  [project.optional-dependencies]
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '1.0.1'
22
- __version_tuple__ = version_tuple = (1, 0, 1)
21
+ __version__ = version = '1.0.2'
22
+ __version_tuple__ = version_tuple = (1, 0, 2)
23
23
 
24
24
  __commit_id__ = commit_id = None
File without changes
File without changes
File without changes
File without changes
File without changes