FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AirSim/PythonClient/setup.py at main · microsoft/AirSim · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
microsoft
/
AirSim
Public
Notifications
You must be signed in to change notification settings
Fork
4.9k
Star
18.4k
Code
Issues
683
Pull requests
97
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AirSim
/
PythonClient
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (24 loc) · 824 Bytes
Breadcrumbs
AirSim
/
PythonClient
/
setup.py
Copy path
File metadata and controls
26 lines (24 loc) · 824 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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'
]
)
Back
|
FazBrowse Home
|
New Git URL