Initial upload: curl-to-code-converter CLI tool
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 18:15:16 +00:00
parent 0f79d0c22d
commit c5e8eea3e1

33
pyproject.toml Normal file
View File

@@ -0,0 +1,33 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "curl-to-code-converter"
version = "1.0.0"
description = "A CLI tool that converts cURL commands into code snippets in various programming languages"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["curl", "converter", "cli", "code-generation", "http"]
[project.scripts]
curl-to-code = "curl_to_code_converter.__main__:main"
[project.urls]
Homepage = "https://7000pct.gitea.bloupla.net/7000pctAUTO/curl-to-code-converter"
[tool.setuptools.packages.find]
where = ["."]
include = ["curl_to_code_converter*"]