From 4b49246774a867e558e99bf43ffe266d746aed11 Mon Sep 17 00:00:00 2001 From: nlscc <66028747+nlscc@users.noreply.github.com> Date: Wed, 7 Oct 2020 17:56:36 +0100 Subject: improve CLI and cleanup code - switch to argparse, improve argument parsing - fix error when resuming a file that was already downloaded - cleanup code - bump version number --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7392e34..bd89cc0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="samloader", - version="0.1", + version="0.2", author="nlscc", author_email="dontsendmailhere@example.com", description="A tool to download firmware for Samsung phones.", @@ -20,11 +20,10 @@ setuptools.setup( ], entry_points={ "console_scripts": [ - "samloader = samloader.main:cli", + "samloader = samloader.main:main", ], }, install_requires=[ - "click", "clint", "pycryptodome", "requests" -- cgit v1.2.3