Compare commits

...

13 Commits

Author SHA1 Message Date
0a804d32ef Update setup.py 2024-01-04 00:48:36 +02:00
e3db7eb3e9 Update setup.py 2024-01-04 00:48:23 +02:00
031dbdbbdd Update setup.py 2024-01-04 00:48:04 +02:00
8ff45fa3c6 Update setup.py 2024-01-04 00:35:12 +02:00
9c2a6460e8 Update requirements.txt 2024-01-04 00:34:48 +02:00
PyMaster
a2e713aeee
Update README.md 2023-08-07 19:34:23 +03:00
PyMaster
779af9144b
Update README.md 2022-10-29 10:12:32 +03:00
PyMaster
dd33b6c5e9
Update README.md 2022-10-06 18:29:23 +03:00
PyMaster
4e6a513b46
Create README.md 2022-09-22 15:56:11 +03:00
PyMaster
5148c7226f
Update README.md 2022-09-08 21:48:02 +03:00
PyMaster
74cea1172e
Update README.md 2022-09-01 18:40:29 +03:00
PyMaster
db22fe851f
Update README.md 2022-08-06 15:51:27 +03:00
PyMaster
7d94ce38a2
Update README.md 2022-06-07 15:49:09 +03:00
3 changed files with 36 additions and 40 deletions

View File

@ -7,7 +7,7 @@
[![Downloads](https://pepy.tech/badge/pykeyboard)](https://pepy.tech/project/pykeyboard)
![GitHub](https://img.shields.io/github/license/pystorage/pykeyboard)
<p><h2>🎉 Thank you for 100k downloads 🎉 I love you...🥰</h2></p>
<p><h2>🎉 Thank you for 1M downloads 🎉 I love you...🥰</h2></p>
</div>

View File

@ -1,2 +1 @@
Pyrogram==1.4.0
TgCrypto==1.2.3
pyrogram~=2.3.16

View File

@ -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.7',
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=['pyrofork'],
long_description=long_description,
long_description_content_type='text/markdown',
)