diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index bb4314bf1..5b2446ab8 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "ValueCell", - "version": "0.1.18", + "version": "0.1.19", "identifier": "com.valuecell.valuecellapp", "build": { "beforeDevCommand": "bun run dev:tauri", @@ -10,12 +10,14 @@ "frontendDist": "../build/client" }, "app": { - "windows": [{ - "title": "ValueCell", - "minWidth": 1300, - "minHeight": 780, - "hiddenTitle": true - }], + "windows": [ + { + "title": "ValueCell", + "minWidth": 1300, + "minHeight": 780, + "hiddenTitle": true + } + ], "security": { "csp": null } diff --git a/python/pyproject.toml b/python/pyproject.toml index 50f8b2ce9..c7631cea3 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "valuecell" -version = "0.1.18" +version = "0.1.19" description = "ValueCell is a community-driven, multi-agent platform for financial applications." readme = "README.md" requires-python = ">=3.12" @@ -44,17 +44,12 @@ dev = [ [dependency-groups] dev = [ - {include-group = "lint"}, - {include-group = "style"}, - {include-group = "test"} -] -lint = [ - "ruff" -] -style = [ - "ruff", - "isort", + { include-group = "lint" }, + { include-group = "style" }, + { include-group = "test" }, ] +lint = ["ruff"] +style = ["ruff", "isort"] test = [ "pytest>=7.4.0", "pytest-cov>=4.1.0", @@ -67,13 +62,7 @@ line-length = 88 indent-width = 4 target-version = "py312" force-exclude = true -exclude = [ - "venv", - "build", - "dist", - "node_modules", - "site-packages", -] +exclude = ["venv", "build", "dist", "node_modules", "site-packages"] [tool.ruff.format] quote-style = "double" @@ -82,9 +71,7 @@ skip-magic-trailing-comma = false line-ending = "auto" [tool.hatch.build.targets.wheel] -include = [ - "valuecell", -] +include = ["valuecell"] exclude = [ "tests/**", "**/tests/**", @@ -95,21 +82,8 @@ exclude = [ ] [tool.pytest.ini_options] -norecursedirs = [ - ".venv", - "venv", - "build", - "dist", - "logs", - "examples", - "docs", -] +norecursedirs = [".venv", "venv", "build", "dist", "logs", "examples", "docs"] [tool.isort] profile = "black" -skip_glob = [ - "tests/**", - "**/tests/**", - "docs/**", - "**/docs/**", -] +skip_glob = ["tests/**", "**/tests/**", "docs/**", "**/docs/**"] diff --git a/python/uv.lock b/python/uv.lock index 120418c1a..34ae8119c 100644 --- a/python/uv.lock +++ b/python/uv.lock @@ -1,5 +1,5 @@ version = 1 -revision = 2 +revision = 3 requires-python = ">=3.12" resolution-markers = [ "python_full_version >= '3.14'", @@ -3638,7 +3638,7 @@ wheels = [ [[package]] name = "valuecell" -version = "0.1.18" +version = "0.1.19" source = { editable = "." } dependencies = [ { name = "a2a-sdk", extra = ["http-server"] },