From 0b6dc9ccac1b3e29154b666f32b42dbf3c379804 Mon Sep 17 00:00:00 2001 From: Innovation Date: Fri, 14 Jul 2023 21:59:56 -0500 Subject: [PATCH] Setup directory and file structure --- README.md | 3 +-- .../plugboard-chatbot-framework/__init__.py | 0 .../discord/__init__.py | 0 .../plugboard-chatbot-framework/matrix/__init__.py | 0 plugboard-chatbot-framework/setup.py | 14 ++++++++++++++ plugboard-chatbot-framework/tests/test_all.py | 0 plugboard-chatbot-framework/tests/test_discord.py | 0 plugboard-chatbot-framework/tests/test_matrix.py | 0 8 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 plugboard-chatbot-framework/plugboard-chatbot-framework/__init__.py create mode 100644 plugboard-chatbot-framework/plugboard-chatbot-framework/discord/__init__.py create mode 100644 plugboard-chatbot-framework/plugboard-chatbot-framework/matrix/__init__.py create mode 100644 plugboard-chatbot-framework/setup.py create mode 100644 plugboard-chatbot-framework/tests/test_all.py create mode 100644 plugboard-chatbot-framework/tests/test_discord.py create mode 100644 plugboard-chatbot-framework/tests/test_matrix.py diff --git a/README.md b/README.md index 5acbc80..3155e44 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,2 @@ # plugboard - -Framework for Discord and Matrix bot code-base sharing. \ No newline at end of file +## Framework for Discord and Matrix bot code-base sharing. diff --git a/plugboard-chatbot-framework/plugboard-chatbot-framework/__init__.py b/plugboard-chatbot-framework/plugboard-chatbot-framework/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/plugboard-chatbot-framework/plugboard-chatbot-framework/discord/__init__.py b/plugboard-chatbot-framework/plugboard-chatbot-framework/discord/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/plugboard-chatbot-framework/plugboard-chatbot-framework/matrix/__init__.py b/plugboard-chatbot-framework/plugboard-chatbot-framework/matrix/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/plugboard-chatbot-framework/setup.py b/plugboard-chatbot-framework/setup.py new file mode 100644 index 0000000..52296c6 --- /dev/null +++ b/plugboard-chatbot-framework/setup.py @@ -0,0 +1,14 @@ +from setuptools import find_packages, setup + +setup( + name='plugboard-chatbot-framework', + packages=find_packages(include=['plugboard-chatbot-framework']), + version='0.1.0', + description='Plugboard, a chatbot framework so you only have to write code once.', + author='Innovation Science', + license='GPLv3', + install_requires=['asyncio','matrix-nio','os','ping3','urllib3','configparser'], + setup_requires=['pytest-runner'], + tests_require=['pytest==4.4.1'], + test_suite='tests', +) diff --git a/plugboard-chatbot-framework/tests/test_all.py b/plugboard-chatbot-framework/tests/test_all.py new file mode 100644 index 0000000..e69de29 diff --git a/plugboard-chatbot-framework/tests/test_discord.py b/plugboard-chatbot-framework/tests/test_discord.py new file mode 100644 index 0000000..e69de29 diff --git a/plugboard-chatbot-framework/tests/test_matrix.py b/plugboard-chatbot-framework/tests/test_matrix.py new file mode 100644 index 0000000..e69de29