forked from philippe-page/taskflowai
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (104 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
117 lines (104 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[tool.poetry]
name = "taskflowai"
version = "0.5.13"
description = "TaskFlowAI is a lightweight, open-source python framework for building LLM based pipelines and multi-agent teams"
authors = ["Philippe Andre Page <philippeandrepage@gmail.com>"]
readme = "README.md"
packages = [{include = "taskflowai"}]
license = "Apache 2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.10"
requests = "*"
pydantic = ">=2.0"
anthropic = "*"
openai = ">=1.0"
cohere = "*"
beautifulsoup4 = "*"
tqdm = "*"
python-dotenv = "*"
PyYAML = "*"
ollama = "*"
lxml = "*"
halo = "*"
groq = "*"
numpy = "*"
elevenlabs = "*"
faiss-cpu = "*"
pyyaml = "*"
fredapi = "*"
yfinance = "*"
yahoofinance = "*"
pinecone = "*"
sentence_splitter = "*"
igraph = "*"
leidenalg = "*"
fake-useragent = "*"
waitress = "*"
[tool.poetry.extras]
langchain_tools = [
"langchain-core",
"langchain-community",
"langchain-openai"
]
matplotlib_tools = [
"matplotlib"
]
yahoo_finance_tools = [
"yfinance",
"yahoofinance",
"pandas"
]
fred_tools = [
"fredapi",
"pandas"
]
[tool.poetry.dependencies.langchain-core]
version = "*"
optional = true
[tool.poetry.dependencies.langchain-community]
version = "*"
optional = true
[tool.poetry.dependencies.langchain-openai]
version = "*"
optional = true
[tool.poetry.dependencies.matplotlib]
version = "*"
optional = true
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0.0,<9.0.0"
black = ">=23.0,<25.0"
isort = ">=5.0,<6.0"
mypy = ">=1.0,<2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Homepage" = "https://github.com/philippe-page/taskflowai/"
"Bug Tracker" = "https://github.com/philippe-page/taskflowai/issues"
"Documentation" = "https://taskflowai.org"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]