Skip to content
Closed
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
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ install_tools: check_uv
@uv tool install ruff --force
@uv tool install ty --force
@uv tool install vulture --force
@uv tool install hatch --force
@echo "$(GREEN)✅Tools installed.$(RESET)"

fmt: install_tools check_jq
Expand Down Expand Up @@ -151,6 +152,20 @@ ty:
ci: ruff vulture ty ## Run all CI checks (ruff, vulture, ty)
@echo "$(GREEN)✅CI checks completed.$(RESET)"

########################################################
# Publishing
########################################################

push:
@echo "$(YELLOW)Building package...$(RESET)"
@uv tool run hatch build
@echo "$(GREEN)✅Package built successfully.$(RESET)"

publish: push
@echo "$(YELLOW)Publishing package to PyPI...$(RESET)"
@uv tool run hatch publish
@echo "$(GREEN)✅Package published successfully.$(RESET)"

########################################################
# Dependencies
########################################################
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "python-template"
name = "miyamura80-demo"
version = "0.1.0"
description = "Add your description here"
authors = [
Expand Down Expand Up @@ -35,7 +35,7 @@ build-backend = "hatchling.build"
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/python_template"]
packages = ["src/miyamura80_demo"]

[tool.vulture]
exclude = [
Expand Down
Empty file.
File renamed without changes.
File renamed without changes.
90 changes: 45 additions & 45 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.