build with hatchling

This commit is contained in:
Q
2024-07-03 20:48:56 +03:00
parent 21539e31d1
commit 02cf20b170

View File

@@ -34,4 +34,7 @@ tar-TSVFilter: clean ## Create package for TSVFilter
tar-markslider: clean ## Create package for markslider
tar czf markslider.tgz markslider/
hatchling-build: ## Build packages with hatchling
for module in *; do if [ -f $$module/pyproject.toml ]; then cd $$module; hatchling build; cd ..; fi; done