mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 14:04:51 +00:00
PyroFork: Update README.md and setup,py
Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
parent
113788079e
commit
f0ce841985
2 changed files with 13 additions and 12 deletions
|
|
@ -53,10 +53,11 @@ If you'd like to support Pyrogram, you can consider:
|
||||||
### Installing
|
### Installing
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
pip3 install git+https://github.com/Mayuri-Chan/pyrofork.git@dev/pyrofork
|
pip3 install pyrofork
|
||||||
```
|
```
|
||||||
|
|
||||||
### Resources
|
### Resources
|
||||||
|
|
||||||
- Check out the docs at https://pyrofork.mayuri.my.id to learn more about PyroFork, get started right
|
- Check out the docs at https://pyrofork.mayuri.my.id to learn more about PyroFork, get started right
|
||||||
away and discover more in-depth material for building your client applications.
|
away and discover more in-depth material for building your client applications.
|
||||||
|
|
||||||
|
|
|
||||||
22
setup.py
22
setup.py
|
|
@ -1,20 +1,21 @@
|
||||||
# Pyrogram - Telegram MTProto API Client Library for Python
|
# PyroFork - Telegram MTProto API Client Library for Python
|
||||||
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
||||||
|
# Copyright (C) 2023 wulan17 <https://github.com/wulan17>
|
||||||
#
|
#
|
||||||
# This file is part of Pyrogram.
|
# This file is part of PyroFork.
|
||||||
#
|
#
|
||||||
# Pyrogram is free software: you can redistribute it and/or modify
|
# PyroFork is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Lesser General Public License as published
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# by the Free Software Foundation, either version 3 of the License, or
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# Pyrogram is distributed in the hope that it will be useful,
|
# PyroFork is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU Lesser General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
# along with PyroFork. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from sys import argv
|
from sys import argv
|
||||||
|
|
@ -43,8 +44,8 @@ setup(
|
||||||
description="Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
|
description="Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots",
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/Mayuri-Chan/pyrogram",
|
url="https://github.com/Mayuri-Chan/pyrofork",
|
||||||
download_url="https://github.com/Mayuri-Chan/pyrogram/releases/latest",
|
download_url="https://github.com/Mayuri-Chan/pyrofork/releases/latest",
|
||||||
author="wulan17",
|
author="wulan17",
|
||||||
author_email="mayuri@mayuri.my.id",
|
author_email="mayuri@mayuri.my.id",
|
||||||
license="LGPLv3",
|
license="LGPLv3",
|
||||||
|
|
@ -73,10 +74,9 @@ setup(
|
||||||
],
|
],
|
||||||
keywords="telegram chat messenger mtproto api client library python",
|
keywords="telegram chat messenger mtproto api client library python",
|
||||||
project_urls={
|
project_urls={
|
||||||
"Tracker": "https://github.com/Mayuri-Chan/pyrogram/issues",
|
"Tracker": "https://github.com/Mayuri-Chan/pyrofork/issues",
|
||||||
"Community": "",
|
"Source": "https://github.com/Mayuri-Chan/pyrofork",
|
||||||
"Source": "https://github.com/Mayuri-Chan/pyrogram",
|
"Documentation": "https://pyrofork.mayuri.my.id",
|
||||||
"Documentation": "https://docs.pyrogram.org",
|
|
||||||
},
|
},
|
||||||
python_requires="~=3.7",
|
python_requires="~=3.7",
|
||||||
package_data={
|
package_data={
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue