mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-08-14 06:06:33 -05:00
Fix setup to clean properly as well as install correct typing libraries.
This commit is contained in:
@@ -7,6 +7,12 @@ Requests
|
||||
mysqlclient
|
||||
passlib
|
||||
mypy
|
||||
typing-extensions
|
||||
types-python-dateutil
|
||||
types-requests
|
||||
types-PyYAML
|
||||
types-Werkzeug
|
||||
types-Flask
|
||||
flake8
|
||||
typed-ast
|
||||
freezegun
|
||||
|
||||
2
setup.py
2
setup.py
@@ -168,7 +168,7 @@ class CleanExtCommand(Command):
|
||||
def run(self) -> None:
|
||||
print("Removing build directory...")
|
||||
shutil.rmtree(os.path.abspath("build/"), ignore_errors=True)
|
||||
for dirname, subdirList, fileList in os.walk(os.path.abspath("bemani/")):
|
||||
for dirname, subdirList, fileList in os.walk(os.path.abspath(".")):
|
||||
for filename in fileList:
|
||||
if filename[-3:] == ".so":
|
||||
fullname = os.path.join(dirname, filename)
|
||||
|
||||
Reference in New Issue
Block a user