mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
8 lines
199 B
Python
8 lines
199 B
Python
#!/usr/bin/env python
|
|
"""The setup and build script for the python-telegram-bot-raw library."""
|
|
|
|
from setuptools import setup
|
|
|
|
from setup import get_setup_kwargs
|
|
|
|
setup(**get_setup_kwargs(raw=True))
|