Sources of Telegram bot for cryptopotato chat.
https://t.me/devpotato_bot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
430 B
15 lines
430 B
from setuptools import setup
|
|
|
|
setup(
|
|
name='devpotato-bot',
|
|
version='0.3.5',
|
|
description='Telegram bot for cryptopotato chat',
|
|
packages=['devpotato_bot'],
|
|
python_requires='>=3.6',
|
|
install_requires=['python-telegram-bot>=12.3'],
|
|
author='Vladislav Glinsky',
|
|
author_email='cl0ne@mithril.org.ua',
|
|
url="https://code.nix.org.ua/cl0ne/cryptopotato-bot",
|
|
license='MIT',
|
|
license_file='LICENSE'
|
|
)
|