forked from Viber/viber-bot-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
11 lines (11 loc) · 402 Bytes
/
Copy pathsetup.py
File metadata and controls
11 lines (11 loc) · 402 Bytes
1
2
3
4
5
6
7
8
9
10
11
fromsetuptoolsimportsetup
exec(open('viberbot/version.py').read())
setup(
name='viberbot',
version=__version__,
packages=['viberbot', 'viberbot.api', 'viberbot.api.viber_requests',
'viberbot.api.messages', 'viberbot.api.messages.data_types'],
install_requires=['future', 'requests'],
tests_require=['pytest'],
url='https://github.com/Viber/viber-bot-python',
)