Compare commits

...

2 commits

Author SHA1 Message Date
Schimon Jehudah, Adv.
440da124c0 Remove unused files. 2024-05-31 12:24:06 +03:00
Schimon Jehudah, Adv.
6aa270c274 Refactor file structure. 2024-05-31 12:18:59 +03:00
16 changed files with 12 additions and 20 deletions

View file

@ -25,12 +25,12 @@ BukuBot is primarily designed for XMPP (aka Jabber), yet it is built to be exten
BukuBot as appears with Cheogram. BukuBot as appears with Cheogram.
<img alt="Chat: Search" src="documentation/screenshots/chat_search.jpg" width="200px"/> <img alt="Chat: Search" src="bukubot/documentation/screenshots/chat_search.jpg" width="200px"/>
<img alt="Ad-Hoc: Commands" src="documentation/screenshots/adhoc_commands.jpg" width="200px"/> <img alt="Ad-Hoc: Commands" src="bukubot/documentation/screenshots/adhoc_commands.jpg" width="200px"/>
<img alt="Ad-Hoc: Browse" src="documentation/screenshots/adhoc_browse.jpg" width="200px"/> <img alt="Ad-Hoc: Browse" src="bukubot/documentation/screenshots/adhoc_browse.jpg" width="200px"/>
<img alt="Ad-Hoc: Add" src="documentation/screenshots/adhoc_add.jpg" width="200px"/> <img alt="Ad-Hoc: Add" src="bukubot/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: Edit bookmark" src="bukubot/documentation/screenshots/adhoc_edit.jpg" width="200px"/>
<img alt="Ad-Hoc: Seach" width="200px" src="documentation/screenshots/adhoc_search.jpg"/> <img alt="Ad-Hoc: Seach" width="200px" src="bukubot/documentation/screenshots/adhoc_search.jpg"/>
## Getting Started ## Getting Started

3
bukubot/__init__.py Normal file
View file

@ -0,0 +1,3 @@
from bukubot.version import __version__, __version_info__
print('BukuBot', __version__)

View file

@ -1,8 +1,8 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Slixmark: The XMPP Bookmark Manager # BukuBot: Chat Bot Bookmark Manager for XMPP
# Copyright (C) 2024 Schimon Zackary # Copyright (C) 2024 Schimon Zackary
# This file is part of Slixmark. # This file is part of BukuBot.
# See the file LICENSE for copying permission. # See the file LICENSE for copying permission.
import buku import buku

View file

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View file

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View file

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View file

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

View file

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 51 KiB

View file

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

View file

@ -46,18 +46,6 @@ Homepage = "http://bukubot.i2p/"
Repository = "https://git.xmpp-it.net/sch/BukuBot" Repository = "https://git.xmpp-it.net/sch/BukuBot"
Issues = "https://codeberg.org/sch/BukuBot/issues" 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] # [project.readme]
# text = "BukuBot is a bookmark manager bot using buku. This program is primarily designed for XMPP" # text = "BukuBot is a bookmark manager bot using buku. This program is primarily designed for XMPP"
@ -66,5 +54,6 @@ bukubot = "bukubot.__main__:main"
[tool.setuptools] [tool.setuptools]
platforms = ["any"] platforms = ["any"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"] "*" = ["*.ini", "*.csv", "*.toml", "*.svg"]