b58b204a8e
This builds a container image with a simple eavesdrop bot for Matrix. Change-Id: I5304b4ec974b84886ac969b59cfcec8dec2febf9
14 lines
289 B
Python
14 lines
289 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='eavesdrop',
|
|
version='0.0.1',
|
|
packages=find_packages(),
|
|
install_requires=['matrix-nio[e2e]', 'PyYaml'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'eavesdrop = eavesdrop.bot:main',
|
|
]
|
|
}
|
|
)
|