Modern_Robotics/packages/Python/setup.py

23 lines
676 B
Python
Raw Normal View History

from setuptools import setup
setup(
name = "modern_robotics",
2018-07-24 19:41:57 +00:00
version = "__version__",
author = "Huan Weng, Mikhail Todes, Jarvis Schultz, Bill Hunt",
author_email = "huanweng@u.northwestern.edu",
description = ("Modern Robotics: Mechanics, Planning, and Control: Code Library"),
license = "MIT",
keywords = "kinematics robotics dynamics",
url = "http://modernrobotics.org/",
packages=['modern_robotics'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
2018-07-24 19:41:57 +00:00
'numpy'
],
platforms='Linux, Mac, Windows',
)