21 lines
427 B
TOML
21 lines
427 B
TOML
[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"]
|