2018-07-23 08:17:51 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = "modern_robotics",
|
2018-07-24 19:41:57 +00:00
|
|
|
version = "__version__",
|
2018-07-23 08:17:51 +00:00
|
|
|
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",
|
2018-07-30 18:40:46 +00:00
|
|
|
"Intended Audience :: Education",
|
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
|
"Natural Language :: English",
|
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Topic :: Education",
|
|
|
|
|
"Topic :: Scientific/Engineering",
|
2018-07-23 08:17:51 +00:00
|
|
|
],
|
|
|
|
|
install_requires=[
|
2018-07-30 18:40:46 +00:00
|
|
|
'numpy',
|
2018-07-23 08:17:51 +00:00
|
|
|
],
|
|
|
|
|
platforms='Linux, Mac, Windows',
|
|
|
|
|
)
|