Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.vscode
.pytest_cache
.ruff_cache
dist/
vectorstore/__pycache__
vectorstore/.pytest_cache
vectorstore/.mypy_cache
Expand Down
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ spell-check:
# Check all code quality aspects
check: format-check lint spell-check

# Build package distributions
build: clean
poetry build

# Publish to PyPI
publish: build
poetry publish --username __token__ --password $(PYPI_TOKEN)

# Show help
help:
@echo "Available targets:"
Expand All @@ -62,4 +70,6 @@ help:
@echo " lint - Run linter"
@echo " spell-check - Check for spelling errors"
@echo " check - Run all code quality checks"
@echo " build - Build package distributions"
@echo " publish - Publish to PyPI"
@echo " help - Show this help message"
Loading