From 2e57810bf6c77eb1477d34fb4692202c258232f8 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 12:39:21 +0000 Subject: [PATCH] Initial commit: Add curl-to-code-cli project --- .pyproject.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .pyproject.toml diff --git a/.pyproject.toml b/.pyproject.toml new file mode 100644 index 0000000..e2415cd --- /dev/null +++ b/.pyproject.toml @@ -0,0 +1,27 @@ +[project] +name = "curl-to-code" +version = "0.1.0" +description = "A CLI tool that converts curl commands into idiomatic code across multiple languages" +readme = "README.md" +requires-python = ">=3.8" +authors = [ + {name = "curl-to-code contributors"} +] +dependencies = [ + "typer>=0.9.0", + "requests>=2.31.0", + "rich>=13.7.0", +] + +[project.optional-dependencies] +dev = [ + "pytest>=7.4.0", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"]