-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.39 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
[project]
name = "galacticview-agent"
version = "0.1.0"
description = ""
authors = [
{name = "Levente Daroczi",email = "daroczilevente2@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"langchain (>=1.1.0,<2.0.0)",
"langchain-ollama (>=1.0.0,<2.0.0)",
"langchain-chroma (>=1.0.0,<2.0.0)",
"pydantic (>=2.12.4,<3.0.0)",
"langgraph (>=1.0.3,<2.0.0)",
"ddgs (>=9.9.1,<10.0.0)",
"langchain-tavily (>=0.2.13,<0.3.0)",
"tavily-python (>=0.7.13,<0.8.0)",
"langchain-groq (>=1.1.0,<2.0.0)",
"loguru (>=0.7.3,<0.8.0)",
"fastapi[standard] (>=0.123.0,<0.124.0)",
"slowapi (>=0.1.9,<0.2.0)",
]
[project.scripts]
# Optional console script to run the CLI: `poetry run galacticview_cli`
galacticview_cli = "galacticview_bot.cli:main"
galacticview_app = "server.serve:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
# Include the main package
packages = [
{ include = "galacticview_bot" }
]
[tool.mypy]
python_version = "3.12"
check_untyped_defs = true
disallow_untyped_defs = true
warn_unused_ignores = true
exclude = ["tests/.*", "bin/.*"]
[project.optional-dependencies]
dev = [
"ruff (>=0.14.7,<0.15.0)",
"mypy (>=1.19.0,<2.0.0)",
"pytest (>=9.0.1,<10.0.0)",
"types-requests (>=2.32.4.20250913,<3.0.0.0)",
"types-urllib3 (>=1.26.25.14,<2.0.0.0)"
]