-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python3
from io import open
from setuptools import setup, find_packages
def read(filename):
with open(filename, encoding='utf-8') as file:
return file.read()
setup(name='tgbotapi',
version='6.0.0',
description='Telegram Bot API Framework',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Mustafa Asaad',
author_email='[email protected]',
url='https://github.com/MA24th/tgbotapi',
packages=find_packages(),
classifiers=[
'Topic :: Software Development',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: English'],
license='GPLv2',
keywords='telegram-bot-api, tgbotapi, framework, telegram bot api, bot api',
install_requires=['requests'],
)