/
vasandi
/
AirSim
Обзор
Документация
Войти
/
vasandi
/
AirSim
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
PythonClient/setup.py
26 строк
824 B
Андрей Васильченко
сборка под ubuntu 26.04
08 июл 2026, 10:15
08 июл 2026, 10:15
d53c5a2
Код
Авторство
О чём код?
import setuptools from airsim import __version__ with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="airsim", version=__version__, author="Shital Shah", author_email="shitals@microsoft.com", 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(), license='MIT', classifiers=( "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ), install_requires=[ 'msgpack-rpc-python', 'numpy', 'opencv-contrib-python' ] )