Files
hatchet/frontend/docs/lib/generated/snips/python/quickstart/pyproject.ts
Matt Kaye 246f284a98 Fix: Quote replacement in generated doc snippets (#1755)
* fix: get rid of quote replacing

* chore: gen

* drive by: event doc wording

* fix: dedenting
2025-05-20 09:19:58 -04:00

12 lines
723 B
TypeScript

import { Snippet } from '@/lib/generated/snips/types';
const snippet: Snippet = {
"language": "unknown",
"content": "[tool.poetry]\nname = \"hatchet-python-quickstart\"\nversion = \"0.1.0\"\ndescription = \"Simple Setup to Run Hatchet Workflows\"\nauthors = [\"gabriel ruttner <gabe@hatchet.run>\"]\nreadme = \"README.md\"\npackage-mode = false\n\n[tool.poetry.dependencies]\npython = \"^3.10\"\nhatchet-sdk = \"1.0.0a1\"\n\n\n[build-system]\nrequires = [\"poetry-core\"]\nbuild-backend = \"poetry.core.masonry.api\"\n\n[tool.poetry.scripts]\nsimple = \"src.run:main\"\nworker = \"src.worker:main\"\n",
"source": "out/python/quickstart/pyproject.toml",
"blocks": {},
"highlights": {}
};
export default snippet;