• This project
    • Loading...
  • Sign in

万朱浩 / Venue-Ops

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Venue-Ops
  • LLMTopicDetection_BERTopic
  • Makefile
  • Add BERTopic. · c5c53077
    c5c53077 Browse Files
    戒酒的李白 authored 2025-08-12 19:01:20 +0800
Makefile 380 Bytes
Raw Blame History Permalink
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 29
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