Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update project template to sphinx-notes/cookiecutter@c4f14dab #8

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/sphinx-notes/cookiecutter",
"commit": "1701bf78ca498d756ce4502aa1712cfe23ed35af",
"commit": "c4f14dab2840eeff6352647a923642b6377d1f49",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Ruff
on: [ push, pull_request ]

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
22 changes: 22 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish package distributions to PyPI

on:
push:
tags:
- "*"

jobs:
pypi:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/sphinxnotes-isso
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install build twine && make dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
24 changes: 3 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,12 @@
name: Publish New Release
name: Publish Github Release

on:
push:
tags:
- "*"
- "[0-9]+.[0-9]+" # MAJOR.MINOR (1.0: y, 1.0a0: n, 1.0.1: n)

jobs:
pypi:
name: Publish package distributions to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/sphinxnotes-isso
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install build twine && make dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

release:
name: Publish Github Release
needs: [pypi]
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -33,4 +15,4 @@ jobs:
- uses: ncipollo/release-action@v1
with:
body: |
Changelog: https://sphinx.silverrainz.me/isso/changelog.html#version-${{ github.ref_name }}
Changelog: https://sphinx.silverrainz.me/isso/changelog.html
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,5 @@ poetry.lock

# Sphinx
docs/_build/
# sphinxnotes-any >= 2.5
docs/.any*
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.1
hooks:
- id: ruff
- id: ruff-format
37 changes: 0 additions & 37 deletions .sphinxnotes/template/update.py

This file was deleted.

27 changes: 25 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,36 @@ LANG = en_US.UTF-8
MAKE = make
PY = python3
RM = rm -rf
GIT = git
OPEN = xdg-open

# Build sphinx documentation.
.PHONY: docs
docs:
$(MAKE) -C docs/

# View sphinx HTML documentation in browser.
.PHONY: view
view:
$(OPEN) docs/_build/html/index.html

.PHONY: clean
clean:
$(MAKE) -C docs/ clean | true
$(RM) dist/ | true

.PHONY: clean
fmt:
ruff format src/

# Run unittest.
.PHONY: test
test:
$(PY) -m unittest discover -s tests -v

# Build distribution package, for "install" or "upload".
.PHONY: dist
dist: pyproject.toml
$(RM) dist/ # clean up old dist
dist: pyproject.toml clean
$(PY) -m build

# Install distribution package to user directory.
Expand Down Expand Up @@ -51,8 +66,16 @@ upload-test: dist
update-template:
$(PY) -m cruft update

.PHONY: update-template-done
update-template-done:
$(GIT) commit -m "chore: Update project template to sphinx-notes/cookiecutter@$(shell jq -r '.commit' .cruft.json | head -c8)"

# Update project version.
.PHONY: bump-version
bump-version:
@echo -n "Please enter the version to bump: "
@read version && $(PY) -m cruft update --variables-to-update "{ \"version\" : \"$$version\" }"

# EXTRA TARGETS START

# EXTRA TARGETS END
25 changes: 15 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,31 @@
sphinxnotes-isso
================

.. image:: https://img.shields.io/github/actions/workflow/status/sphinx-notes/isso/pages.yml
.. |docs| image:: https://img.shields.io/github/deployments/sphinx-notes/isso/github-pages
:target: https://sphinx.silverrainz.me/isso
:alt: Documentation Status

.. image:: https://img.shields.io/github/license/sphinx-notes/isso
:target: https://github.com/sphinx-notes/isso/LICENSE
.. |license| image:: https://img.shields.io/github/license/sphinx-notes/isso
:target: https://github.com/sphinx-notes/isso/blob/master/LICENSE
:alt: Open Source License

.. image:: https://img.shields.io/pypi/v/sphinxnotes-isso.svg
.. |pypi| image:: https://img.shields.io/pypi/v/sphinxnotes-isso.svg
:target: https://pypi.python.org/pypi/sphinxnotes-isso
:alt: PyPI Package

.. image:: https://img.shields.io/pypi/dm/sphinxnotes-isso
.. |download| image:: https://img.shields.io/pypi/dm/sphinxnotes-isso
:target: https://pypi.python.org/pypi/sphinxnotes-isso
:alt: PyPI Package Downloads

|docs| |license| |pypi| |download|

Sphinx extension for embeding Isso comments in documents.

* Documentation: https://sphinx.silverrainz.me/isso
* Source: https://github.com/sphinx-notes/isso
* Changelog: https://sphinx.silverrainz.me/isso/changelog.html
* Tracker: https://github.com/sphinx-notes/isso/issues
* Download: https://pypi.org/project/sphinxnotes-isso/#files
.. INTRODUCTION START
(MUST written in standard reStructuredText, without Sphinx stuff)

.. INTRODUCTION END

Please refer to Documentation_ for more details.

.. _Documentation: https://sphinx.silverrainz.me/isso
10 changes: 7 additions & 3 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@
Change Log
==========

.. hint:: You may want to learn about our `Release Strategy`__

__ https://sphinx.silverrainz.me/release.html

.. Example:

1.0.0
=====
1.0
===

.. version:: _
:date: yyyy-mm-dd

Change log here.
Change log here.

Version 1.x
===========
Expand Down
18 changes: 18 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,24 @@
extensions.append('sphinxcontrib.gtagjs')
gtagjs_ids = ['G-E4SNX0WZYV']

extensions.append('sphinx.ext.autodoc')
autoclass_content = 'init'
autodoc_typehints = 'description'

extensions.append('sphinx.ext.intersphinx')
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'sphinx': ('https://www.sphinx-doc.org/en/master', None),
'jinja': ('https://jinja.palletsprojects.com/en/latest/', None),
}

#
extensions.append('sphinxnotes.comboroles')
comboroles_roles = {
'parsed_literal': (['literal'], True),
}
#

#
# -- Eat your own dog food --------------------------------------------------

Expand Down
29 changes: 25 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,38 @@
.. This file is generated from sphinx-notes/cookiecutter.
You need to consider modifying the TEMPLATE or modifying THIS FILE.

.. include:: ../README.rst
================
sphinxnotes-isso
================

.. |docs| image:: https://img.shields.io/github/deployments/sphinx-notes/isso/github-pages
:target: https://sphinx.silverrainz.me/isso
:alt: Documentation Status

.. |license| image:: https://img.shields.io/github/license/sphinx-notes/isso
:target: https://github.com/sphinx-notes/isso/blob/master/LICENSE
:alt: Open Source License

.. |pypi| image:: https://img.shields.io/pypi/v/sphinxnotes-isso.svg
:target: https://pypi.python.org/pypi/sphinxnotes-isso
:alt: PyPI Package

.. |download| image:: https://img.shields.io/pypi/dm/sphinxnotes-isso
:target: https://pypi.python.org/pypi/sphinxnotes-isso
:alt: PyPI Package Downloads

|docs| |license| |pypi| |download|

Introduction
============

.. ADDITIONAL CONTENT START
.. INTRODUCTION START

The extension allows your embedding Isso_ comments in your Sphinx documentation:

.. _Isso: https://isso-comments.de/

.. ADDITIONAL CONTENT END
.. INTRODUCTION END

Getting Started
===============
Expand All @@ -28,7 +48,8 @@ First, downloading extension from PyPI:

$ pip install sphinxnotes-isso

Then, add the extension name to ``extensions`` configuration item in your conf.py_:
Then, add the extension name to ``extensions`` configuration item in your
:parsed_literal:`conf.py_`:

.. code-block:: python

Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ dev = [
"build",
"twine",
"cruft",
"ruff",
"pre-commit"
]
test = [
"pytest",
Expand All @@ -48,6 +50,7 @@ docs = [
"sphinx_design",
"sphinx_copybutton",
"sphinxcontrib-gtagjs",
"sphinxnotes-comboroles",
]

[project.urls]
Expand Down
9 changes: 9 additions & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This file is generated from sphinx-notes/cookiecutter.
# You need to consider modifying the TEMPLATE or modifying THIS FILE.

exclude = [
"docs/conf.py",
]

[format]
quote-style = "single"
Loading
Loading