-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 1.44 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ucgen"
version = "0.2.0"
description = "CLI tool to generate Cockburn-style use case documents from natural language — works with Ollama, Anthropic, Groq, and OpenAI"
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"use case",
"requirements",
"cockburn",
"documentation",
"cli",
"llm",
"ollama",
"anthropic",
"groq",
"business analyst",
"requirements engineering",
"natural language",
]
dependencies = [
"typer[all]>=0.12",
"httpx>=0.27",
"anthropic>=0.30",
"openai>=1.40",
"pydantic>=2.7",
"jinja2>=3.1",
"rich>=13.7",
"aiofiles>=23.0",
"python-docx>=1.1.0",
"tomli-w>=1.0",
]
[project.optional-dependencies]
project = ["PyYAML>=6.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
"ruff>=0.5",
"mypy>=1.10",
"types-PyYAML>=6.0",
]
all = [
"PyYAML>=6.0",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
"ruff>=0.5",
"mypy>=1.10",
"types-PyYAML>=6.0",
]
[project.scripts]
ucgen = "ucgen.cli:app"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
[[tool.mypy.overrides]]
module = "ucgen.exporter_docx"
disable_error_code = ["attr-defined"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
[tool.ruff.format]
quote-style = "double"