forked from Vector35/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run build within poetry virtual environment.
- Loading branch information
Showing
6 changed files
with
136 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,16 @@ | ||
[tool.poetry] | ||
name = "debugger" | ||
version = "1.0.0" | ||
description = "The official Binary Ninja debugger plugin." | ||
authors = ["Xusheng <[email protected]>"] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
pathlib = "^1.0.1" | ||
pytest = "^8.1.1" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
export PATH=~/.local/bin:$PATH | ||
export PYTHONUNBUFFERED=1 | ||
python3 scripts/build.py "$@" | ||
poetry install --sync --no-root | ||
poetry run python3 scripts/build.py "$@" |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
export PATH=/usr/local/bin:~/Library/Python/3.9/bin:$PATH | ||
export PYTHONUNBUFFERED=1 | ||
python3 scripts/build.py "$@" | ||
poetry install --sync --no-root | ||
poetry run python3 scripts/build.py "$@" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@echo off | ||
set PYTHONUNBUFFERED=1 | ||
|
||
py -3 scripts\build.py %* | ||
poetry install --sync --no-root | ||
poetry run py -3 scripts\build.py %* |