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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,11 @@ logs/
*.log.*

# AI Agent stuff
AGENTS.md
CLAUDE.md
.clinerules
.cursorrules
.windsurfrules
NOTES.md
AGENTS.md
.claude/
.codex/
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.10
rev: v0.15.13
hooks:
- id: ruff
args: ["--output-format=concise"]
Expand All @@ -20,7 +20,7 @@ repos:
name: "format with ruff"

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.0 # Use the sha / tag you want to point at
rev: v2.1.0 # Use the sha / tag you want to point at
hooks:
- id: mypy
name: "run mypy"
Expand All @@ -31,7 +31,7 @@ repos:

- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.11.6
rev: 0.11.14
hooks:
# Update the uv lockfile
- id: uv-lock
Expand Down
306 changes: 0 additions & 306 deletions CODE_REVIEW.md

This file was deleted.

13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.8.0"
description = "Run 'api-admin custom metadata' to change this information."
authors = [{ name = "Grant Ramsay", email = "seapagan@gmail.com" }]
license = "MIT"
license-files = ["LICENSE.txt"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Private :: Do Not Upload"]
Expand Down Expand Up @@ -41,14 +42,12 @@ dependencies = [
api-admin = "app.api_admin:app"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["uv_build>=0.11.14,<0.12.0"]
build-backend = "uv_build"

[tool.hatch.build.targets.sdist]
packages = ["app"]

[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.uv.build-backend]
module-root = ""
module-name = "app"

[dependency-groups]
dev = [
Expand Down
Loading
Loading