Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DOC: Improve Python package information.
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 14dc505 commit d993d6f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Expand Up @@ -20,12 +20,12 @@
package_dir={'itk': 'itk'},
download_url=r'https://github.com/InsightSoftwareConsortium/ITKMeshNoise',
description=r'Classes to perturb mesh objects with Gaussian noise',
long_description='ITKMeshNoise provides classes to perturb mesh objects'
long_description='itk-meshnoise provides classes to perturb mesh objects '
'with Gaussian noise.\n'
'Please refer to:'
'Vigneault D.,'
'Perturbing Mesh Vertices with Additive Gaussian Noise, '
'Insight Journal, http://hdl.handle.net/10380/3567, 2016.',
'Please refer to:\n'
'Vigneault D., '
'"Perturbing Mesh Vertices with Additive Gaussian Noise", '
'Insight Journal, January-December 2016, http://hdl.handle.net/10380/3567.',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
Expand All @@ -46,7 +46,7 @@
"Operating System :: MacOS"
],
license='Apache',
keywords='ITK InsightToolkit mesh noise',
keywords='ITK InsightToolkit Mesh Noise',
url=r'https://github.com/InsightSoftwareConsortium/ITKMeshNoise',
install_requires=[
r'itk'
Expand Down

0 comments on commit d993d6f

Please sign in to comment.