-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (28 loc) · 858 Bytes
/
pyproject.toml
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
[project]
name = "llm-plugin-generator"
version = "0.6"
description = "LLM plugin to generate few-shot prompts for plugin creation"
readme = "README.md"
authors = [{name = "llm-plugin-generator"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"llm",
"click",
"gitpython",
]
[tool.setuptools.package-data]
llm_plugin_generator = ["**/*.xml"]
[project.urls]
Homepage = "https://github.com/irthomasthomas/llm-plugin-generator"
Changelog = "https://github.com/irthomasthomas/llm-plugin-generator/releases"
Issues = "https://github.com/irthomasthomas/llm-plugin-generator/issues"
[project.entry-points.llm]
plugin-generator = "llm_plugin_generator"
[project.optional-dependencies]
test = ["pytest"]
[tool.pytest.ini_options]
addopts = "--assert=plain"
pythonpath = "."