-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.11 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
[tool.poetry]
name = "agentools"
version = "0.1.1"
description = ""
authors = ["phamdinhkhanh <phamdinhkhanh.tkt53.neu@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
langchain-core = "0.3.41"
langchain-openai = "0.3.7"
langchain-together = "0.3.0"
python-dotenv = "1.0.0"
pandas = "2.2.3"
numpy = { version = "^1.26.0", optional = true }
matplotlib = "3.7.1"
plotly = "5.22.0"
yfinance = "0.2.54"
tavily-python = { version = "^0.3.1", optional = true }
googlenewsdecoder = "0.1.7"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
black = "^24.4.2"
python-dotenv = "^1.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-cov = "^6.0.0"
pandas = "2.2.3"
numpy = { version = "^1.26.0", optional = true }
matplotlib = "3.7.1"
plotly = "5.22.0"
yfinance = "0.2.54"
tavily-python = { version = "^0.3.1", optional = true }
googlenewsdecoder = "0.1.7"
[tool.black]
line-length = 88
target-version = ["py310"]
exclude = '''
/(
\.git
| \.venv
| build
| dist
| .*\.ipynb
/)
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"