We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b29130b commit e26b40dCopy full SHA for e26b40d
setup.py
@@ -38,7 +38,13 @@
38
39
# Do dependency checking
40
package_check('numpy', NUMPY_MIN_VERSION)
41
-package_check('dicom', PYDICOM_MIN_VERSION, optional=True)
+custom_pydicom_messages = {'missing opt': 'Missing optional package "%s"'
42
+ ' provided by package "pydicom"'
43
+}
44
+package_check('dicom',
45
+ PYDICOM_MIN_VERSION,
46
+ optional=True,
47
+ messages = custom_pydicom_messages)
48
extra_setuptools_args = {}
49
if 'setuptools' in sys.modules:
50
extra_setuptools_args = dict(
0 commit comments