17 lines
299 B
Python
17 lines
299 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='matrix-bot',
|
||
|
version='0.1',
|
||
|
py_modules=['matrix_bot'],
|
||
|
install_requires=[
|
||
|
'Click',
|
||
|
'matrix-nio[e2e]',
|
||
|
'markdown'
|
||
|
],
|
||
|
entry_points="""
|
||
|
[console_scripts]
|
||
|
matrix-bot=matrix_bot.bot:cli
|
||
|
""",
|
||
|
)
|