-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 814 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (21 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name = 'tgflow',
packages = ['tgflow',
'tgflow.api',
'tgflow.api.whatsapp',
'tgflow.actions',
'tgflow.modules',
],
version = '0.4.2',
description = 'A declarative-style telegram bot framework',
author = 'Danil Lykov',
author_email = 'lkvdan@gmail.com',
url = 'https://github.com/DaniloZZZ/tgflow',
download_url = 'https://github.com/DaniloZZZ/tgflow/archive/0.1.tar.gz',
install_requires=['pyTelegramBotAPI', 'gspread', 'oauth2client', 'requests', 'bitrix24-python3-client'],
python_requires='>=3.3',
license='MIT',
keywords = ['tools', 'telegram', 'framework', 'bot'], # arbitrary keywords
classifiers = [],
)