Setup directory and file structure

This commit is contained in:
Innovation 2023-07-14 21:59:56 -05:00
parent 4cb72b06e5
commit 0b6dc9ccac
8 changed files with 15 additions and 2 deletions
README.md
plugboard-chatbot-framework

View file

@ -1,3 +1,2 @@
# plugboard
Framework for Discord and Matrix bot code-base sharing.
## Framework for Discord and Matrix bot code-base sharing.

View file

@ -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',
)