Minor changes to setup.py for PyPi release

This commit is contained in:
Jarvis Schultz 2018-09-06 16:17:29 -05:00
parent d431e7b9a1
commit 2b73d76661
2 changed files with 15 additions and 1 deletions

View File

@ -1,2 +1,2 @@
__version__ = '1.0.0' __version__ = '1.0.1'

View File

@ -2,6 +2,18 @@ from setuptools import setup
exec(open('modern_robotics/__version__.py').read()) 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( setup(
name = "modern_robotics", name = "modern_robotics",
version = __version__, version = __version__,
@ -9,6 +21,8 @@ setup(
author_email = "huanweng@u.northwestern.edu", author_email = "huanweng@u.northwestern.edu",
description = ("Modern Robotics: Mechanics, Planning, and Control: Code Library"), description = ("Modern Robotics: Mechanics, Planning, and Control: Code Library"),
license = "MIT", license = "MIT",
long_description = long_description,
long_description_content_type='text/markdown',
keywords = "kinematics robotics dynamics", keywords = "kinematics robotics dynamics",
url = "http://modernrobotics.org/", url = "http://modernrobotics.org/",
packages=['modern_robotics'], packages=['modern_robotics'],