From b64d33dca0c6551ad3571e4ce0b91e3f8d940224 Mon Sep 17 00:00:00 2001 From: wulan17 Date: Sun, 1 Jan 2023 23:21:27 +0700 Subject: [PATCH] PyroFork: rebrand Signed-off-by: wulan17 --- pyrogram/__init__.py | 3 ++- setup.py | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/pyrogram/__init__.py b/pyrogram/__init__.py index 7cb81726..2a5133ec 100644 --- a/pyrogram/__init__.py +++ b/pyrogram/__init__.py @@ -16,7 +16,8 @@ # You should have received a copy of the GNU Lesser General Public License # along with Pyrogram. If not, see . -__version__ = "2.0.70" +__fork_name__ = "PyroFork" +__version__ = "2.1.0" __license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)" __copyright__ = "Copyright (C) 2017-present Dan " diff --git a/setup.py b/setup.py index 2cb7d7f6..9fbb2d1b 100644 --- a/setup.py +++ b/setup.py @@ -38,15 +38,15 @@ if len(argv) > 1 and argv[1] in ["bdist_wheel", "install", "develop"]: errors_compiler.start() setup( - name="Pyrogram", + name="PyroFork", version=version, description="Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots", long_description=readme, long_description_content_type="text/markdown", - url="https://github.com/pyrogram", - download_url="https://github.com/pyrogram/pyrogram/releases/latest", - author="Dan", - author_email="dan@pyrogram.org", + url="https://github.com/Mayuri-Chan/pyrogram", + download_url="https://github.com/Mayuri-Chan/pyrogram/releases/latest", + author="wulan17", + author_email="mayuri@mayuri.my.id", license="LGPLv3", classifiers=[ "Development Status :: 5 - Production/Stable", @@ -73,9 +73,9 @@ setup( ], keywords="telegram chat messenger mtproto api client library python", project_urls={ - "Tracker": "https://github.com/pyrogram/pyrogram/issues", - "Community": "https://t.me/pyrogram", - "Source": "https://github.com/pyrogram/pyrogram", + "Tracker": "https://github.com/Mayuri-Chan/pyrogram/issues", + "Community": "", + "Source": "https://github.com/Mayuri-Chan/pyrogram", "Documentation": "https://docs.pyrogram.org", }, python_requires="~=3.7",