-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "beehave"
version = "1.0.0"
description = "A thin layer on Hypothesis for Gherkin-style BDD testing with vocabulary enforcement"
readme = "README.md"
requires-python = ">=3.14"
license = "MIT"
authors = [
{ name = "eol", email = "nullhack@users.noreply.github.com" }
]
dependencies = [
"gherkin-official>=39.0",
]
[project.scripts]
beehave = "beehave.cli:main"
[dependency-groups]
dev = [
"agents-smith>=1.0.0",
"beehave",
"flowr[viz]>=1.1.0",
"hypothesis>=6.152.7",
"pytest>=8.0",
"pytest-beehave>=0.2.2",
"ruff>=0.11",
]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM", "RUF"]
preview = true
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101", "E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_functions = ["test_*"]
[tool.uv.sources]
beehave = { workspace = true }