From e6b3428ba6c1bcc2a5a0c736d6013b8f64a9f491 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 12:56:05 +0000 Subject: [PATCH] fix: resolve CI type annotation issues --- src/pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/pyproject.toml diff --git a/src/pyproject.toml b/src/pyproject.toml new file mode 100644 index 0000000..624298a --- /dev/null +++ b/src/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "requirements-to-gherkin-cli" +version = "0.1.0" +description = "Convert natural language requirements to Gherkin feature files" +requires-python = ">=3.10" +dependencies = [] + +[project.optional-dependencies] +dev = ["pytest", "ruff"] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.ruff] +line-length = 100 +target-version = "py310" + +[tool.pytest.ini_options] +testpaths = ["tests"]