Remove duplicate files: root-level copies and subdirectory pyproject.toml
Some checks failed
CI / test (push) Failing after 9s

This commit is contained in:
CI Bot
2026-02-01 18:23:29 +00:00
parent 380274e87e
commit 0a959bde28
5 changed files with 0 additions and 614 deletions

View File

@@ -1,39 +0,0 @@
[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://github.com/example/curl-to-code-converter"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.1.0",
]
[tool.setuptools.packages.find]
where = ["*"]
include = ["curl_to_code_converter*"]