-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (77 loc) · 2.33 KB
/
pyproject.toml
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
[project]
name = "iointel"
dynamic = ["version", "readme"]
description = "A framework to create agents, tasks, and workflows."
requires-python = ">= 3.10"
dependencies = [
"pydantic>=2.10.3",
"docker>=7.1.0",
"sqlalchemy>=2.0.36",
"uvicorn>=0.32.1",
"python-dotenv>=1.0.1",
"fastapi>=0.115.6",
"httpx>=0.28.1",
"pytest>=8.3.4",
"pytest-mock>=3.12.0",
"python-multipart>=0.0.20",
"sqlalchemy-utils>=0.41.2",
"pgvector>=0.3.6",
"solders>=0.23.0",
"solana>=0.36.2",
"langchain-core>=0.3.28",
"controlflow>=0.11.4,<0.12",
]
keywords = ["Agents", "LLM", "framework", "AI", "tools"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
testpaths = ["tests"]
[tool.pytest.ini_options]
timeout = 120
asyncio_mode = "auto"
norecursedirs = [
"*.egg-info",
".git",
".mypy_cache",
".pytest_cache",
".ruff_cache",
".vscode",
"node_modules",
]
[project.optional-dependencies]
tests = [
"pytest-asyncio>=0.18.2,!=0.22.0,<0.23.0",
"pytest-rerunfailures>=10,<14",
"pytest-sugar>=0.9,<2.0",
"pytest>=7.0",
"pytest-timeout",
"pytest-xdist",
"pytest-dotenv",
]
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["iointel"]
[tool.hatch.version]
path = "iointel/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
fragments = [
{path = 'README.md'},
]
substitutions = [
# convert GitHub issue/PR numbers and handles to links
{pattern = '(\s+)#(\d+)', replacement = '\1[#\2](https://github.com/ionet-official/iointel/issues/\2)'},
{pattern = '(\s+)@([\w\-]+)', replacement = '\1[@\2](https://github.com/\2)'},
{pattern = '@@', replacement = '@'},
# highlight sections which don't have anchors
# see https://github.com/pypa/readme_renderer/issues/169#issuecomment-808577486
{pattern = '(\n##+\s+[^<]*?)\n', replacement = '\1 (MISSING ANCHOR)\n'},
# strip whitespace between section name and anchor
{pattern = '(\n##+\s+.*?)\s*(<a .*\n)', replacement='\1\2'},
# replace Github-styled callout (not supported on pypi) with just bold
{pattern = '\[!(NOTE|TIP|IMPORTANT|WARNING|CAUTION)\]', replacement = '**\1**:'},
]