Minor changes to setup.py for PyPi release
This commit is contained in:
parent
d431e7b9a1
commit
2b73d76661
|
|
@ -1,2 +1,2 @@
|
|||
|
||||
__version__ = '1.0.0'
|
||||
__version__ = '1.0.1'
|
||||
|
|
|
|||
|
|
@ -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'],
|
||||
|
|
|
|||
Loading…
Reference in New Issue