-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 849 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
[project]
name = "llm-tools-patch"
version = "0.2"
description = "LLM tools for reading, writing and changing text files"
readme = "README.md"
authors = [{name = "Danny O'Brien", email = "[email protected]"}]
license = "Apache-2.0"
classifiers = []
requires-python = ">=3.9"
dependencies = [
"llm>=0.26",
"pydantic"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/dannyob/llm-tools-patch"
Changelog = "https://github.com/dannyob/llm-tools-patch/releases"
Issues = "https://github.com/dannyob/llm-tools-patch/issues"
CI = "https://github.com/dannyob/llm-tools-patch/actions"
[project.entry-points.llm]
llm_tools_patch = "llm_tools_patch"
[project.optional-dependencies]
test = ["pytest", "llm-echo>=0.3a1"]
[tool.setuptools]
py-modules = ["llm_tools_patch"]