Files
bettafish-company/LLMTopicDetection_BERTopic/Makefile
T
戒酒的李白 c5c530775e Add BERTopic.
2025-08-12 19:01:20 +08:00

30 lines
380 B
Makefile

test:
pytest
coverage:
pytest --cov
format:
ruff format
lint:
ruff check --fix
install:
python -m pip install -e .
install-test:
python -m pip install -e ".[dev]"
docs:
mkdocs serve
pypi:
python -m build
twine upload dist/*
clean:
rm -rf **/.ipynb_checkpoints **/.pytest_cache **/__pycache__ **/**/__pycache__ .ipynb_checkpoints .pytest_cache
check: test clean