-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.22 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperflow-ai"
version = "1.1.0"
description = "A self-improving agent framework built on LangChain and LangGraph"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Muhammad Umer Farooq", email = "umer@lablnet.com"},
]
keywords = ["agent", "self-improving", "meta-learning", "langchain", "langgraph", "evolutionary"]
dependencies = [
"langchain>=0.3",
"langchain-core>=0.3",
"langgraph>=0.4",
"langchain-openai>=0.3",
"langchain-anthropic>=0.3",
"langchain-google-genai>=2.1",
"langchain-ollama>=0.3",
"docker>=7.0",
"python-dotenv>=1.0",
"gitpython>=3.1",
"pydantic>=2.0",
"click>=8.1",
]
[project.urls]
"Homepage" = "https://github.com/lablnet/HyperFlow"
"Bug Reports" = "https://github.com/lablnet/HyperFlow/issues"
"Source" = "https://github.com/lablnet/HyperFlow"
"Changelog" = "https://github.com/lablnet/HyperFlow/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"ruff>=0.4",
"mypy>=1.10",
]
[tool.setuptools.packages.find]
include = ["hyperflow*"]
[tool.ruff]
target-version = "py311"
line-length = 120