CallMeByYourBot/setup.py

17 lines
486 B
Python
Raw Permalink Normal View History

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