diff --git a/README.md b/README.md index 3df5df3..96cf2e1 100644 --- a/README.md +++ b/README.md @@ -73,12 +73,12 @@ The sources files can be packaged by using: `python ./setup.py bdist_wheel` This command will generate a wheel package in `dist` folder which can be then installed as a python package using -`pip install ./dist/dicom_anonymizer-1.0.13-py2.py3-none-any.whl` +`pip install ./dist/dicom_anonymizer-1.0.13-1-py2.py3-none-any.whl` On Windows, if you see a warning message -`'./dist/dicom_anonymizer-1.0.13-py2.py3-none-any.whl' looks like a filename, but the file does not exist`, +`'./dist/dicom_anonymizer-1.0.13-1-py2.py3-none-any.whl' looks like a filename, but the file does not exist`, this could be due to pip not being able to handle relative path (See issue https://github.com/pypa/pip/issues/10808). As a work-around, change directory to `dist` and then install it using -`pip install dicom_anonymizer-1.0.13-py2.py3-none-any.whl` +`pip install dicom_anonymizer-1.0.13-1-py2.py3-none-any.whl` Installing this package will also install an executable named `dicom-anonymizer`. In order to use it, please refer to the next section. diff --git a/setup.py b/setup.py index edc3c71..55aebde 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="dicom_anonymizer", # Required - version="1.0.13", # Required + version="1.0.13-1", # Required author="Laurenn Lam", author_email="laurenn.lam@kitware.com", description="Program to anonymize dicom files with default and custom rules",