-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 1.98 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tradegraph-financial-advisor"
version = "1.0.0"
description = "Multi-agent financial analysis system using LangGraph, ddgs, and Crawl4AI for trading recommendations"
authors = [{name = "TradeGraph Team", email = "team@tradegraph.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
keywords = ["financial-analysis", "trading", "langgraph", "ddgs", "crawl4ai", "mcp", "multi-agent"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"langgraph>=0.2.0",
"langchain>=0.3.0",
"langchain-openai>=0.2.0",
"ddgs~=9.9",
"crawl4ai~=0.7",
"mcp>=1.0.0",
"requests>=2.31.0",
"aiohttp>=3.9.0",
"beautifulsoup4>=4.12.0",
"feedparser>=6.0.0",
"pandas>=2.1.0",
"numpy>=1.24.0",
"python-dotenv>=1.0.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.0.0",
"asyncio>=3.4.3",
"loguru>=0.7.0",
"alpha-vantage>=2.3.0",
"python-dateutil>=2.8.0",
"plotly>=5.15.0",
"kaleido>=0.2.1",
"duckdb>=0.10.0",
"fastapi>=0.118.0",
"reportlab>=4.0.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black==23.3.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pre-commit>=3.4.0",
]
[project.scripts]
tradegraph = "tradegraph_financial_advisor.main:cli_main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true