-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (91 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
101 lines (91 loc) · 2.26 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
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
[project]
name = "gbot"
dynamic = ["version"]
description = "LangGraph-based AI assistant framework"
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
authors = [{name = "GBot Contributors"}]
keywords = ["langgraph", "agent", "llm", "fastapi", "ai-assistant", "chatbot", "sqlite"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
# LangGraph & LangChain
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
# LLM Providers
"litellm>=1.0.0",
"openrouter>=0.7.0",
# API
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
# Core
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"pyyaml>=6.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.26.0",
# Background
"apscheduler>=3.10.0",
"croniter>=1.3.0",
# Web search
"duckduckgo-search>=8.0.0",
# Logging
"loguru>=0.7.0",
# Auth
"PyJWT>=2.8.0",
"bcrypt>=4.0.0",
# CLI
"typer>=0.9.0",
"rich>=13.0.0",
"prompt_toolkit>=3.0.0",
"sqlite-vec>=0.1.7",
]
[project.urls]
Repository = "https://github.com/omrylcn/gbot"
Changelog = "https://github.com/omrylcn/gbot/blob/main/CHANGELOG.md"
[project.scripts]
gbot = "gbot_cli.commands:app"
[project.optional-dependencies]
channels = [
"python-telegram-bot>=21.0",
"websockets>=12.0",
]
rag = [
"faiss-cpu>=1.7.4",
"sentence-transformers>=2.3.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.26.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "gbot/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["gbot", "gbot_cli"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-m 'not integration'"
markers = [
"integration: Integration tests (require running server on localhost:8000)",
]
[dependency-groups]
dev = [
"jupyterlab>=4.5.4",
]