-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (58 loc) · 1.6 KB
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
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "fish_ai"
version = "2.13.1"
authors = [{ name = "Bastian Fredriksson", email = "realiserad@gmail.com" }]
description = "Provides core functionality for fish-ai, an AI plugin for the fish shell."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"openai==2.43.0",
"simple-term-menu==1.6.6",
"iterfzf==1.9.0.67.0",
"binaryornot==0.6.0",
"anthropic==0.111.0",
"keyring==25.7.0",
"groq==1.4.0",
"google-genai==2.8.0",
"httpx[socks]==0.28.1",
"boto3==1.43.33",
"aws-bedrock-token-generator==1.1.0"
]
[dependency-groups]
dev = [
"coverage",
"pytest",
"pyfakefs",
"mutatest"
]
[project.urls]
"Homepage" = "https://github.com/realiserad/fish-ai"
"Bug Tracker" = "https://github.com/realiserad/fish-ai/issues"
[project.scripts]
fix = "fish_ai.fix:fix"
codify = "fish_ai.codify:codify"
explain = "fish_ai.explain:explain"
autocomplete = "fish_ai.autocomplete:autocomplete"
switch_context = "fish_ai.switch_context:switch_context"
put_api_key = "fish_ai.put_api_key:put_api_key"
lookup_setting = "fish_ai.config:lookup_setting"
put_setting = "fish_ai.config:put_setting"
refine = "fish_ai.autocomplete:refine_completions"
[tool.ruff]
line-length = 80
[tool.typos.default.extend-words]
certifi = "certifi"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["src/fish_ai/tests"]
[tool.basedpyright]
typeCheckingMode = "basic"