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.
24 lines
570 B
24 lines
570 B
from setuptools import setup
|
|
|
|
setup(
|
|
name='devpotato-bot',
|
|
version='0.5.3',
|
|
description='Telegram bot for cryptopotato chat',
|
|
packages=['devpotato_bot'],
|
|
|
|
python_requires='>=3.8',
|
|
install_requires=[
|
|
'python-telegram-bot>=12.6',
|
|
'ujson>=3.0.0',
|
|
'cachetools>=4',
|
|
'pytz>=2020.4',
|
|
'SQLAlchemy>=1.3',
|
|
'alembic>=1.4'
|
|
],
|
|
|
|
author='Vladislav Glinsky',
|
|
author_email='cl0ne@mithril.org.ua',
|
|
url="https://code.nix.org.ua/cl0ne/cryptopotato-bot",
|
|
license='MIT',
|
|
license_file='LICENSE'
|
|
)
|