build: Add env target to setup jupyter and micropython kernel

This commit is contained in:
Laborratte5 2024-05-03 11:48:35 +02:00
parent 745e8bb55b
commit aa5f7c63b5
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02
3 changed files with 1990 additions and 1 deletions

View file

@ -40,3 +40,7 @@ clean:
rm -rf src/__pycache__ rm -rf src/__pycache__
rm -f src/*.pyc rm -f src/*.pyc
rm -f src/*.mpy rm -f src/*.mpy
env:
poetry install
$(VENV) python -m jupyter_micropython_kernel.install

1985
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -12,6 +12,8 @@ python = "^3.12"
adafruit-ampy = "^1.1.0" adafruit-ampy = "^1.1.0"
esptool = "^4.7.0" esptool = "^4.7.0"
mpy-cross = "^1.22.2" mpy-cross = "^1.22.2"
jupyter = "^1.0.0"
jupyter-micropython-kernel = "^0.1.3.2"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]