1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00
pyTelegramBotAPI/setup.py
2015-06-26 22:52:09 +08:00

14 lines
404 B
Python

#!/usr/bin/env python
from setuptools import setup
setup(name='pyTelegramBotAPI',
version='0.1',
description='Python Telegram bot api. ',
author='eternnoir',
author_email='eternnoir@gmail.com',
url='https://github.com/eternnoir/pyTelegramBotAPI',
packages=['telebot'],
license='GPL2',
keywords='tools',
install_requires=['pytest','requests']
)