fix: resolve CI type annotation issues
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-02 12:56:05 +00:00
parent be62017bda
commit e6b3428ba6

20
src/pyproject.toml Normal file
View File

@@ -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"]