diff --git a/.gitignore b/.gitignore index 3428d0f..60ff621 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ **/__pycache__/ - + **/node_modules/ target/ .venv/ .idea/ + +.generated_template diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..5986464 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,19 @@ +# Contributing + +Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. + +## Environment setup + +Make sure you have installed `Python`, `uv`, `Node.js` and `pnpm` as documented. + +Also, you need `bash`. If you are on Windows, you can use [Git for Windows](https://gitforwindows.org/). + +```bash +# install dev dependencies and tools +uv sync + +# activate venv +.venv\Scripts\activate + + +``` diff --git a/copier.yaml b/copier.yaml index 9f05df6..598fe79 100644 --- a/copier.yaml +++ b/copier.yaml @@ -1,42 +1,66 @@ _subdirectory: "templates/" project_name: - type: str - help: Project name - default: pytauri-app + type: str + help: Project name + default: pytauri-app package_name: - type: str - default: "{{ project_name | replace('-', '_')}}" - when: false + type: str + default: "{{ project_name | replace('-', '_')}}" + when: false identifier: - type: str - help: Identifier - default: "com.username.{{ project_name }}" + type: str + help: Identifier + default: "com.username.{{ project_name }}" + +with_rust: + type: bool + help: Do you want to use Rust? + default: false template: - type: str - help: Choose your UI template - choices: - Vue: vue - React: react - Svelte: svelte - default: vue + type: str + help: Choose your UI template + choices: + Vue: vue + React: react + Svelte: svelte + default: vue + +frontend_path: + type: str + default: "{% if with_rust == true %}./{% else %}./app/{% endif %}" + when: false _message_after_copy: | - Template created! To get started run: - cd {{ project_name }} - pnpm install - uv venv --python-preference only-system - {%- if _copier_conf.os == "windows" %} - .venv\Scripts\activate - {%- else %} - source .venv/bin/activate - {%- endif %} - uv sync - - For Desktop development, run: - pnpm tauri dev - - For building a standalone app, see the `scripts/` folder. + {% if with_rust == true %} + Template created! To get started run: + cd {{ project_name }} + pnpm install + uv venv --python-preference only-system + {%- if _copier_conf.os == "windows" %} + .venv\Scripts\activate + {%- else %} + source .venv/bin/activate + {%- endif %} + uv sync + + For Desktop development, run: + pnpm tauri dev + + For building a standalone app, see the `scripts/` folder. + {% else %} + Template created! To get started run: + cd {{ project_name }} + pnpm install + pnpm build + uv venv + {%- if _copier_conf.os == "windows" %} + .venv\Scripts\activate + {%- else %} + source .venv/bin/activate + {%- endif %} + uv sync + {% endif %} diff --git a/pyproject.toml b/pyproject.toml index ed8ec9b..b272451 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ dependencies = [ # [build-system] "setuptools >= 80", "setuptools-scm >= 8", + "copier>=9.10.3", ] [tool.uv] diff --git a/scripts/create_copy.py b/scripts/create_copy.py new file mode 100644 index 0000000..392d6b2 --- /dev/null +++ b/scripts/create_copy.py @@ -0,0 +1,21 @@ +import shutil +from pathlib import Path + +from copier import run_copy + +if __name__ == "__main__": + TEMPLATE_DIR = Path(__file__).parent.parent + OUTPUT_DIR = Path(__file__).parent.parent / ".generated_template" / "pytauri-app" + + kwargs = { + "project_name": "pytauri-app", + "identifier": "com.username.pytauri-app", + "template": "vue", + "with_rust": "false", + } + + # Clean up old templates to ensure a new, clean one. + if OUTPUT_DIR.exists(): + shutil.rmtree(OUTPUT_DIR) + + run_copy(str(TEMPLATE_DIR), str(OUTPUT_DIR), vcs_ref="HEAD", data=kwargs) diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/.vscode/extensions.json b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/extensions.json similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/.vscode/extensions.json rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/extensions.json diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/README.md b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/README.md similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/README.md rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/README.md diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/index.html b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/index.html similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/index.html rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/index.html diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/package.json.jinja b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/package.json.jinja similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/package.json.jinja rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/package.json.jinja diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/pytauri.svg b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/pytauri.svg similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/pytauri.svg rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/pytauri.svg diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/python.svg b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/python.svg similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/python.svg rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/python.svg diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/tauri.svg b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/tauri.svg similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/tauri.svg rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/tauri.svg diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/vite.svg b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/vite.svg similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/public/vite.svg rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/vite.svg diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/App.css b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/App.css similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/App.css rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/App.css diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/App.tsx b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/App.tsx similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/App.tsx rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/App.tsx diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/assets/react.svg b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/assets/react.svg similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/assets/react.svg rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/assets/react.svg diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/main.tsx b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/main.tsx similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/main.tsx rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/main.tsx diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/vite-env.d.ts b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/vite-env.d.ts similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/src/vite-env.d.ts rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/vite-env.d.ts diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/tsconfig.json b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.json similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/tsconfig.json rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.json diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/tsconfig.node.json b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.node.json similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/tsconfig.node.json rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.node.json diff --git a/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/vite.config.ts b/templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/vite.config.ts similarity index 100% rename from templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}/vite.config.ts rename to templates/{% if template == 'react' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/vite.config.ts diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/.vscode/extensions.json b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/extensions.json similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/.vscode/extensions.json rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/extensions.json diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/.vscode/settings.json b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/settings.json similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/.vscode/settings.json rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/settings.json diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/README.md b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/README.md similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/README.md rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/README.md diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/package.json.jinja b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/package.json.jinja similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/package.json.jinja rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/package.json.jinja diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/src/app.html b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/app.html similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/src/app.html rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/app.html diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/src/routes/+layout.ts b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/routes/+layout.ts similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/src/routes/+layout.ts rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/routes/+layout.ts diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/src/routes/+page.svelte b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/routes/+page.svelte similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/src/routes/+page.svelte rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/routes/+page.svelte diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/pytauri.svg b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/pytauri.svg similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/pytauri.svg rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/pytauri.svg diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/python.svg b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/python.svg similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/python.svg rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/python.svg diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/svelte.svg b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/svelte.svg similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/svelte.svg rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/svelte.svg diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/tauri.svg b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/tauri.svg similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/tauri.svg rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/tauri.svg diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/vite.svg b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/vite.svg similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/static/vite.svg rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/static/vite.svg diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/svelte.config.js b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/svelte.config.js similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/svelte.config.js rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/svelte.config.js diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/tsconfig.json b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.json similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/tsconfig.json rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.json diff --git a/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/vite.config.js b/templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/vite.config.js similarity index 100% rename from templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}/vite.config.js rename to templates/{% if template == 'svelte' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/vite.config.js diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/.vscode/extensions.json b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/extensions.json similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/.vscode/extensions.json rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/.vscode/extensions.json diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/README.md b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/README.md similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/README.md rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/README.md diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/index.html b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/index.html similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/index.html rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/index.html diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/package.json.jinja b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/package.json.jinja similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/package.json.jinja rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/package.json.jinja diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/pytauri.svg b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/pytauri.svg similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/pytauri.svg rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/pytauri.svg diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/python.svg b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/python.svg similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/python.svg rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/python.svg diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/tauri.svg b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/tauri.svg similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/tauri.svg rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/tauri.svg diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/vite.svg b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/vite.svg similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/public/vite.svg rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/public/vite.svg diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/App.vue b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/App.vue similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/App.vue rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/App.vue diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/assets/vue.svg b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/assets/vue.svg similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/assets/vue.svg rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/assets/vue.svg diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/main.ts b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/main.ts similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/main.ts rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/main.ts diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/vite-env.d.ts b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/vite-env.d.ts similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/src/vite-env.d.ts rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/src/vite-env.d.ts diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/tsconfig.json b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.json similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/tsconfig.json rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.json diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/tsconfig.node.json b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.node.json similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/tsconfig.node.json rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/tsconfig.node.json diff --git a/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/vite.config.ts b/templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/vite.config.ts similarity index 100% rename from templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}/vite.config.ts rename to templates/{% if template == 'vue' %}.{% endif %}/{{ project_name }}{{ frontend_path }}/vite.config.ts diff --git a/templates/{{ '.' }}/{{ project_name }}/.gitignore b/templates/{{ '.' }}/{{ project_name }}/.gitignore index 6d65b50..0d7fbe3 100644 --- a/templates/{{ '.' }}/{{ project_name }}/.gitignore +++ b/templates/{{ '.' }}/{{ project_name }}/.gitignore @@ -25,3 +25,4 @@ dist-ssr /.venv/ /target/ +/dist/ diff --git a/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/pyproject.toml.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/pyproject.toml.jinja new file mode 100644 index 0000000..e2826c7 --- /dev/null +++ b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/pyproject.toml.jinja @@ -0,0 +1,18 @@ +[project] +name = "{{ project_name }}" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +authors = [ + { name = "you" } +] +requires-python = ">=3.9" +dependencies = [ + "pytauri-wheel>=0.8.0", + "pydantic == 2.*", + "anyio == 4.*" +] + +[build-system] +requires = ["uv_build>=0.9.2,<0.10.0"] +build-backend = "uv_build" diff --git a/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/__init__.py b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/__init__.py new file mode 100644 index 0000000..9efb352 --- /dev/null +++ b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/__init__.py @@ -0,0 +1,46 @@ +import sys +from os import environ +from pathlib import Path + +from anyio.from_thread import start_blocking_portal +from pydantic import BaseModel +from pytauri import Commands +from pytauri_wheel.lib import builder_factory, context_factory + +SRC_TAURI_DIR = Path(__file__).parent.parent.parent / "app" / "src-tauri" + + +# If the DEV_SERVER env. variable is set, use that server for development (allows hot-reloading). Otherwise, use the built assets to serve the frontend. +DEV_SERVER = environ.get("DEV_SERVER") # Default: http://localhost:1420 + +if DEV_SERVER is not None: + tauri_config = { + "build": { + "frontendDist": DEV_SERVER, + }, + } +else: + tauri_config = None + + +class Person(BaseModel): + name: str + + +commands: Commands = Commands() + + +@commands.command() +async def greet(body: Person) -> str: + return f"Hello, {body.name}! You've been greeted from Python {sys.version}!" + + +def main() -> int: + with start_blocking_portal("asyncio") as portal: + app = builder_factory().build( + context=context_factory(SRC_TAURI_DIR, tauri_config=tauri_config), + invoke_handler=commands.generate_handler(portal), + plugins=[], + ) + exit_code = app.run_return() + return exit_code diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/src-python/{{ package_name }}/__main__.py.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/__main__.py.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/src-python/{{ package_name }}/__main__.py.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/__main__.py.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/src-python/{{ package_name }}/py.typed b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/py.typed similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/src-python/{{ package_name }}/py.typed rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == false %}.{% endif %}/src/{{ package_name }}/py.typed diff --git a/templates/{{ '.' }}/{{ project_name }}/.github/workflows/publish.yaml.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/.github/workflows/publish.yaml.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/.github/workflows/publish.yaml.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/.github/workflows/publish.yaml.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/Cargo.toml.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/Cargo.toml.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/Cargo.toml.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/Cargo.toml.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/pyproject.toml.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/pyproject.toml.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/pyproject.toml.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/pyproject.toml.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/README.md b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/README.md similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/README.md rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/README.md diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/linux/build.sh.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/linux/build.sh.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/linux/build.sh.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/linux/build.sh.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/linux/download-py.sh b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/linux/download-py.sh similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/linux/download-py.sh rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/linux/download-py.sh diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/macos/build.sh.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/macos/build.sh.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/macos/build.sh.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/macos/build.sh.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/macos/download-py.sh b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/macos/download-py.sh similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/macos/download-py.sh rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/macos/download-py.sh diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/windows/build.ps1.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/windows/build.ps1.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/windows/build.ps1.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/windows/build.ps1.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/scripts/windows/download-py.ps1 b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/windows/download-py.ps1 similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/scripts/windows/download-py.ps1 rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/scripts/windows/download-py.ps1 diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/.gitignore b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/.gitignore similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/.gitignore rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/.gitignore diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/.taurignore b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/.taurignore similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/.taurignore rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/.taurignore diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/Cargo.toml.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/Cargo.toml.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/Cargo.toml.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/Cargo.toml.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/build.rs b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/build.rs similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/build.rs rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/build.rs diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/pyproject.toml.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/pyproject.toml.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/pyproject.toml.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/pyproject.toml.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/src-python/{{ package_name }}/__init__.py b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/__init__.py similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/src-python/{{ package_name }}/__init__.py rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/__init__.py diff --git a/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/__main__.py.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/__main__.py.jinja new file mode 100644 index 0000000..59dd5e7 --- /dev/null +++ b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/__main__.py.jinja @@ -0,0 +1,14 @@ +"""The main entry point for the Tauri app.""" + +import sys +from multiprocessing import freeze_support + +from {{ package_name }} import main + +# - If you don't use `multiprocessing`, you can remove this line. +# - If you do use `multiprocessing` but without this line, +# you will get endless spawn loop of your application process. +# See: . +freeze_support() + +sys.exit(main()) diff --git a/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/py.typed b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src-python/{{ package_name }}/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/src/lib.rs b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src/lib.rs similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/src/lib.rs rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src/lib.rs diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/src/main.rs.jinja b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src/main.rs.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/src/main.rs.jinja rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/src/main.rs.jinja diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/tauri.bundle.json b/templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/tauri.bundle.json similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/tauri.bundle.json rename to templates/{{ '.' }}/{{ project_name }}/{% if with_rust == true %}.{% endif %}/src-tauri/tauri.bundle.json diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/capabilities/default.json b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/capabilities/default.json similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/capabilities/default.json rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/capabilities/default.json diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/128x128.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/128x128.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/128x128.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/128x128.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/128x128@2x.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/128x128@2x.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/128x128@2x.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/128x128@2x.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/32x32.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/32x32.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/32x32.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/32x32.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square107x107Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square107x107Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square107x107Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square107x107Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square142x142Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square142x142Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square142x142Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square142x142Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square150x150Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square150x150Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square150x150Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square150x150Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square284x284Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square284x284Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square284x284Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square284x284Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square30x30Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square30x30Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square30x30Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square30x30Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square310x310Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square310x310Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square310x310Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square310x310Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square44x44Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square44x44Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square44x44Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square44x44Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square71x71Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square71x71Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square71x71Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square71x71Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square89x89Logo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square89x89Logo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/Square89x89Logo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/Square89x89Logo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/StoreLogo.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/StoreLogo.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/StoreLogo.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/StoreLogo.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/icon.icns b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/icon.icns similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/icon.icns rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/icon.icns diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/icon.ico b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/icon.ico similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/icon.ico rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/icon.ico diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/icon.png b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/icon.png similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/icons/icon.png rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/icons/icon.png diff --git a/templates/{{ '.' }}/{{ project_name }}/src-tauri/tauri.conf.json.jinja b/templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/tauri.conf.json.jinja similarity index 100% rename from templates/{{ '.' }}/{{ project_name }}/src-tauri/tauri.conf.json.jinja rename to templates/{{ '.' }}/{{ project_name }}/{{ frontend_path }}src-tauri/tauri.conf.json.jinja diff --git a/uv.lock b/uv.lock index c9e26d2..730e416 100644 --- a/uv.lock +++ b/uv.lock @@ -1,6 +1,10 @@ version = 1 revision = 3 requires-python = ">=3.9" +resolution-markers = [ + "python_full_version >= '3.10'", + "python_full_version < '3.10'", +] [[package]] name = "annotated-types" @@ -26,12 +30,80 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916, upload-time = "2025-03-17T00:02:52.713Z" }, ] +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "copier" +version = "9.10.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "colorama", marker = "python_full_version < '3.10'" }, + { name = "dunamai", marker = "python_full_version < '3.10'" }, + { name = "eval-type-backport", marker = "python_full_version < '3.10'" }, + { name = "funcy", marker = "python_full_version < '3.10'" }, + { name = "jinja2", marker = "python_full_version < '3.10'" }, + { name = "jinja2-ansible-filters", marker = "python_full_version < '3.10'" }, + { name = "packaging", marker = "python_full_version < '3.10'" }, + { name = "pathspec", marker = "python_full_version < '3.10'" }, + { name = "platformdirs", version = "4.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "plumbum", marker = "python_full_version < '3.10'" }, + { name = "pydantic", marker = "python_full_version < '3.10'" }, + { name = "pygments", marker = "python_full_version < '3.10'" }, + { name = "pyyaml", marker = "python_full_version < '3.10'" }, + { name = "questionary", marker = "python_full_version < '3.10'" }, + { name = "typing-extensions", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/82/c6/1f61fe2b011347c0b9d7637d02ef3dc1c2874640a4fd5fb059ea8b5493f2/copier-9.10.3.tar.gz", hash = "sha256:6e965d8f719678ee3bc5e611ef0d1b182d6b01a3d5385a5f1ba43aaade51caf7", size = 598697, upload-time = "2025-10-17T18:26:04.217Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/f2/58ee35dbd55d0ffa13197365ec4725c36da2f7ec72eaa1dd154bfbd2676e/copier-9.10.3-py3-none-any.whl", hash = "sha256:7165239566f68e9e36c148f71e0552bf1e4911eef96bfa7cf33e6a0dbfed3c96", size = 56186, upload-time = "2025-10-17T18:26:02.856Z" }, +] + +[[package]] +name = "copier" +version = "9.11.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.10'", +] +dependencies = [ + { name = "colorama", marker = "python_full_version >= '3.10'" }, + { name = "dunamai", marker = "python_full_version >= '3.10'" }, + { name = "funcy", marker = "python_full_version >= '3.10'" }, + { name = "jinja2", marker = "python_full_version >= '3.10'" }, + { name = "jinja2-ansible-filters", marker = "python_full_version >= '3.10'" }, + { name = "packaging", marker = "python_full_version >= '3.10'" }, + { name = "pathspec", marker = "python_full_version >= '3.10'" }, + { name = "platformdirs", version = "4.5.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "plumbum", marker = "python_full_version >= '3.10'" }, + { name = "pydantic", marker = "python_full_version >= '3.10'" }, + { name = "pygments", marker = "python_full_version >= '3.10'" }, + { name = "pyyaml", marker = "python_full_version >= '3.10'" }, + { name = "questionary", marker = "python_full_version >= '3.10'" }, + { name = "typing-extensions", marker = "python_full_version == '3.10.*'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/61/226642b1efad2a39008ee5b913cd82a6f22a564b652e8f0645488a27a2e2/copier-9.11.0.tar.gz", hash = "sha256:e73d6989fa140b621a5c571984c46122704086a9caa84a6e07699a5234d297ab", size = 592030, upload-time = "2025-11-20T21:08:01.419Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/ee/657b24e9b2406f572db273e943237c39c86da7d06ac7bc0686cacea1f59d/copier-9.11.0-py3-none-any.whl", hash = "sha256:628adac090f7b333bb64bf5cab03456b99971a77e4d5b2b979e30b8451cbda9d", size = 56432, upload-time = "2025-11-20T21:07:59.618Z" }, +] + [[package]] name = "create-pytauri-app" version = "0.1.0" source = { virtual = "." } dependencies = [ { name = "anyio" }, + { name = "copier", version = "9.10.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "copier", version = "9.11.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, { name = "pydantic" }, { name = "pytauri" }, { name = "setuptools" }, @@ -41,12 +113,34 @@ dependencies = [ [package.metadata] requires-dist = [ { name = "anyio", specifier = "==4.*" }, + { name = "copier", specifier = ">=9.10.3" }, { name = "pydantic", specifier = "==2.*" }, { name = "pytauri", specifier = "==0.8.*" }, { name = "setuptools", specifier = ">=80" }, { name = "setuptools-scm", specifier = ">=8" }, ] +[[package]] +name = "dunamai" +version = "1.25.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/2f/194d9a34c4d831c6563d2d990720850f0baef9ab60cb4ad8ae0eff6acd34/dunamai-1.25.0.tar.gz", hash = "sha256:a7f8360ea286d3dbaf0b6a1473f9253280ac93d619836ad4514facb70c0719d1", size = 46155, upload-time = "2025-07-04T19:25:56.082Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/36/41/04e2a649058b0713b00d6c9bd22da35618bb157289e05d068e51fddf8d7e/dunamai-1.25.0-py3-none-any.whl", hash = "sha256:7f9dc687dd3256e613b6cc978d9daabfd2bb5deb8adc541fc135ee423ffa98ab", size = 27022, upload-time = "2025-07-04T19:25:54.863Z" }, +] + +[[package]] +name = "eval-type-backport" +version = "0.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/ea/8b0ac4469d4c347c6a385ff09dc3c048c2d021696664e26c7ee6791631b5/eval_type_backport-0.2.2.tar.gz", hash = "sha256:f0576b4cf01ebb5bd358d02314d31846af5e07678387486e2c798af0e7d849c1", size = 9079, upload-time = "2024-12-21T20:09:46.005Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/31/55cd413eaccd39125368be33c46de24a1f639f2e12349b0361b4678f3915/eval_type_backport-0.2.2-py3-none-any.whl", hash = "sha256:cb6ad7c393517f476f96d456d0412ea80f0a8cf96f6892834cd9340149111b0a", size = 5830, upload-time = "2024-12-21T20:09:44.175Z" }, +] + [[package]] name = "exceptiongroup" version = "1.2.2" @@ -56,6 +150,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453, upload-time = "2024-07-12T22:25:58.476Z" }, ] +[[package]] +name = "funcy" +version = "2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/b8/c6081521ff70afdff55cd9512b2220bbf4fa88804dae51d1b57b4b58ef32/funcy-2.0.tar.gz", hash = "sha256:3963315d59d41c6f30c04bc910e10ab50a3ac4a225868bfa96feed133df075cb", size = 537931, upload-time = "2023-03-28T06:22:46.764Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/08/c2409cb01d5368dcfedcbaffa7d044cc8957d57a9d0855244a5eb4709d30/funcy-2.0-py2.py3-none-any.whl", hash = "sha256:53df23c8bb1651b12f095df764bfb057935d49537a56de211b098f4c79614bb0", size = 30891, upload-time = "2023-03-28T06:22:42.576Z" }, +] + [[package]] name = "idna" version = "3.10" @@ -77,6 +180,127 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl", hash = "sha256:e5dd1551894c77868a30651cef00984d50e1002d06942a7101d34870c5f02afd", size = 27656, upload-time = "2025-04-27T15:29:00.214Z" }, ] +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "jinja2-ansible-filters" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1a/27/fa186af4b246eb869ffca8ffa42d92b05abaec08c99329e74d88b2c46ec7/jinja2-ansible-filters-1.3.2.tar.gz", hash = "sha256:07c10cf44d7073f4f01102ca12d9a2dc31b41d47e4c61ed92ef6a6d2669b356b", size = 16945, upload-time = "2022-06-30T14:08:50.775Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/72/b9/313e8f2f2e9517ae050a692ae7b3e4b3f17cc5e6dfea0db51fe14e586580/jinja2_ansible_filters-1.3.2-py3-none-any.whl", hash = "sha256:e1082f5564917649c76fed239117820610516ec10f87735d0338688800a55b34", size = 18975, upload-time = "2022-06-30T14:08:49.571Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/4b/3541d44f3937ba468b75da9eebcae497dcf67adb65caa16760b0a6807ebb/markupsafe-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2f981d352f04553a7171b8e44369f2af4055f888dfb147d55e42d29e29e74559", size = 11631, upload-time = "2025-09-27T18:36:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/98/1b/fbd8eed11021cabd9226c37342fa6ca4e8a98d8188a8d9b66740494960e4/markupsafe-3.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c1493fb6e50ab01d20a22826e57520f1284df32f2d8601fdd90b6304601419", size = 12057, upload-time = "2025-09-27T18:36:07.165Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/e560d658dc0bb8ab762670ece35281dec7b6c1b33f5fbc09ebb57a185519/markupsafe-3.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ba88449deb3de88bd40044603fafffb7bc2b055d626a330323a9ed736661695", size = 22050, upload-time = "2025-09-27T18:36:08.005Z" }, + { url = "https://files.pythonhosted.org/packages/af/cd/ce6e848bbf2c32314c9b237839119c5a564a59725b53157c856e90937b7a/markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42d0984e947b8adf7dd6dde396e720934d12c506ce84eea8476409563607591", size = 20681, upload-time = "2025-09-27T18:36:08.881Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2a/b5c12c809f1c3045c4d580b035a743d12fcde53cf685dbc44660826308da/markupsafe-3.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c0c0b3ade1c0b13b936d7970b1d37a57acde9199dc2aecc4c336773e1d86049c", size = 20705, upload-time = "2025-09-27T18:36:10.131Z" }, + { url = "https://files.pythonhosted.org/packages/cf/e3/9427a68c82728d0a88c50f890d0fc072a1484de2f3ac1ad0bfc1a7214fd5/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0303439a41979d9e74d18ff5e2dd8c43ed6c6001fd40e5bf2e43f7bd9bbc523f", size = 21524, upload-time = "2025-09-27T18:36:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/bc/36/23578f29e9e582a4d0278e009b38081dbe363c5e7165113fad546918a232/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:d2ee202e79d8ed691ceebae8e0486bd9a2cd4794cec4824e1c99b6f5009502f6", size = 20282, upload-time = "2025-09-27T18:36:12.573Z" }, + { url = "https://files.pythonhosted.org/packages/56/21/dca11354e756ebd03e036bd8ad58d6d7168c80ce1fe5e75218e4945cbab7/markupsafe-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:177b5253b2834fe3678cb4a5f0059808258584c559193998be2601324fdeafb1", size = 20745, upload-time = "2025-09-27T18:36:13.504Z" }, + { url = "https://files.pythonhosted.org/packages/87/99/faba9369a7ad6e4d10b6a5fbf71fa2a188fe4a593b15f0963b73859a1bbd/markupsafe-3.0.3-cp310-cp310-win32.whl", hash = "sha256:2a15a08b17dd94c53a1da0438822d70ebcd13f8c3a95abe3a9ef9f11a94830aa", size = 14571, upload-time = "2025-09-27T18:36:14.779Z" }, + { url = "https://files.pythonhosted.org/packages/d6/25/55dc3ab959917602c96985cb1253efaa4ff42f71194bddeb61eb7278b8be/markupsafe-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:c4ffb7ebf07cfe8931028e3e4c85f0357459a3f9f9490886198848f4fa002ec8", size = 15056, upload-time = "2025-09-27T18:36:16.125Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9e/0a02226640c255d1da0b8d12e24ac2aa6734da68bff14c05dd53b94a0fc3/markupsafe-3.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:e2103a929dfa2fcaf9bb4e7c091983a49c9ac3b19c9061b6d5427dd7d14d81a1", size = 13932, upload-time = "2025-09-27T18:36:17.311Z" }, + { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, + { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, + { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" }, + { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" }, + { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" }, + { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" }, + { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" }, + { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" }, + { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" }, + { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" }, + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, + { url = "https://files.pythonhosted.org/packages/56/23/0d8c13a44bde9154821586520840643467aee574d8ce79a17da539ee7fed/markupsafe-3.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15d939a21d546304880945ca1ecb8a039db6b4dc49b2c5a400387cdae6a62e26", size = 11623, upload-time = "2025-09-27T18:37:29.296Z" }, + { url = "https://files.pythonhosted.org/packages/fd/23/07a2cb9a8045d5f3f0890a8c3bc0859d7a47bfd9a560b563899bec7b72ed/markupsafe-3.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f71a396b3bf33ecaa1626c255855702aca4d3d9fea5e051b41ac59a9c1c41edc", size = 12049, upload-time = "2025-09-27T18:37:30.234Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e4/6be85eb81503f8e11b61c0b6369b6e077dcf0a74adbd9ebf6b349937b4e9/markupsafe-3.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f4b68347f8c5eab4a13419215bdfd7f8c9b19f2b25520968adfad23eb0ce60c", size = 21923, upload-time = "2025-09-27T18:37:31.177Z" }, + { url = "https://files.pythonhosted.org/packages/6f/bc/4dc914ead3fe6ddaef035341fee0fc956949bbd27335b611829292b89ee2/markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8fc20152abba6b83724d7ff268c249fa196d8259ff481f3b1476383f8f24e42", size = 20543, upload-time = "2025-09-27T18:37:32.168Z" }, + { url = "https://files.pythonhosted.org/packages/89/6e/5fe81fbcfba4aef4093d5f856e5c774ec2057946052d18d168219b7bd9f9/markupsafe-3.0.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:949b8d66bc381ee8b007cd945914c721d9aba8e27f71959d750a46f7c282b20b", size = 20585, upload-time = "2025-09-27T18:37:33.166Z" }, + { url = "https://files.pythonhosted.org/packages/f6/f6/e0e5a3d3ae9c4020f696cd055f940ef86b64fe88de26f3a0308b9d3d048c/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3537e01efc9d4dccdf77221fb1cb3b8e1a38d5428920e0657ce299b20324d758", size = 21387, upload-time = "2025-09-27T18:37:34.185Z" }, + { url = "https://files.pythonhosted.org/packages/c8/25/651753ef4dea08ea790f4fbb65146a9a44a014986996ca40102e237aa49a/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:591ae9f2a647529ca990bc681daebdd52c8791ff06c2bfa05b65163e28102ef2", size = 20133, upload-time = "2025-09-27T18:37:35.138Z" }, + { url = "https://files.pythonhosted.org/packages/dc/0a/c3cf2b4fef5f0426e8a6d7fce3cb966a17817c568ce59d76b92a233fdbec/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a320721ab5a1aba0a233739394eb907f8c8da5c98c9181d1161e77a0c8e36f2d", size = 20588, upload-time = "2025-09-27T18:37:36.096Z" }, + { url = "https://files.pythonhosted.org/packages/cd/1b/a7782984844bd519ad4ffdbebbba2671ec5d0ebbeac34736c15fb86399e8/markupsafe-3.0.3-cp39-cp39-win32.whl", hash = "sha256:df2449253ef108a379b8b5d6b43f4b1a8e81a061d6537becd5582fba5f9196d7", size = 14566, upload-time = "2025-09-27T18:37:37.09Z" }, + { url = "https://files.pythonhosted.org/packages/18/1f/8d9c20e1c9440e215a44be5ab64359e207fcb4f675543f1cf9a2a7f648d0/markupsafe-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:7c3fb7d25180895632e5d3148dbdc29ea38ccb7fd210aa27acbd1201a1902c6e", size = 15053, upload-time = "2025-09-27T18:37:38.054Z" }, + { url = "https://files.pythonhosted.org/packages/4e/d3/fe08482b5cd995033556d45041a4f4e76e7f0521112a9c9991d40d39825f/markupsafe-3.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:38664109c14ffc9e7437e86b4dceb442b0096dfe3541d7864d9cbe1da4cf36c8", size = 13928, upload-time = "2025-09-27T18:37:39.037Z" }, +] + [[package]] name = "packaging" version = "25.0" @@ -86,6 +310,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, ] +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" }, +] + [[package]] name = "pillow" version = "11.2.1" @@ -174,6 +407,54 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/21/2c/5e05f58658cf49b6667762cca03d6e7d85cededde2caf2ab37b81f80e574/pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044", size = 2674751, upload-time = "2025-04-12T17:49:59.628Z" }, ] +[[package]] +name = "platformdirs" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload-time = "2025-08-26T14:32:02.735Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.5.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.10'", +] +sdist = { url = "https://files.pythonhosted.org/packages/cf/86/0248f086a84f01b37aaec0fa567b397df1a119f73c16f6c7a9aac73ea309/platformdirs-4.5.1.tar.gz", hash = "sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda", size = 21715, upload-time = "2025-12-05T13:52:58.638Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/28/3bfe2fa5a7b9c46fe7e13c97bda14c895fb10fa2ebf1d0abb90e0cea7ee1/platformdirs-4.5.1-py3-none-any.whl", hash = "sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31", size = 18731, upload-time = "2025-12-05T13:52:56.823Z" }, +] + +[[package]] +name = "plumbum" +version = "1.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dc/c8/11a5f792704b70f071a3dbc329105a98e9cc8d25daaf09f733c44eb0ef8e/plumbum-1.10.0.tar.gz", hash = "sha256:f8cbf0ecec0b73ff4e349398b65112a9e3f9300e7dc019001217dcc148d5c97c", size = 320039, upload-time = "2025-10-31T05:02:48.697Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/ad/45312df6b63ba64ea35b8d8f5f0c577aac16e6b416eafe8e1cb34e03f9a7/plumbum-1.10.0-py3-none-any.whl", hash = "sha256:9583d737ac901c474d99d030e4d5eec4c4e6d2d7417b1cf49728cf3be34f6dc8", size = 127383, upload-time = "2025-10-31T05:02:47.002Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.52" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, +] + [[package]] name = "pydantic" version = "2.11.4" @@ -298,6 +579,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d4/29/3cade8a924a61f60ccfa10842f75eb12787e1440e2b8660ceffeb26685e7/pydantic_core-2.33.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2807668ba86cb38c6817ad9bc66215ab8584d1d304030ce4f0887336f28a5e27", size = 2066661, upload-time = "2025-04-23T18:33:49.995Z" }, ] +[[package]] +name = "pygments" +version = "2.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, +] + [[package]] name = "pytauri" version = "0.8.0" @@ -314,6 +604,116 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5d/15/2679cf676f1c621a9decbf79abfa33891b9d7882d9bcd24751b5e554a095/pytauri-0.8.0-py3-none-any.whl", hash = "sha256:e7dc9b21f5ecf081b1e2751abf788792c8804cb3b2637de2b2d0b11a04794174", size = 62559, upload-time = "2025-09-01T09:25:15.428Z" }, ] +[[package]] +name = "pywin32" +version = "311" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/40/44efbb0dfbd33aca6a6483191dae0716070ed99e2ecb0c53683f400a0b4f/pywin32-311-cp310-cp310-win32.whl", hash = "sha256:d03ff496d2a0cd4a5893504789d4a15399133fe82517455e78bad62efbb7f0a3", size = 8760432, upload-time = "2025-07-14T20:13:05.9Z" }, + { url = "https://files.pythonhosted.org/packages/5e/bf/360243b1e953bd254a82f12653974be395ba880e7ec23e3731d9f73921cc/pywin32-311-cp310-cp310-win_amd64.whl", hash = "sha256:797c2772017851984b97180b0bebe4b620bb86328e8a884bb626156295a63b3b", size = 9590103, upload-time = "2025-07-14T20:13:07.698Z" }, + { url = "https://files.pythonhosted.org/packages/57/38/d290720e6f138086fb3d5ffe0b6caa019a791dd57866940c82e4eeaf2012/pywin32-311-cp310-cp310-win_arm64.whl", hash = "sha256:0502d1facf1fed4839a9a51ccbcc63d952cf318f78ffc00a7e78528ac27d7a2b", size = 8778557, upload-time = "2025-07-14T20:13:11.11Z" }, + { url = "https://files.pythonhosted.org/packages/7c/af/449a6a91e5d6db51420875c54f6aff7c97a86a3b13a0b4f1a5c13b988de3/pywin32-311-cp311-cp311-win32.whl", hash = "sha256:184eb5e436dea364dcd3d2316d577d625c0351bf237c4e9a5fabbcfa5a58b151", size = 8697031, upload-time = "2025-07-14T20:13:13.266Z" }, + { url = "https://files.pythonhosted.org/packages/51/8f/9bb81dd5bb77d22243d33c8397f09377056d5c687aa6d4042bea7fbf8364/pywin32-311-cp311-cp311-win_amd64.whl", hash = "sha256:3ce80b34b22b17ccbd937a6e78e7225d80c52f5ab9940fe0506a1a16f3dab503", size = 9508308, upload-time = "2025-07-14T20:13:15.147Z" }, + { url = "https://files.pythonhosted.org/packages/44/7b/9c2ab54f74a138c491aba1b1cd0795ba61f144c711daea84a88b63dc0f6c/pywin32-311-cp311-cp311-win_arm64.whl", hash = "sha256:a733f1388e1a842abb67ffa8e7aad0e70ac519e09b0f6a784e65a136ec7cefd2", size = 8703930, upload-time = "2025-07-14T20:13:16.945Z" }, + { url = "https://files.pythonhosted.org/packages/e7/ab/01ea1943d4eba0f850c3c61e78e8dd59757ff815ff3ccd0a84de5f541f42/pywin32-311-cp312-cp312-win32.whl", hash = "sha256:750ec6e621af2b948540032557b10a2d43b0cee2ae9758c54154d711cc852d31", size = 8706543, upload-time = "2025-07-14T20:13:20.765Z" }, + { url = "https://files.pythonhosted.org/packages/d1/a8/a0e8d07d4d051ec7502cd58b291ec98dcc0c3fff027caad0470b72cfcc2f/pywin32-311-cp312-cp312-win_amd64.whl", hash = "sha256:b8c095edad5c211ff31c05223658e71bf7116daa0ecf3ad85f3201ea3190d067", size = 9495040, upload-time = "2025-07-14T20:13:22.543Z" }, + { url = "https://files.pythonhosted.org/packages/ba/3a/2ae996277b4b50f17d61f0603efd8253cb2d79cc7ae159468007b586396d/pywin32-311-cp312-cp312-win_arm64.whl", hash = "sha256:e286f46a9a39c4a18b319c28f59b61de793654af2f395c102b4f819e584b5852", size = 8710102, upload-time = "2025-07-14T20:13:24.682Z" }, + { url = "https://files.pythonhosted.org/packages/a5/be/3fd5de0979fcb3994bfee0d65ed8ca9506a8a1260651b86174f6a86f52b3/pywin32-311-cp313-cp313-win32.whl", hash = "sha256:f95ba5a847cba10dd8c4d8fefa9f2a6cf283b8b88ed6178fa8a6c1ab16054d0d", size = 8705700, upload-time = "2025-07-14T20:13:26.471Z" }, + { url = "https://files.pythonhosted.org/packages/e3/28/e0a1909523c6890208295a29e05c2adb2126364e289826c0a8bc7297bd5c/pywin32-311-cp313-cp313-win_amd64.whl", hash = "sha256:718a38f7e5b058e76aee1c56ddd06908116d35147e133427e59a3983f703a20d", size = 9494700, upload-time = "2025-07-14T20:13:28.243Z" }, + { url = "https://files.pythonhosted.org/packages/04/bf/90339ac0f55726dce7d794e6d79a18a91265bdf3aa70b6b9ca52f35e022a/pywin32-311-cp313-cp313-win_arm64.whl", hash = "sha256:7b4075d959648406202d92a2310cb990fea19b535c7f4a78d3f5e10b926eeb8a", size = 8709318, upload-time = "2025-07-14T20:13:30.348Z" }, + { url = "https://files.pythonhosted.org/packages/c9/31/097f2e132c4f16d99a22bfb777e0fd88bd8e1c634304e102f313af69ace5/pywin32-311-cp314-cp314-win32.whl", hash = "sha256:b7a2c10b93f8986666d0c803ee19b5990885872a7de910fc460f9b0c2fbf92ee", size = 8840714, upload-time = "2025-07-14T20:13:32.449Z" }, + { url = "https://files.pythonhosted.org/packages/90/4b/07c77d8ba0e01349358082713400435347df8426208171ce297da32c313d/pywin32-311-cp314-cp314-win_amd64.whl", hash = "sha256:3aca44c046bd2ed8c90de9cb8427f581c479e594e99b5c0bb19b29c10fd6cb87", size = 9656800, upload-time = "2025-07-14T20:13:34.312Z" }, + { url = "https://files.pythonhosted.org/packages/c0/d2/21af5c535501a7233e734b8af901574572da66fcc254cb35d0609c9080dd/pywin32-311-cp314-cp314-win_arm64.whl", hash = "sha256:a508e2d9025764a8270f93111a970e1d0fbfc33f4153b388bb649b7eec4f9b42", size = 8932540, upload-time = "2025-07-14T20:13:36.379Z" }, + { url = "https://files.pythonhosted.org/packages/59/42/b86689aac0cdaee7ae1c58d464b0ff04ca909c19bb6502d4973cdd9f9544/pywin32-311-cp39-cp39-win32.whl", hash = "sha256:aba8f82d551a942cb20d4a83413ccbac30790b50efb89a75e4f586ac0bb8056b", size = 8760837, upload-time = "2025-07-14T20:12:59.59Z" }, + { url = "https://files.pythonhosted.org/packages/9f/8a/1403d0353f8c5a2f0829d2b1c4becbf9da2f0a4d040886404fc4a5431e4d/pywin32-311-cp39-cp39-win_amd64.whl", hash = "sha256:e0c4cfb0621281fe40387df582097fd796e80430597cb9944f0ae70447bacd91", size = 9590187, upload-time = "2025-07-14T20:13:01.419Z" }, + { url = "https://files.pythonhosted.org/packages/60/22/e0e8d802f124772cec9c75430b01a212f86f9de7546bda715e54140d5aeb/pywin32-311-cp39-cp39-win_arm64.whl", hash = "sha256:62ea666235135fee79bb154e695f3ff67370afefd71bd7fea7512fc70ef31e3d", size = 8778162, upload-time = "2025-07-14T20:13:03.544Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, + { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, + { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, + { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, + { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" }, + { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" }, + { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" }, + { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" }, + { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" }, + { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" }, + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, + { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" }, + { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" }, + { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" }, + { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" }, + { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" }, + { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" }, + { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, + { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, + { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, + { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" }, + { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" }, + { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" }, + { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" }, + { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" }, + { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" }, + { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" }, + { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" }, + { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" }, + { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" }, + { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" }, + { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, + { url = "https://files.pythonhosted.org/packages/9f/62/67fc8e68a75f738c9200422bf65693fb79a4cd0dc5b23310e5202e978090/pyyaml-6.0.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:b865addae83924361678b652338317d1bd7e79b1f4596f96b96c77a5a34b34da", size = 184450, upload-time = "2025-09-25T21:33:00.618Z" }, + { url = "https://files.pythonhosted.org/packages/ae/92/861f152ce87c452b11b9d0977952259aa7df792d71c1053365cc7b09cc08/pyyaml-6.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c3355370a2c156cffb25e876646f149d5d68f5e0a3ce86a5084dd0b64a994917", size = 174319, upload-time = "2025-09-25T21:33:02.086Z" }, + { url = "https://files.pythonhosted.org/packages/d0/cd/f0cfc8c74f8a030017a2b9c771b7f47e5dd702c3e28e5b2071374bda2948/pyyaml-6.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c5677e12444c15717b902a5798264fa7909e41153cdf9ef7ad571b704a63dd9", size = 737631, upload-time = "2025-09-25T21:33:03.25Z" }, + { url = "https://files.pythonhosted.org/packages/ef/b2/18f2bd28cd2055a79a46c9b0895c0b3d987ce40ee471cecf58a1a0199805/pyyaml-6.0.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5ed875a24292240029e4483f9d4a4b8a1ae08843b9c54f43fcc11e404532a8a5", size = 836795, upload-time = "2025-09-25T21:33:05.014Z" }, + { url = "https://files.pythonhosted.org/packages/73/b9/793686b2d54b531203c160ef12bec60228a0109c79bae6c1277961026770/pyyaml-6.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0150219816b6a1fa26fb4699fb7daa9caf09eb1999f3b70fb6e786805e80375a", size = 750767, upload-time = "2025-09-25T21:33:06.398Z" }, + { url = "https://files.pythonhosted.org/packages/a9/86/a137b39a611def2ed78b0e66ce2fe13ee701a07c07aebe55c340ed2a050e/pyyaml-6.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fa160448684b4e94d80416c0fa4aac48967a969efe22931448d853ada8baf926", size = 727982, upload-time = "2025-09-25T21:33:08.708Z" }, + { url = "https://files.pythonhosted.org/packages/dd/62/71c27c94f457cf4418ef8ccc71735324c549f7e3ea9d34aba50874563561/pyyaml-6.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:27c0abcb4a5dac13684a37f76e701e054692a9b2d3064b70f5e4eb54810553d7", size = 755677, upload-time = "2025-09-25T21:33:09.876Z" }, + { url = "https://files.pythonhosted.org/packages/29/3d/6f5e0d58bd924fb0d06c3a6bad00effbdae2de5adb5cda5648006ffbd8d3/pyyaml-6.0.3-cp39-cp39-win32.whl", hash = "sha256:1ebe39cb5fc479422b83de611d14e2c0d3bb2a18bbcb01f229ab3cfbd8fee7a0", size = 142592, upload-time = "2025-09-25T21:33:10.983Z" }, + { url = "https://files.pythonhosted.org/packages/f0/0c/25113e0b5e103d7f1490c0e947e303fe4a696c10b501dea7a9f49d4e876c/pyyaml-6.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:2e71d11abed7344e42a8849600193d15b6def118602c4c176f748e4583246007", size = 158777, upload-time = "2025-09-25T21:33:15.55Z" }, +] + +[[package]] +name = "questionary" +version = "2.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "prompt-toolkit" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f6/45/eafb0bba0f9988f6a2520f9ca2df2c82ddfa8d67c95d6625452e97b204a5/questionary-2.1.1.tar.gz", hash = "sha256:3d7e980292bb0107abaa79c68dd3eee3c561b83a0f89ae482860b181c8bd412d", size = 25845, upload-time = "2025-08-28T19:00:20.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/26/1062c7ec1b053db9e499b4d2d5bc231743201b74051c973dadeac80a8f43/questionary-2.1.1-py3-none-any.whl", hash = "sha256:a51af13f345f1cdea62347589fbb6df3b290306ab8930713bfae4d475a7d4a59", size = 36753, upload-time = "2025-08-28T19:00:19.56Z" }, +] + [[package]] name = "setuptools" version = "80.9.0" @@ -408,6 +808,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/31/08/aa4fdfb71f7de5176385bd9e90852eaf6b5d622735020ad600f2bab54385/typing_inspection-0.4.0-py3-none-any.whl", hash = "sha256:50e72559fcd2a6367a19f7a7e610e6afcb9fac940c650290eed893d61386832f", size = 14125, upload-time = "2025-02-25T17:27:57.754Z" }, ] +[[package]] +name = "wcwidth" +version = "0.2.14" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/24/30/6b0809f4510673dc723187aeaf24c7f5459922d01e2f794277a3dfb90345/wcwidth-0.2.14.tar.gz", hash = "sha256:4d478375d31bc5395a3c55c40ccdf3354688364cd61c4f6adacaa9215d0b3605", size = 102293, upload-time = "2025-09-22T16:29:53.023Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/b5/123f13c975e9f27ab9c0770f514345bd406d0e8d3b7a0723af9d43f710af/wcwidth-0.2.14-py2.py3-none-any.whl", hash = "sha256:a7bb560c8aee30f9957e5f9895805edd20602f2d7f720186dfd906e82b4982e1", size = 37286, upload-time = "2025-09-22T16:29:51.641Z" }, +] + [[package]] name = "zipp" version = "3.21.0"