15 lines
509 B
Python
15 lines
509 B
Python
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',
|
|
)
|