From a276cbcde580e4b1f886b955599016091e374ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Thu, 20 Dec 2018 21:46:36 -0500 Subject: [PATCH] DOC: Improve Python package information. Improve Python package information: - Replace the generic ITK long description for a description of the package. - Make the URL be the URL of the project in GitHub. - Add kewyowrds. Partially addresses: https://github.com/InsightSoftwareConsortium/ITK/issues/326 --- setup.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 3e3038b..286ac87 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,14 @@ packages=['itk'], package_dir={'itk': 'itk'}, download_url=r'https://github.com/InsightSoftwareConsortium/ITKFixedPointInverseDisplacementField', - description=r'Takes a displacement field as input and computes the displacement field that is its inverse with a simple fixed-point approach.', - long_description='ITK is an open-source, cross-platform library that provides developers with an extensive suite of software tools for image analysis. Developed through extreme programming methodologies, ITK employs leading-edge algorithms for registering and segmenting multidimensional scientific images.', + description=r'Takes a displacement field as input and computes the displacement field that is its inverse.', + long_description='itk-fixedpointinversedisplacementfield takes a ' + 'displacement field as input and computes the ' + 'displacement field that is its inverse with a simple ' + 'fixed-point approach.\n' + 'Please refer to:\n' + 'M. Luethi, "Inverting deformation fields using a fixed point iteration scheme.", ' + 'Insight Journal, July-December 2010, http://hdl.handle.net/10380/3222.', classifiers=[ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", @@ -41,8 +47,8 @@ "Operating System :: MacOS" ], license='Apache', - keywords='ITK InsightToolkit', - url=r'https://itk.org/', + keywords='ITK InsightToolkit Spatial-Transforms', + url=r'https://github.com/InsightSoftwareConsortium/ITKFixedPointInverseDisplacementField', install_requires=[ r'itk' ]