-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 775 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 775 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
[project]
name = "llm-classify"
version = "0.1"
description = "LLM plugin for content classification using various language models"
readme = "README.md"
authors = [{name = "Thomas Thomas Hughes", email = "irthomasthomas@gmail.com"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"llm",
"click",
]
[project.urls]
Homepage = "https://github.com/irthomasthomas/llm-classifier"
Changelog = "https://github.com/irthomasthomas/llm-classifier/releases"
Issues = "https://github.com/irthomasthomas/llm-classifier/issues"
[project.entry-points.llm]
classify = "llm_classify"
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.setuptools]
packages = ["llm_classify"]