SIGN IN SIGN UP
microsoft / AirSim UNCLAIMED

Open source simulator for autonomous vehicles built on Unreal Engine / Unity, from Microsoft AI & Research

0 0 42 C++
2018-06-15 02:59:05 -07:00
import setuptools
from airsim import __version__
2018-06-15 02:59:05 -07:00
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="airsim",
version=__version__,
2018-06-15 02:59:05 -07:00
author="Shital Shah",
2018-06-19 06:08:23 -07:00
author_email="shitals@microsoft.com",
2018-06-15 02:59:05 -07:00
description="Open source simulator based on Unreal Engine for autonomous vehicles from Microsoft AI & Research",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/airsim",
packages=setuptools.find_packages(),
2018-06-19 06:08:23 -07:00
license='MIT',
2018-06-15 02:59:05 -07:00
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
2018-06-19 03:10:38 -07:00
install_requires=[
2019-12-01 10:56:45 +11:00
'msgpack-rpc-python', 'numpy', 'opencv-contrib-python'
2018-06-19 03:10:38 -07:00
]
)