From 8d406d928f1ba71fa0038b63eec14f62272351c8 Mon Sep 17 00:00:00 2001 From: Daniel Lenski Date: Sun, 1 Mar 2020 21:43:00 -0800 Subject: [PATCH] =?UTF-8?q?fix=20reference=20link,=20`cli`=20=E2=86=92=20`?= =?UTF-8?q?=5F=5Fmain=5F=5F`,=20call=20it=20v0.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- setup.py | 4 ++-- vipaccess/{cli.py => __main__.py} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename vipaccess/{cli.py => __main__.py} (100%) diff --git a/README.md b/README.md index 76669df..a889acc 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This is a fork of [**`cyrozap/python-vipaccess`**](https://github.com/dlenski/py real difference between them, but some clients require one or the other specifically. There are also some rarer token types/prefixes which can be generated if necessary - ([reference list from Symantec](https://support.symantec.com/en_US/article.TECH239895.html)) + ([reference list from Symantec](https://support.symantec.com/us/en/article.tech239895.html) - Command-line utility is expanded to support *both* token provisioning (creating a new token) and emitting codes for an existing token (inspired by the command-line interface of diff --git a/setup.py b/setup.py index 631ddd6..4d9038c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='python-vipaccess', - version='0.11', + version='0.12', description="A free software implementation of Symantec's VIP Access application and protocol", long_description=description, url='https://github.com/dlenski/python-vipaccess', @@ -39,7 +39,7 @@ ], entry_points={ 'console_scripts': [ - 'vipaccess=vipaccess.cli:main', + 'vipaccess=vipaccess.__main__:main', ], }, test_requires=[ diff --git a/vipaccess/cli.py b/vipaccess/__main__.py similarity index 100% rename from vipaccess/cli.py rename to vipaccess/__main__.py