expose pkgmgr.cli for Python 3.13 compatibility - Add `.nix-dev-installed` to .gitignore - Improve flake.nix: * unify pkgs/pyPkgs definitions * provide python311.withPackages including pip + PyYAML * remove unused pkgmgrPkg reference from devShell * fix PYTHONPATH export and devShell help message - Update unit/integration test scripts to use `python3 -m unittest` - Add top-level pkgmgr.__init__ exposing `cli` attribute for pkgutil.resolve_name compatibility under Python 3.13+
33 lines
355 B
Plaintext
33 lines
355 B
Plaintext
|
|
# Prevents unwanted files from being committed to version control.
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
.venvs/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/*
|
|
*.egg-info/
|
|
package-manager-*
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Nix Cache to speed up tests
|
|
.nix/
|
|
.nix-dev-installed
|
|
|
|
# Ignore logs
|
|
*.log
|