28 lines
553 B
TOML
28 lines
553 B
TOML
[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"]
|