refacotor: python packages

This commit is contained in:
Ryan Yin
2025-09-16 10:47:12 +08:00
parent 918403b098
commit d729ca1377
2 changed files with 9 additions and 5 deletions

View File

@@ -36,7 +36,6 @@
devbox
bfg-repo-cleaner # remove large files from git history
k6 # load testing tool
protobuf # protocol buffer compiler
# solve coding extercises - learn by doing
exercism

View File

@@ -63,14 +63,15 @@
vscode-extensions.vadimcn.vscode-lldb.adapter # codelldb - debugger
#-- python
pipx # Install and Run Python Applications in Isolated Environments
uv # python project package manager
pyright # python language server
(python313.withPackages (
ps: with ps; [
# python language server
pyright
ruff
pipx # Install and Run Python Applications in Isolated Environments
black # python formatter
# debugpy
uv # python project package manager
# my commonly used python packages
jupyter
@@ -80,6 +81,10 @@
pyquery
pyyaml
boto3
# misc
protobuf # protocol buffer compiler
numpy
]
))