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