We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b1058 commit 20ec707Copy full SHA for 20ec707
setup.py
@@ -22,6 +22,7 @@
22
from setuptools import setup, find_packages
23
24
from compiler.api import compiler as api_compiler
25
+from compiler.docs import compiler as docs_compiler
26
from compiler.error import compiler as error_compiler
27
28
@@ -32,6 +33,7 @@ def read(file: str) -> list:
32
33
34
if len(argv) > 1 and argv[1] != "sdist":
35
api_compiler.start()
36
+ docs_compiler.start()
37
error_compiler.start()
38
39
with open("pyrogram/__init__.py", encoding="utf-8") as f:
0 commit comments