-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.73 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
[project]
name = "docspatch"
version = "0.1.0"
description = "AI-powered documentation generation for Python projects"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.14"
authors = [{name = "grimmy_dev", email = "grimmy024@gmail.com"}]
keywords = ["documentation", "docstring", "readme", "ai", "llm", "cli", "developer-tools"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"typer>=0.15",
"rich>=13",
"langchain-anthropic>=1.4.3",
"langchain-openai>=1.2.1",
"langchain-google-genai>=4.2.2",
"questionary>=2.1.1",
"tomli-w>=1.2.0",
"libcst>=1.8.6",
"pathspec>=1.1.1",
"langgraph>=1.2.0",
"langgraph-checkpoint-sqlite>=3.1.0",
]
[project.urls]
Homepage = "https://github.com/grimmy-dev/docspatch_v2"
Repository = "https://github.com/grimmy-dev/docspatch_v2.git"
Issues = "https://github.com/grimmy-dev/docspatch_v2/issues"
[project.scripts]
dp = "docspatch.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/docspatch"]
[dependency-groups]
dev = [
"pytest>=8",
"pytest-cov>=6",
"pytest-asyncio>=1",
"mypy>=2.1.0",
"ruff>=0.9",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
src = ["src"]
target-version = "py314"
line-length = 140
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = []