Fix CI/CD workflow: Add dev dependencies and fix test configuration
Some checks failed
CI / test (push) Failing after 10s

This commit is contained in:
2026-02-01 18:17:36 +00:00
parent b311afee6e
commit 972808ae1c

View File

@@ -0,0 +1,39 @@
[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*"]