mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Minor style fixes
This commit is contained in:
parent
ca15778ac8
commit
2a78dff79c
1 changed files with 3 additions and 19 deletions
22
setup.py
22
setup.py
|
|
@ -46,25 +46,9 @@ def get_readme():
|
|||
|
||||
|
||||
class Clean(Command):
|
||||
DIST = [
|
||||
"./build",
|
||||
"./dist",
|
||||
"./Pyrogram.egg-info"
|
||||
]
|
||||
|
||||
API = [
|
||||
"pyrogram/api/errors/exceptions",
|
||||
"pyrogram/api/functions",
|
||||
"pyrogram/api/types",
|
||||
"pyrogram/api/all.py",
|
||||
]
|
||||
|
||||
DOCS = [
|
||||
"docs/source/functions",
|
||||
"docs/source/types",
|
||||
"docs/build"
|
||||
]
|
||||
|
||||
DIST = ["./build", "./dist", "./Pyrogram.egg-info"]
|
||||
API = ["pyrogram/api/errors/exceptions", "pyrogram/api/functions", "pyrogram/api/types", "pyrogram/api/all.py"]
|
||||
DOCS = ["docs/source/functions", "docs/source/types", "docs/build"]
|
||||
ALL = DIST + API + DOCS
|
||||
|
||||
description = "Clean generated files"
|
||||
|
|
|
|||
Loading…
Reference in a new issue