Initial import

This commit is contained in:
2023-04-15 20:35:47 -03:00
commit ee43cc02de
37 changed files with 6842 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
STL_FILES = base.stl hinged_lid.stl simple_lid.stl tandy_lid.stl
all: $(STL_FILES) lint
%.stl: %.py dimensions.py utils.py components/*py
python $<
lint: .lint
.lint: **.py
flake8
touch .lint