From 8ff45fa3c6b6abbb694ebf9a3328cca70c1aed3a Mon Sep 17 00:00:00 2001 From: Profitroll Date: Thu, 4 Jan 2024 00:35:12 +0200 Subject: [PATCH] Update setup.py --- setup.py | 71 +++++++++++++++++++++++++++----------------------------- 1 file changed, 34 insertions(+), 37 deletions(-) diff --git a/setup.py b/setup.py index 7dd5ae2..8fc9d0b 100644 --- a/setup.py +++ b/setup.py @@ -1,37 +1,34 @@ -from os import path -from setuptools import setup - - -this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: - long_description = f.read() - -setup( - name='pykeyboard', - version='0.1.5', - author='PyMaster', - author_email='', - description='Best Keyboard and Pagination for the Pyrogram Library.', - license='MIT', - classifiers=[ - 'Programming Language :: Python', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - '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', - 'Topic :: Internet', - 'Topic :: Communications', - 'Topic :: Communications :: Chat', - 'Topic :: Software Development :: Libraries', - 'Topic :: Software Development :: Libraries :: Python Modules' - ], - keywords='telegram pyrogram keyboard bot userbot', - url='https://github.com/pystorage/pykeyboard', - packages=['pykeyboard'], - install_requires=['pyrogram', 'tgcrypto'], - long_description=long_description, - long_description_content_type='text/markdown', -) +from os import path +from setuptools import setup + + +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + +setup( + name='pykeyboard', + version='0.1.6', + author='PyMaster', + author_email='', + description='Best Keyboard and Pagination for the Pyrogram Library.', + license='MIT', + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Topic :: Internet', + 'Topic :: Communications', + 'Topic :: Communications :: Chat', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules' + ], + keywords='telegram pyrogram keyboard bot userbot', + url='https://github.com/pystorage/pykeyboard', + packages=['pykeyboard'], + install_requires=['pyrogram', 'tgcrypto'], + long_description=long_description, + long_description_content_type='text/markdown', +)