-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.35 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "summarize-refine"
version = "0.1.0"
description = "A LangGraph-based document summarization agent using iterative refinement"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["langgraph", "langchain", "summarization", "llm", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"langgraph>=0.2.0",
"langchain>=0.3.0",
"langchain-core>=0.3.0",
"langchain-community>=0.3.0",
"langchain-text-splitters>=0.3.0",
"langchain-openai>=0.2.0",
"pypdf>=4.0.0",
"aiohttp>=3.9.0",
"aiofiles>=23.0.0",
"beautifulsoup4>=4.12.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
anthropic = ["langchain-anthropic>=0.2.0"]
google = ["langchain-google-genai>=2.0.0"]
groq = ["langchain-groq>=0.2.0"]
ollama = ["langchain-ollama>=0.2.0"]
firecrawl = ["firecrawl-py>=1.0.0"]
unstructured = [
"unstructured>=0.15.0",
"python-docx>=1.0.0",
"python-pptx>=0.6.0",
"openpyxl>=3.1.0",
]
all = [
"langchain-anthropic>=0.2.0",
"langchain-google-genai>=2.0.0",
"langchain-groq>=0.2.0",
"langchain-ollama>=0.2.0",
"firecrawl-py>=1.0.0",
"unstructured>=0.15.0",
"python-docx>=1.0.0",
"python-pptx>=0.6.0",
"openpyxl>=3.1.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/summarize-refine"
Documentation = "https://github.com/yourusername/summarize-refine#readme"
Repository = "https://github.com/yourusername/summarize-refine"
Issues = "https://github.com/yourusername/summarize-refine/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["summarize_refine*"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]