diff --git a/packages/Python/modern_robotics/__version__.py b/packages/Python/modern_robotics/__version__.py index d0476ec..3ff7e14 100644 --- a/packages/Python/modern_robotics/__version__.py +++ b/packages/Python/modern_robotics/__version__.py @@ -1,2 +1,2 @@ -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/packages/Python/setup.py b/packages/Python/setup.py index f30a845..5ba8aef 100644 --- a/packages/Python/setup.py +++ b/packages/Python/setup.py @@ -2,6 +2,18 @@ from setuptools import setup exec(open('modern_robotics/__version__.py').read()) +long_description = """ +# Modern Robotics: Mechanics, Planning, and Control Code Library + +This package contains the Python code accompanying [_Modern Robotics: +Mechanics, Planning, and Control_](http://modernrobotics.org) (Kevin Lynch +and Frank Park, Cambridge University Press 2017). + +The primary purpose of the provided software is to be easy to read and educational, reinforcing the concepts in the book. The code is optimized neither for efficiency nor robustness. + +For more information, including a user manual, see the [project's GitHub page](https://github.com/NxRLab/ModernRobotics). +""" + setup( name = "modern_robotics", version = __version__, @@ -9,6 +21,8 @@ setup( author_email = "huanweng@u.northwestern.edu", description = ("Modern Robotics: Mechanics, Planning, and Control: Code Library"), license = "MIT", + long_description = long_description, + long_description_content_type='text/markdown', keywords = "kinematics robotics dynamics", url = "http://modernrobotics.org/", packages=['modern_robotics'],