2018-01-28 00:36:09 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Call Me By Your Bot',
|
|
|
|
version='0.1',
|
|
|
|
packages=['callmebyyourbot'],
|
|
|
|
url='https://github.com/Depaulicious/',
|
|
|
|
license='',
|
|
|
|
author='Davide Depau',
|
|
|
|
author_email='davide@depau.eu',
|
|
|
|
description='A Telegram bot that replies with a picture of Elio when #TeamElio is sent',
|
|
|
|
dependency_links=["https://github.com/Depaulicious/DepyTG/archive/wip.zip"],
|
2018-01-28 00:44:44 +00:00
|
|
|
requires=["DepyTG", "requests"],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['callmebyyourbot=callmebyyourbot:main'],
|
|
|
|
}
|
2018-01-28 00:36:09 +00:00
|
|
|
)
|