mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-29 05:18:10 +00:00
Merge branch 'master' into docs
This commit is contained in:
commit
0c931e3f9b
11
README.rst
11
README.rst
@ -117,7 +117,6 @@ Usage
|
|||||||
That's all you need for getting started with Pyrogram. For more detailed information,
|
That's all you need for getting started with Pyrogram. For more detailed information,
|
||||||
please refer to the documentation:
|
please refer to the documentation:
|
||||||
|
|
||||||
- Wiki: `Introduction`_.
|
|
||||||
- Docs: https://docs.pyrogram.ml.
|
- Docs: https://docs.pyrogram.ml.
|
||||||
|
|
||||||
Development
|
Development
|
||||||
@ -135,9 +134,7 @@ functions.
|
|||||||
Documentation
|
Documentation
|
||||||
=============
|
=============
|
||||||
|
|
||||||
- Pyrogram's API documentation at https://docs.pyrogram.ml.
|
- The entire Pyrogram's documentation resides at https://docs.pyrogram.ml.
|
||||||
- Guides and examples can be found on the `Wiki`_.
|
|
||||||
|
|
||||||
|
|
||||||
Contribution
|
Contribution
|
||||||
============
|
============
|
||||||
@ -172,8 +169,6 @@ License
|
|||||||
|
|
||||||
.. _`Layer 74`: compiler/api/source/main_api.tl
|
.. _`Layer 74`: compiler/api/source/main_api.tl
|
||||||
|
|
||||||
.. _`Wiki`: https://github.com/pyrogram/pyrogram/wiki
|
|
||||||
|
|
||||||
.. _`your own`: https://github.com/pyrogram/pyrogram/wiki/Getting-Started#api-keys
|
.. _`your own`: https://github.com/pyrogram/pyrogram/wiki/Getting-Started#api-keys
|
||||||
|
|
||||||
.. _`Introduction`: https://github.com/pyrogram/pyrogram/wiki/Getting-Started
|
.. _`Introduction`: https://github.com/pyrogram/pyrogram/wiki/Getting-Started
|
||||||
@ -205,10 +200,6 @@ License
|
|||||||
Download
|
Download
|
||||||
</a>
|
</a>
|
||||||
•
|
•
|
||||||
<a href="https://github.com/pyrogram/pyrogram/wiki">
|
|
||||||
Wiki
|
|
||||||
</a>
|
|
||||||
•
|
|
||||||
<a href="https://docs.pyrogram.ml">
|
<a href="https://docs.pyrogram.ml">
|
||||||
Documentation
|
Documentation
|
||||||
</a>
|
</a>
|
||||||
|
5
setup.py
5
setup.py
@ -23,12 +23,13 @@ from setuptools import setup
|
|||||||
|
|
||||||
from compiler.api import compiler as api_compiler
|
from compiler.api import compiler as api_compiler
|
||||||
from compiler.error import compiler as error_compiler
|
from compiler.error import compiler as error_compiler
|
||||||
from compiler.docs import compiler as docs_compiler
|
|
||||||
|
# from compiler.docs import compiler as docs_compiler
|
||||||
|
|
||||||
if len(argv) > 1 and argv[1] != "sdist":
|
if len(argv) > 1 and argv[1] != "sdist":
|
||||||
api_compiler.start()
|
api_compiler.start()
|
||||||
error_compiler.start()
|
error_compiler.start()
|
||||||
docs_compiler.start()
|
# docs_compiler.start()
|
||||||
|
|
||||||
# PyPI doesn't like raw html
|
# PyPI doesn't like raw html
|
||||||
with open("README.rst", encoding="UTF-8") as f:
|
with open("README.rst", encoding="UTF-8") as f:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user