Setup directory and file structure
This commit is contained in:
parent
4cb72b06e5
commit
0b6dc9ccac
|
@ -1,3 +1,2 @@
|
|||
# plugboard
|
||||
|
||||
Framework for Discord and Matrix bot code-base sharing.
|
||||
## Framework for Discord and Matrix bot code-base sharing.
|
||||
|
|
14
plugboard-chatbot-framework/setup.py
Normal file
14
plugboard-chatbot-framework/setup.py
Normal 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',
|
||||
)
|
0
plugboard-chatbot-framework/tests/test_all.py
Normal file
0
plugboard-chatbot-framework/tests/test_all.py
Normal file
0
plugboard-chatbot-framework/tests/test_discord.py
Normal file
0
plugboard-chatbot-framework/tests/test_discord.py
Normal file
0
plugboard-chatbot-framework/tests/test_matrix.py
Normal file
0
plugboard-chatbot-framework/tests/test_matrix.py
Normal file
Loading…
Reference in a new issue