gitextract_j4oewo7c/ ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ └── entrypoint.sh ├── .github/ │ └── workflows/ │ └── checks.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── cqgridfinity/ │ ├── __init__.py │ ├── constants.py │ ├── gf_baseplate.py │ ├── gf_box.py │ ├── gf_drawer.py │ ├── gf_helpers.py │ ├── gf_obj.py │ ├── gf_ruggedbox.py │ ├── scripts/ │ │ ├── __init__.py │ │ ├── gridfinitybase.py │ │ ├── gridfinitybox.py │ │ └── ruggedbox.py │ └── shims/ │ ├── README.md │ ├── cqgi_gf_baseplate.py │ ├── cqgi_gf_box.py │ ├── cqgi_gf_drawerspacer.py │ └── cqgi_gf_ruggedbox.py ├── examples/ │ └── demo1.assy ├── partcad.yaml ├── requirements.in ├── requirements.txt ├── setup.py └── tests/ ├── common_test.py ├── test_baseplate.py ├── test_box.py ├── test_rbox.py ├── test_spacer.py └── testfiles/ └── .gitkeep