File size: 1,236 Bytes
135a36b 203a301 135a36b 203a301 135a36b 203a301 135a36b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
install: ## [Local development] Upgrade pip, install requirements, install package.
python -m pip install -U pip
python -m pip install -e .
install-dev: ## [Local development] Install test requirements
python -m pip install -r requirements-test.txt
lint: ## [Local development] Run mypy, pylint and black
python -m mypy objaverse_xl
python -m pylint objaverse_xl
python -m black --check objaverse_xl
python -m isort --check-only objaverse_xl
python -m black --check scripts --exclude scripts/rendering/blender-3.2.2-linux-x64/
python -m isort --check-only scripts/**/*.py --skip scripts/rendering/blender-3.2.2-linux-x64/
format: ## [Local development] Auto-format python code using black, don't include blender
python -m isort objaverse_xl
python -m black objaverse_xl
python -m isort scripts/**/*.py --skip scripts/rendering/blender-3.2.2-linux-x64/
python -m black scripts --exclude scripts/rendering/blender-3.2.2-linux-x64/
test: ## [Local development] Run unit tests
python -m pytest -x -s -v tests
.PHONY: help
help: # Run `make help` to get help on the make commands
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' |