-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 856 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
[project]
name = "llm-docsmith"
version = "0.3.1"
description = "Generate Python docstrings automatically with LLM and syntax trees."
readme = "README.md"
authors = [{name = "Matheus Pedroni"}]
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"libcst>=1.7.0",
"llm>=0.23",
"pydantic>=2.10.6",
]
requires-python = ">=3.12"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"pytest>=8.3.5",
]
[project.urls]
Homepage = "https://github.com/mathpn/llm-docsmith"
Changelog = "https://github.com/mathpn/llm-docsmith/releases"
Issues = "https://github.com/mathpn/llm-docsmith/issues"
[project.entry-points.llm]
docsmith = "docsmith"
[project.optional-dependencies]
test = ["pytest"]