FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/python/extractor/setup.py at codeql-cli/v2.26.0 · github/codeql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
codeql
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
10k
Code
Issues
997
Pull requests
455
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql
/
python
/
extractor
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (24 loc) · 917 Bytes
Breadcrumbs
codeql
/
python
/
extractor
/
setup.py
Copy path
File metadata and controls
33 lines (24 loc) · 917 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
27
28
29
30
31
32
33
#!/usr/bin/env python
#This file needs to be able to handle all versions of Python we are likely to encounter
#Which is probably 3.0 and upwards
'''Run buildtools/install.py'''
import
sys
import
os
import
subprocess
from
python_tracer
import
getzipfilename
if
'SEMMLE_DIST'
in
os
.
environ
:
if
'CODEQL_EXTRACTOR_PYTHON_ROOT'
not
in
os
.
environ
:
os
.
environ
[
'CODEQL_EXTRACTOR_PYTHON_ROOT'
]
=
os
.
environ
[
'SEMMLE_DIST'
]
else
:
os
.
environ
[
"SEMMLE_DIST"
]
=
os
.
environ
[
"CODEQL_EXTRACTOR_PYTHON_ROOT"
]
tools
=
os
.
path
.
join
(
os
.
environ
[
'SEMMLE_DIST'
],
"tools"
)
zippath
=
os
.
path
.
join
(
tools
,
getzipfilename
())
sys
.
path
=
[
zippath
]
+
sys
.
path
# these are imported from the zip
from
buildtools
.
discover
import
discover
import
buildtools
.
install
def
main
():
version
,
root
,
requirement_files
=
discover
()
buildtools
.
install
.
main
(
version
,
root
,
requirement_files
)
if
__name__
==
"__main__"
:
main
()
Back
|
FazBrowse Home
|
New Git URL