Relaxation of Molecular Charges - v0.0.1

This commit is contained in:
2022-08-12 09:17:37 -03:00
parent ab996196d4
commit 6fcdb0919f
9 changed files with 274 additions and 289 deletions

17
setup.py Normal file → Executable file
View File

@@ -22,7 +22,7 @@ parser.add_argument(
dest="clean",
default=False,
action="store_true",
help="Cleans the Development Environment",
help="Cleans the Development Environment"
)
args = parser.parse_args()
@@ -37,9 +37,18 @@ def __build():
def __clean():
shutil.rmtree("build")
shutil.rmtree("dist")
os.remove("diceplayer.spec")
try:
shutil.rmtree("build")
shutil.rmtree("dist")
os.remove("diceplayer.spec")
except:
print("Workspace clean.")
if __name__ == "__main__":