forked from sourcesimian/aioTelegramBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 714 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name="aioTelegramBot",
version="0.1",
description="TelegramBot Service Framework",
author="Source Simian",
author_email='sourcesimian@users.noreply.github.com',
url='https://github.com/sourcesimian/aioTelegramBot',
download_url="https://github.com/sourcesimian/aioTelegramBot/tarball/v0.1",
license='MIT',
packages=['TelegramBot'],
install_requires=['python-dateutil',
'TelegramBotAPI==0.3.1',
'pyPlugin==0.1.2',
'aiohttp'
],
entry_points={
"console_scripts": [
"telegrambot=TelegramBot.service:main",
]
},
)