11#!/usr/bin/env python
2-
32'''The setup and build script for the python-telegram-bot library.'''
43
54import os
@@ -24,34 +23,32 @@ def requirements():
2423 return requirements_list
2524
2625
27- setup (
28- name = 'python-telegram-bot' ,
29- version = '4.0.3' ,
30- author = 'Leandro Toledo' ,
31- author_email = 'devs@python-telegram-bot.org' ,
32- license = 'LGPLv3' ,
33- url = 'https://github.com/python-telegram-bot/python-telegram-bot' ,
34- keywords = 'python telegram bot api wrapper' ,
35- description = 'A Python wrapper around the Telegram Bot API' ,
36- long_description = (read ('README.rst' )),
37- packages = find_packages (exclude = ['tests*' ]),
38- install_requires = requirements (),
39- include_package_data = True ,
40- classifiers = [
41- 'Development Status :: 5 - Production/Stable' ,
42- 'Intended Audience :: Developers' ,
43- 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)' ,
44- 'Operating System :: OS Independent' ,
45- 'Topic :: Software Development :: Libraries :: Python Modules' ,
46- 'Topic :: Communications :: Chat' ,
47- 'Topic :: Internet' ,
48- 'Programming Language :: Python' ,
49- 'Programming Language :: Python :: 2' ,
50- 'Programming Language :: Python :: 2.6' ,
51- 'Programming Language :: Python :: 2.7' ,
52- 'Programming Language :: Python :: 3' ,
53- 'Programming Language :: Python :: 3.3' ,
54- 'Programming Language :: Python :: 3.4' ,
55- 'Programming Language :: Python :: 3.5' ,
56- ],
57- )
26+ setup (name = 'python-telegram-bot' ,
27+ version = '4.1' ,
28+ author = 'Leandro Toledo' ,
29+ author_email = 'devs@python-telegram-bot.org' ,
30+ license = 'LGPLv3' ,
31+ url = 'https://github.com/python-telegram-bot/python-telegram-bot' ,
32+ keywords = 'python telegram bot api wrapper' ,
33+ description = 'A Python wrapper around the Telegram Bot API' ,
34+ long_description = (read ('README.rst' )),
35+ packages = find_packages (exclude = ['tests*' ]),
36+ install_requires = requirements (),
37+ include_package_data = True ,
38+ classifiers = [
39+ 'Development Status :: 5 - Production/Stable' ,
40+ 'Intended Audience :: Developers' ,
41+ 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)' ,
42+ 'Operating System :: OS Independent' ,
43+ 'Topic :: Software Development :: Libraries :: Python Modules' ,
44+ 'Topic :: Communications :: Chat' ,
45+ 'Topic :: Internet' ,
46+ 'Programming Language :: Python' ,
47+ 'Programming Language :: Python :: 2' ,
48+ 'Programming Language :: Python :: 2.6' ,
49+ 'Programming Language :: Python :: 2.7' ,
50+ 'Programming Language :: Python :: 3' ,
51+ 'Programming Language :: Python :: 3.3' ,
52+ 'Programming Language :: Python :: 3.4' ,
53+ 'Programming Language :: Python :: 3.5' ,
54+ ],)
0 commit comments