diff --git a/README.md b/README.md index a3c906a..33fcc35 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ verifySSL: True Launch the prepared Docker image. Docker will automatically download the image if you don't already have it on your system. ```text -docker run -it netapp/astra-toolkits:2.6.2 /bin/bash +docker run -it netapp/astra-toolkits:latest /bin/bash ``` NOTE: From this point forward, you will be working in the Docker container you just launched. diff --git a/setup.py b/setup.py index 013f162..3530335 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,9 @@ setuptools.setup( name="actoolkit", - version="2.6.2", py_modules=["toolkit", "tkParser", "tkHelpers", "astraSDK"], + use_scm_version=True, + setup_requires=['setuptools_scm'], author="Michael Haigh", author_email="Michael.Haigh@netapp.com", description="Toolkit and SDK for interacting with Astra Control",