-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.3 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
[project]
name = "sassyshell"
version = "0.1.6"
description = "A sassy, AI-powered CLI sidekick that remembers the commands you forget and mocks you into getting better."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = ["cli", "ai", "shell", "productivity", "developer-tools", "linux", "terminal"]
authors = [
{ name = "Parth Jain", email = "parthjain1812@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Terminals",
"Topic :: Utilities",
]
dependencies = [
"pydantic-settings>=2.11.0",
"scikit-learn>=1.7.2",
"typer>=0.19.2",
"langchain>=0.3.27",
"langchain-ollama>=0.3.10",
"langchain-google-genai>=2.1.12",
"langchain-groq>=0.3.8",
"langchain-openai>=0.3.35",
"langchain-anthropic>=0.3.22",
"grpcio==1.67.1",
]
[project.scripts]
sassyshell = "sassyshell.cli:app"
sassysh = "sassyshell.cli:app"
[tool.uv]
override-dependencies = [ # Annoying warnings/logs
"grpcio==1.67.1",
]
package = true
[project.urls]
Homepage = "https://github.com/parthjain18/sassyshell"
Issues = "https://github.com/parthjain18/sassyshell/issues"