Skip to content

Commit 81bbcd7

Browse files
committed
feat: add picoproject cli to dependencies.
1 parent b883152 commit 81bbcd7

File tree

3 files changed

+336
-1
lines changed

3 files changed

+336
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export/*
1111

1212
# Default
1313
__pycache__/
14+
htmlcov/
15+
.coverage
16+
.coverage.*
1417
.pytest_cache/
1518
.ruff_cache/
1619
.venv

pyproject.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ keywords = ["rpi", "pico", "micropython", "bootstrap", "microdot"]
2626
dependencies = [
2727
"mpremote>=1.24.0",
2828
"mpy-cross>=1.24.0.post2",
29+
"picoproject @ git+https://github.com/andyrids/picoproject",
2930
]
3031

3132
[dependency-groups]
@@ -64,4 +65,7 @@ select = [
6465
convention = "google"
6566

6667
[tool.pytest.ini_options]
67-
addopts = ["--import-mode=importlib"]
68+
addopts = ["--import-mode=importlib"]
69+
70+
[tool.uv.sources]
71+
picoproject = { git = "https://github.com/andyrids/picoproject" }

0 commit comments

Comments
 (0)