mirror of
https://github.com/helblazer811/ManimML.git
synced 2026-03-13 08:41:18 +08:00
9 lines
181 B
Makefile
9 lines
181 B
Makefile
setup:
|
|
conda activate manim; \
|
|
export PROJECT_ROOT=$(pwd)
|
|
checkstyle:
|
|
black .; \
|
|
pydocstyle .
|
|
publish_pip:
|
|
python3 -m build; \
|
|
python3 -m twine upload --repository pypi dist/*
|