From 9a5640a4dad8c9733f460a011c3ed2e540eccf49 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 1 Jan 2026 11:25:44 +0000 Subject: [PATCH] chore: consolidate project configuration - Remove root py.typed (only stackone_ai/py.typed is needed for PEP 561) - Remove redundant shared-data section from hatch build config - Migrate uv.toml settings to [tool.uv] section in pyproject.toml --- py.typed | 1 - pyproject.toml | 6 +++--- uv.toml | 1 - 3 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 py.typed delete mode 100644 uv.toml diff --git a/py.typed b/py.typed deleted file mode 100644 index 0519ecb..0000000 --- a/py.typed +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 546592b..caac15e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,9 +36,6 @@ packages = ["stackone_ai"] [tool.hatch.build.targets.wheel.force-include] "stackone_ai/py.typed" = "stackone_ai/py.typed" -[tool.hatch.build.targets.wheel.shared-data] -"py.typed" = "py.typed" - [project.optional-dependencies] mcp = [ "mcp>=1.3.0", @@ -115,3 +112,6 @@ output = "coverage/coverage.json" [tool.coverage.html] directory = "coverage/html" + +[tool.uv] +link-mode = "clone" diff --git a/uv.toml b/uv.toml deleted file mode 100644 index 4b6ac9f..0000000 --- a/uv.toml +++ /dev/null @@ -1 +0,0 @@ -link-mode = "clone"