We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43483a1 commit 5e4a769Copy full SHA for 5e4a769
setup.py
@@ -114,12 +114,12 @@ def run(self):
114
print("removing {}".format(path))
115
116
117
-class Build(Command):
118
- description = "Build Pyrogram files"
+class Generate(Command):
+ description = "Generate Pyrogram files"
119
120
user_options = [
121
- ("api", None, "Build API files"),
122
- ("docs", None, "Build docs files"),
+ ("api", None, "Generate API files"),
+ ("docs", None, "Generate docs files")
123
]
124
125
def __init__(self, dist, **kw):
@@ -191,6 +191,6 @@ def run(self):
191
extras_require={"tgcrypto": ["tgcrypto>=1.0.4"]},
192
cmdclass={
193
"clean": Clean,
194
- "build": Build,
+ "generate": Generate
195
}
196
)
0 commit comments