Skip to content
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 app/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "app"
version = "0.1.0"
description = "Add your description here"
description = "A Streamlit-based chatbot application that provides an interactive AI-powered interface to chat with the mkdocs-chatbot plugin documentation."
readme = "README.md"
requires-python = ">=3.12, <4.0"
dependencies = [
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "mkdocs-chatbot"
dynamic = ["version"]
description = "Add your description here"
description = "A MKDocs plugin that adds an AI-powered chatbot to your documentation."
readme = "README.md"
authors = [
{ name = "Yonatan Cohen", email = "jonco5555@gmail.com" }
Expand All @@ -11,6 +11,10 @@ dependencies = [
"mkdocs>=1.6.1",
]

[project.urls]
Repository = "https://github.com/jonco5555/mkdocs-chatbot"
Documentation = "https://jonco5555.github.io/mkdocs-chatbot/"

[project.entry-points."mkdocs.plugins"]
"chatbot" = "mkdocs_chatbot.plugin:ChatbotPlugin"

Expand Down
Loading