Skip to content

Commit

Permalink
DOC: Improve Python package information.
Browse files Browse the repository at this point in the history
Improve Python package information:
- Make the reference in the long description match the package name and
  not the ITK project name.
- Use white spaces to avoid words in two consecutive lines being
  concatenated.
- Prefer ASCII double inverted commas.

Partially addresses:
InsightSoftwareConsortium/ITK#326
  • Loading branch information
jhlegarreta committed Dec 21, 2018
1 parent 9349567 commit 4ca13af
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -20,12 +20,12 @@
package_dir={'itk': 'itk'},
download_url=r'https://github.com/InsightSoftwareConsortium/ITKSplitComponents',
description=r'ITK filters to split a multi-component pixel image into component-wise scalar images',
long_description='ITKSplitComponents provides a class that takes an image'
'with multi-component pixels and outputs a scalar image'
'for each component. This can be useful when examining'
'images of vectors, tensors, et.\n'
long_description='itk-splitcomponents provides a class that takes an image '
'with multi-component pixels and outputs a scalar image '
'for each component. This can be useful when examining '
'images of vectors, tensors, etc.\n'
'Please refer to:\n'
'M. McCormick, An ITK Class that Splits Multi-Component Images.”,'
'M. McCormick, "An ITK Class that Splits Multi-Component Images.", '
'Insight Journal, July-December 2010, http://hdl.handle.net/10380/3230',
classifiers=[
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit 4ca13af

Please sign in to comment.