diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 19d0cd78d1..0000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -github: delivrance -liberapay: delivrance -open_collective: pyrogram diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 453151d8bd..80d40a188d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -2,7 +2,7 @@ blank_issues_enabled: false contact_links: - name: Ask Pyrogram related questions url: https://stackoverflow.com/questions/tagged/pyrogram - about: This place is only for reporting issues about Pyrogram. You can ask questions at StackOverflow. + about: This place is only for reporting issues about Pyrogram. You can ask questions on StackOverflow. - name: Join the Telegram channel url: https://t.me/pyrogram about: Join the official channel and stay tuned for news, updates and announcements. \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index b1f5bc04f3..395ca54ee9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,11 +1,13 @@ -## Include +# Include files include README.md COPYING COPYING.lesser NOTICE requirements.txt recursive-include compiler *.py *.tl *.tsv *.txt recursive-include tests *.py -## Exclude +# Exclude files +exclude pyrogram/raw/all.py + +# Prune directories prune pyrogram/errors/exceptions prune pyrogram/raw/functions prune pyrogram/raw/types prune pyrogram/raw/base -exclude pyrogram/raw/all.py diff --git a/Makefile b/Makefile index 930d3be406..32f30a8520 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ TAG = v$(shell grep -E '__version__ = ".*"' pyrogram/__init__.py | cut -d\" -f2) RM := rm -rf -.PHONY: venv clean-build clean-api clean api build +.PHONY: venv clean-build clean-api clean api build tag dtag venv: $(RM) $(VENV) diff --git a/README.md b/README.md index 6b904e2987..e250b40668 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
-
+
Telegram MTProto API Framework for Python
@@ -24,6 +24,9 @@
## Pyrogram
+> [!NOTE]
+> The project is no longer maintained or supported. Thanks for appreciating it.
+
> Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
``` python
@@ -44,14 +47,6 @@ app.run()
framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot
identity (bot API alternative) using Python.
-### Support
-
-If you'd like to support Pyrogram, you can consider:
-
-- [Become a GitHub sponsor](https://github.com/sponsors/delivrance).
-- [Become a LiberaPay patron](https://liberapay.com/delivrance).
-- [Become an OpenCollective backer](https://opencollective.com/pyrogram).
-
### Key Features
- **Ready**: Install Pyrogram with pip and start building your applications right away.