-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install deps for windows based with hashes
- Loading branch information
1 parent
4624ccb
commit 03fb208
Showing
4 changed files
with
146 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
google-api-python-client==1.12.11 | ||
google-auth==2.23.3 | ||
google-cloud-storage==2.13.0 | ||
google-cloud-pubsub==2.18.4 | ||
ipython==7.15.0 | ||
Jinja2==3.1.2 | ||
pexpect==4.8.0 | ||
portpicker==1.6.0b1 | ||
protobuf==4.25.3 | ||
prometheus_client==0.16.0 | ||
pyjwt==2.6.0 | ||
pyOpenSSL==21.0.0 | ||
python-crontab==2.5.1 | ||
python-debian==0.1.49 | ||
Werkzeug==2.1.2 | ||
# TODO: We currently release fleetspeak-server-bin packages | ||
# for Linux only. | ||
fleetspeak-server-bin==0.1.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
set DIR=%~dp0 | ||
|
||
set OUT_FOLDER=%1 | ||
|
||
|
||
mkdir "%OUT_FOLDER%" | ||
|
||
python -m pip install --require-hashes -r "%DIR%\base_tooling_requirements.txt" | ||
|
||
python -m piptools compile --generate-hashes "%DIR%\..\api_client\python\requirements.in" -o "%OUT_FOLDER%\api_client_requirements.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\core\requirements.in" -o "%OUT_FOLDER%\core_requirements.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\server\requirements.in" -o "%OUT_FOLDER%\server_requirements.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\proto\requirements.in" -o "%OUT_FOLDER%\proto_requirements.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\client\requirements.in" -o "%OUT_FOLDER%\client_requirements.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\client\requirements_win.in" -o "%OUT_FOLDER%\client_requirements_win.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\client_builder\requirements.in" -o "%OUT_FOLDER%\client_builder_requirements.txt" | ||
python -m piptools compile --generate-hashes "%DIR%\..\grr\test\requirements.in" -o "%OUT_FOLDER%\test_requirements.txt" | ||
|
||
|