]> git.aero2k.de Git - urlbot-v3.git/commit
migrate to PEP-621, add some tests, refactor some things
authorThorsten <mail@aero2k.de>
Fri, 19 Apr 2024 14:27:52 +0000 (16:27 +0200)
committerThorsten <mail@aero2k.de>
Fri, 19 Apr 2024 14:27:52 +0000 (16:27 +0200)
commit14198d47fb4febb26d21d7dbd3b6fa29d80c6794
tree753c87c690ac5fb18051811911ffac959576a9f6
parentc2423ba21484aa86a8c4c13dbaf131209fcdbfb3
migrate to PEP-621, add some tests, refactor some things
45 files changed:
LICENSE [new file with mode: 0644]
distbot/plugins/openai.py [deleted file]
pyproject.toml [new file with mode: 0644]
setup.py [deleted file]
src/distbot/__init__.py [moved from distbot/__init__.py with 100% similarity]
src/distbot/bot/__init__.py [moved from distbot/bot/__init__.py with 100% similarity]
src/distbot/bot/action_worker.py [moved from distbot/bot/action_worker.py with 100% similarity]
src/distbot/bot/bot.py [moved from distbot/bot/bot.py with 92% similarity]
src/distbot/bot/worker.py [moved from distbot/bot/worker.py with 95% similarity]
src/distbot/common/__init__.py [moved from distbot/common/__init__.py with 100% similarity]
src/distbot/common/action.py [moved from distbot/common/action.py with 100% similarity]
src/distbot/common/config.py [moved from distbot/common/config.py with 98% similarity]
src/distbot/common/config/local_config.ini.spec [moved from distbot/common/config/local_config.ini.spec with 100% similarity]
src/distbot/common/config/persistent_config.ini.spec [moved from distbot/common/config/persistent_config.ini.spec with 100% similarity]
src/distbot/common/message.py [moved from distbot/common/message.py with 97% similarity]
src/distbot/common/utils.py [moved from distbot/common/utils.py with 100% similarity]
src/distbot/doc/README.md [moved from distbot/doc/README.md with 100% similarity]
src/distbot/minijobber/__init__.py [moved from distbot/minijobber/__init__.py with 100% similarity]
src/distbot/minijobber/run.py [moved from distbot/minijobber/run.py with 98% similarity]
src/distbot/plugins/__init__.py [moved from distbot/plugins/__init__.py with 100% similarity]
src/distbot/plugins/basic.py [moved from distbot/plugins/basic.py with 88% similarity]
src/distbot/plugins/bofh.py [moved from distbot/plugins/bofh.py with 100% similarity]
src/distbot/plugins/bots.py [moved from distbot/plugins/bots.py with 100% similarity]
src/distbot/plugins/bugtracker.py [moved from distbot/plugins/bugtracker.py with 100% similarity]
src/distbot/plugins/debug.py [moved from distbot/plugins/debug.py with 100% similarity]
src/distbot/plugins/didyouknow.py [moved from distbot/plugins/didyouknow.py with 100% similarity]
src/distbot/plugins/extended.py [moved from distbot/plugins/extended.py with 100% similarity]
src/distbot/plugins/feeds.py [moved from distbot/plugins/feeds.py with 100% similarity]
src/distbot/plugins/fun.py [moved from distbot/plugins/fun.py with 97% similarity]
src/distbot/plugins/insults.txt [moved from distbot/plugins/insults.txt with 100% similarity]
src/distbot/plugins/lookup.py [moved from distbot/plugins/lookup.py with 100% similarity]
src/distbot/plugins/meta.py [moved from distbot/plugins/meta.py with 100% similarity]
src/distbot/plugins/morse.py [moved from distbot/plugins/morse.py with 100% similarity]
src/distbot/plugins/muc.py [moved from distbot/plugins/muc.py with 96% similarity]
src/distbot/plugins/openai.py [new file with mode: 0644]
src/distbot/plugins/plugin_help.py [moved from distbot/plugins/plugin_help.py with 100% similarity]
src/distbot/plugins/queue_management.py [moved from distbot/plugins/queue_management.py with 100% similarity]
src/distbot/plugins/searx.py [moved from distbot/plugins/searx.py with 100% similarity]
src/distbot/plugins/translation.py [moved from distbot/plugins/translation.py with 100% similarity]
src/distbot/plugins/url.py [moved from distbot/plugins/url.py with 100% similarity]
src/distbot/plugins/youtube.py [moved from distbot/plugins/youtube.py with 100% similarity]
tests/test_integration/bot_test_utils.py [new file with mode: 0644]
tests/test_integration/conftest.py [new file with mode: 0644]
tests/test_integration/test_plugins.py
tests/test_integration/test_translation.py