Compare commits
No commits in common. "440da124c0e04170abebcfcca8c246c370f50b43" and "163975f837b41aaaa867ba46e319ba6e5153db27" have entirely different histories.
440da124c0
...
163975f837
12
README.md
|
@ -25,12 +25,12 @@ BukuBot is primarily designed for XMPP (aka Jabber), yet it is built to be exten
|
|||
|
||||
BukuBot as appears with Cheogram.
|
||||
|
||||
<img alt="Chat: Search" src="bukubot/documentation/screenshots/chat_search.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Commands" src="bukubot/documentation/screenshots/adhoc_commands.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Browse" src="bukubot/documentation/screenshots/adhoc_browse.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Add" src="bukubot/documentation/screenshots/adhoc_add.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Edit bookmark" src="bukubot/documentation/screenshots/adhoc_edit.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Seach" width="200px" src="bukubot/documentation/screenshots/adhoc_search.jpg"/>
|
||||
<img alt="Chat: Search" src="documentation/screenshots/chat_search.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Commands" src="documentation/screenshots/adhoc_commands.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Browse" src="documentation/screenshots/adhoc_browse.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Add" src="documentation/screenshots/adhoc_add.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Edit bookmark" src="documentation/screenshots/adhoc_edit.jpg" width="200px"/>
|
||||
<img alt="Ad-Hoc: Seach" width="200px" src="documentation/screenshots/adhoc_search.jpg"/>
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# BukuBot: Chat Bot Bookmark Manager for XMPP
|
||||
# Slixmark: The XMPP Bookmark Manager
|
||||
# Copyright (C) 2024 Schimon Zackary
|
||||
# This file is part of BukuBot.
|
||||
# This file is part of Slixmark.
|
||||
# See the file LICENSE for copying permission.
|
||||
|
||||
import buku
|
|
@ -1,3 +0,0 @@
|
|||
from bukubot.version import __version__, __version_info__
|
||||
|
||||
print('BukuBot', __version__)
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 104 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
@ -46,6 +46,18 @@ Homepage = "http://bukubot.i2p/"
|
|||
Repository = "https://git.xmpp-it.net/sch/BukuBot"
|
||||
Issues = "https://codeberg.org/sch/BukuBot/issues"
|
||||
|
||||
|
||||
[project.optional-dependencies]
|
||||
file-export = ["html2text", "pdfkit", "xml2epub"]
|
||||
proxy = ["pysocks"]
|
||||
readability = ["readability-lxml"]
|
||||
|
||||
# This section returns pep508-identifier error
|
||||
# [project.optional-dependencies]
|
||||
# "export as markdown" = ["html2text"]
|
||||
# "export as pdf" = ["pdfkit"]
|
||||
# "readable html" = ["readability-lxml"]
|
||||
|
||||
# [project.readme]
|
||||
# text = "BukuBot is a bookmark manager bot using buku. This program is primarily designed for XMPP"
|
||||
|
||||
|
@ -54,6 +66,5 @@ bukubot = "bukubot.__main__:main"
|
|||
|
||||
[tool.setuptools]
|
||||
platforms = ["any"]
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]
|
||||
|
|