[add] Init

This commit is contained in:
2024-08-07 13:46:01 -07:00
commit 323d9a7b25
7 changed files with 647 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.poetry]
name = "code-to-prompt"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{include = "code_to_prompt"}]
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.12.3"
tiktoken = "^0.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
code_to_prompt = "code_to_prompt.app:app"