Initial commit: Add curl-to-code-cli project

This commit is contained in:
2026-01-30 12:39:21 +00:00
parent cc560b04c3
commit 2e57810bf6

27
.pyproject.toml Normal file
View File

@@ -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"]