2020-08-03 18:32:53 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='matrix-bot',
|
|
|
|
version='0.1',
|
|
|
|
py_modules=['matrix_bot'],
|
2020-08-04 12:03:56 +02:00
|
|
|
install_requires=['Click', 'matrix-nio[e2e]', 'markdown'],
|
2020-08-03 18:32:53 +02:00
|
|
|
entry_points="""
|
|
|
|
[console_scripts]
|
|
|
|
matrix-bot=matrix_bot.bot:cli
|
2020-08-04 12:03:56 +02:00
|
|
|
matrix-botctl=matrix_bot.botctl:cli
|
2020-08-03 18:32:53 +02:00
|
|
|
""",
|
|
|
|
)
|