-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 814 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 814 Bytes
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
[project]
name = "trendscope-langchain"
version = "0.1.0"
description = "A compact LangChain RAG assistant for turning trend notes and articles into grounded project ideas."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12.0",
"langchain>=0.3.0",
"langchain-community>=0.3.0",
"langchain-core>=0.3.0",
"langchain-openai>=0.2.0",
"langchain-text-splitters>=1.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
ollama = [
"langchain-ollama>=0.2.0",
]
[project.scripts]
trendscope = "trendscope.cli:main"
trendscope-web = "trendscope.web:main"
[tool.setuptools.packages.find]
include = ["trendscope*"]
exclude = ["data*", "tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]