kopia lustrzana https://github.com/Yakifo/amqtt
adding configuration for readthedocs
rodzic
ee7a88fc72
commit
09fa23dc22
|
@ -0,0 +1,12 @@
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
build:
|
||||||
|
os: "ubuntu-24.04"
|
||||||
|
tools:
|
||||||
|
python: "3.12"
|
||||||
|
jobs:
|
||||||
|
pre_install:
|
||||||
|
- pip install --group docs
|
||||||
|
|
||||||
|
mkdocs:
|
||||||
|
configuration: mkdocs.rtd.yml
|
|
@ -0,0 +1,4 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
{% block outdated %}
|
||||||
|
You're not viewing the latest version. <a href="{{ '../' ~ base_url }}"><strong>Click here to go to latest.</strong></a>
|
||||||
|
{% endblock %}
|
|
@ -1,7 +1,7 @@
|
||||||
# MKDocs configuration file for generating RTD (readthedocs) documentation
|
# MKDocs configuration file for generating RTD (readthedocs) documentation
|
||||||
|
|
||||||
site_name: ""
|
site_name: "aMQTT"
|
||||||
site_description: "MQTT broker and client natively implemented with Python's asyncio"
|
site_description: "Python's asyncio-native MQTT broker and client."
|
||||||
site_url: http://github.com
|
site_url: http://github.com
|
||||||
repo_url: https://github.com/Yakifo/amqtt
|
repo_url: https://github.com/Yakifo/amqtt
|
||||||
repo_name: Yakifo/amqtt
|
repo_name: Yakifo/amqtt
|
||||||
|
@ -56,6 +56,8 @@ nav:
|
||||||
theme:
|
theme:
|
||||||
name: material
|
name: material
|
||||||
logo: assets/amqtt_bw.svg
|
logo: assets/amqtt_bw.svg
|
||||||
|
extend:
|
||||||
|
- base.html
|
||||||
features:
|
features:
|
||||||
- announce.dismiss
|
- announce.dismiss
|
||||||
- content.action.edit
|
- content.action.edit
|
||||||
|
@ -164,6 +166,9 @@ plugins:
|
||||||
- typeset
|
- typeset
|
||||||
|
|
||||||
extra:
|
extra:
|
||||||
|
version:
|
||||||
|
provider: readthedocs
|
||||||
|
default: latest
|
||||||
social:
|
social:
|
||||||
- icon: fontawesome/brands/github
|
- icon: fontawesome/brands/github
|
||||||
link: https://github.com/pawamoy
|
link: https://github.com/pawamoy
|
||||||
|
|
|
@ -5,7 +5,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "amqtt"
|
name = "amqtt"
|
||||||
description = "MQTT client/broker using Python asyncio"
|
description = "Python's asyncio-native MQTT broker and client."
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
|
|
Ładowanie…
Reference in New Issue