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

README: add PyPi badges #50

Merged
merged 3 commits into from
Mar 21, 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
9 changes: 8 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
|license| |version|
|license| |version| |pypi_version| |pypi_downloads|

.. |license| image:: https://img.shields.io/github/license/mweinelt/kea-exporter
:alt: GitHub license
Expand All @@ -7,6 +7,12 @@
.. |version| image:: https://img.shields.io/github/v/tag/mweinelt/kea-exporter
:alt: GitHub tag (latest SemVer)

.. |pypi_version| image:: https://img.shields.io/pypi/v/kea-exporter
:alt: PyPI - Version

.. |pypi_downloads| image:: https://img.shields.io/pypi/dm/kea-exporter
:alt: PyPI - Downloads

kea-exporter
============

Expand All @@ -20,6 +26,7 @@ Installation

.. image:: https://repology.org/badge/vertical-allrepos/kea-exporter.svg
:alt: Package versions via repology.org
:target: https://repology.org/project/kea-exporter/versions

The latest stable version can always be installed from PyPi:

Expand Down
6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
entry = "${pkgs.ruff}/bin/ruff format";
pass_filenames = false;
};
rstcheck = {
enable = true;
entry = "${pkgs.rstcheck}/bin/rstcheck";
pass_filenames = true;
files = "\\.rst$";
};
};
};
};
Expand Down
Loading