-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
223 lines (200 loc) · 5.12 KB
/
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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{name = "Justin Flannery", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
dependencies = [
"click~=8.1.7",
"rich~=13.5.3",
"prompt-toolkit~=3.0.39",
"langchain~=0.2.9",
"langchain-community~=0.2.7",
"langchain-openai~=0.1.17",
"numpy~=1.24.4; python_version < '3.9'",
"numpy~=1.26.1; python_version > '3.8'"
]
description = "A simple CLI to chat with LLM Models"
dynamic = ["version"]
keywords = ["openai", "rich", "cli", "python", "chatgpt"]
license = "MIT"
name = "llm-term"
readme = "README.md"
requires-python = ">=3.8,<4"
[project.optional-dependencies]
all = [
"langchain-anthropic~=0.1.20",
"langchain-mistralai~=0.1.10"
]
anthropic = ["langchain-anthropic~=0.1.20"]
mistralai = ["langchain-mistralai~=0.1.10"]
[project.scripts]
llm-term = "llm_term.cli:cli"
[project.urls]
Changelog = "https://github.com/juftin/llm-term/releases"
Documentation = "https://juftin.github.io/llm-term"
Issues = "https://juftin.github.io/llm-term/issues"
Source = "https://github.com/juftin/llm-term"
[tool.coverage.paths]
llm_term = ["llm_term", "*/llm-term/llm_term"]
tests = ["tests", "*/llm-term/tests"]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:"
]
[tool.coverage.run]
branch = true
omit = [
"llm_term/__about__.py"
]
parallel = true
source_pkgs = ["llm_term", "tests"]
[[tool.hatch.envs.all.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[tool.hatch.envs.default]
dependencies = [
"coverage[toml]>=6.5",
"pytest"
]
features = ["all"]
post-install-commands = [
"pre-commit install"
]
pre-install-commands = [
"pip install -q -r requirements.txt --no-deps"
]
type = "virtual"
[tool.hatch.envs.default.scripts]
cov = [
"test-cov",
"cov-report"
]
cov-report = [
"- coverage combine",
"coverage report -m"
]
test = "pytest {args:tests}"
test-cov = "coverage run -m pytest {args:tests}"
[tool.hatch.envs.docs]
dependencies = [
"mkdocs~=1.5.2",
"mkdocs-material~=9.2.3",
"mkdocstrings~=0.22.0",
"markdown-exec[ansi]~=1.6.0",
"mkdocs-click~=0.8.1"
]
[tool.hatch.envs.docs.scripts]
build = ["mkdocs build --clean --strict"]
deploy = ["mkdocs gh-deploy {args:}"]
serve = ["mkdocs serve --dev-addr localhost:8080 --livereload"]
[tool.hatch.envs.gen]
dependencies = [
"pip-tools~=7.1.0"
]
detached = true
[tool.hatch.envs.gen.scripts]
release = [
"npm install --prefix .github/semantic_release/",
"npx --prefix .github/semantic_release/ semantic-release {args:}"
]
reqs = "pip-compile {args:} --generate-hashes --output-file requirements.txt --all-extras"
reqs-update = "pip-compile {args:} --upgrade --generate-hashes --output-file requirements.txt --all-extras"
[tool.hatch.envs.lint]
dependencies = [
"mypy>=1.6.1",
"ruff~=0.1.4"
]
detached = true
[tool.hatch.envs.lint.scripts]
all = [
"style",
"typing"
]
fmt = [
"ruff format {args:.}",
"ruff --fix {args:.}",
"style"
]
precommit = [
"pre-commit run --all-files"
]
style = [
"ruff {args:.}",
"ruff format --check --diff {args:.}"
]
typing = "mypy --install-types --non-interactive {args:llm_term tests}"
[tool.hatch.version]
path = "llm_term/__about__.py"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
ignore = [
# Allow non-abstract empty methods in abstract base classes
"B027",
# Boolean-typed positional argument in function definition
"FBT001",
# Allow boolean positional values in function calls, like `dict.get(... True)`
"FBT003",
# Ignore checks for possible passwords
"S105",
"S106",
"S107",
# Ignore complexity
"C901",
"PLR0911",
"PLR0912",
"PLR0913",
"PLR0915"
]
line-length = 100
select = [
"A", # flake8-builtins
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"C", # mccabe
"DTZ", # flake8-datetimez
"E", # pycodestyle (Error)
"EM", # flake8-errmsg
"F", # Pyflakes
"FBT", # flake8-boolean-trap
"I", # isort
"ICN", # flake8-import-conventions
"N", # pep8-naming
"PLC", # Pylint (Convention message)
"PLE", # Pylint (Error message)
"PLR", # Pylint (Refactor message)
"PLW", # Pylint (Warning message)
"Q", # flake8-quotes
"RUF", # Ruff-specific rules
"S", # flake8-bandit
"T", # flake8-debugger (T10) and flake8-print (T20)
"TID", # flake8-tidy-imports
"UP", # pyupgrade
"W", # pycodestyle (Warning)
"YTT" # flake8-2020
]
target-version = "py38"
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.isort]
known-first-party = ["llm_term"]
[tool.ruff.per-file-ignores]
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "TID252"]
[tool.ruff.pydocstyle]
convention = "numpy"