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]
|
2020-08-05 23:13:23 +02:00
|
|
|
matrix-bot=matrix_bot.cli:cli
|
|
|
|
matrix-send=matrix_bot.cli:send
|
|
|
|
matrix-verify=matrix_bot.cli:verify
|
2020-08-03 18:32:53 +02:00
|
|
|
""",
|
|
|
|
)
|