diff --git a/README.md b/README.md index 46fd2c5..2c6d8c5 100644 --- a/README.md +++ b/README.md @@ -42,12 +42,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.11-py2.py3-none-any.whl` +`pip install ./dist/dicom_anonymizer-1.0.12-py2.py3-none-any.whl` On Windows, if you see a warning message -`'./dist/dicom_anonymizer-1.0.11-py2.py3-none-any.whl' looks like a filename, but the file does not exist`, +`'./dist/dicom_anonymizer-1.0.12-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.11-py2.py3-none-any.whl` +`pip install dicom_anonymizer-1.0.12-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/pyproject.toml b/pyproject.toml index 886926e..95b7c28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dicom_anonymizer" -version = "1.0.11" +version = "1.0.12" authors = [ { name="Laurenn Lam", email="laurenn.lam@kitware.com" }, ]