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