2018-06-15 02:59:05 -07:00
|
|
|
import setuptools
|
2021-06-02 10:02:30 +05:30
|
|
|
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",
|
2021-06-02 10:02:30 +05:30
|
|
|
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
|
|
|
]
|
2020-03-31 12:19:52 -07:00
|
|
|
)
|