CallMeByYourBot/setup.py

17 行
486 B
Python

from setuptools import setup
setup(
name='Call Me By Your Bot',
version='0.2',
packages=['callmebyyourbot'],
url='https://git.depau.eu/Depau/CallMeByYourBot',
license='',
author='Davide Depau',
author_email='davide@depau.eu',
description='A Telegram bot that replies with a picture of Elio when #TeamElio is sent',
install_requires=["DepyTG[asyncio]"],
entry_points={
'console_scripts': ['callmebyyourbot=callmebyyourbot:main'],
}
)