Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bazthedev authored Jun 6, 2024
1 parent b73234c commit 73a0504
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
version = "0"
username = ""
reponame = ""
release_file = ""
requirements_file = False
requirements_file_name = ""
files = []
Expand All @@ -21,12 +20,6 @@
if confirm[0].lower() == "y":
break

while True:
release_file = input("What is your release file structure? If your file contains a version string, then use {version} in your answer, e.g. Release_{version}.zip, and the updater will substitute it in: ")
confirm = input(f"Is {release_file} correct? (y/n) ")
if confirm[0].lower() == "y":
break

while True:
_rf = input("Does your program use a requirements.txt file (y/n)? ")
if _rf[0].lower() == "y":
Expand Down Expand Up @@ -57,7 +50,6 @@
upd["version"] = version
upd["uname"] = username
upd["repo"] = reponame
upd["rel_file"] = release_file
upd["req_f"] = requirements_file
upd["req_f_n"] = requirements_file_name
json.dump(upd, u, indent=4)
Expand Down

0 comments on commit 73a0504

Please sign in to comment.