python-monorepo
python-monorepo copied to clipboard
Example of scaffolding and tooling for a Python based monorepo
# Problems Currently, docker deployment is using wheel for installing libs and dependency. If the dependency is small and easy, the current workflow is still fine but using wheel rather...
If you have `svc/A`, `libs/a`, `libs/b` and `A` depends on both `a` and `b`, and `b` depends on `a`, installing `b` via the dockerfiles in this repo (the wheel output...
When running make clean --> the service_one dep/.whl is not removed. Is the make clean command supposed to include the following? ~~~ clean: -rm $(WHEELS) $(BUILD_DIR)/dist/*.whl $(BUILD_DIR)/dist/deps/*.whl ~~~