-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
72 lines (64 loc) · 1.9 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ra-aid"
dynamic = ["version"]
description = "RA.Aid - ReAct Aid"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
keywords = ["langchain", "ai", "agent", "tools", "development"]
authors = [{name = "AI Christianson", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"langchain-anthropic>=0.3.1",
"langchain-openai",
"langchain-google-genai",
"langgraph>=0.2.60",
"langgraph-checkpoint>=2.0.9",
"langgraph-sdk>=0.1.48",
"langchain-core>=0.3.28",
"langchain>=0.3.13",
"rich>=13.0.0",
"GitPython>=3.1",
"fuzzywuzzy==0.18.0",
"rapidfuzz>=3.11.0",
"pathspec>=0.11.0",
"aider-chat>=0.72.1",
"tavily-python>=0.5.0",
"litellm",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"websockets>=12.0",
"jinja2>=3.1.2"
]
[project.optional-dependencies]
dev = [
"pytest-timeout>=2.2.0",
"pytest>=7.0.0",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
]
[project.scripts]
ra-aid = "ra_aid.__main__:main"
[project.urls]
Homepage = "https://github.com/ai-christianson/ra-aid"
Documentation = "https://github.com/ai-christianson/ra-aid#readme"
Repository = "https://github.com/ai-christianson/ra-aid.git"
Issues = "https://github.com/ai-christianson/ra-aid/issues"
[tool.setuptools.dynamic]
version = {attr = "ra_aid.version.__version__"}
[tool.hatch.version]
path = "ra_aid/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["ra_aid"]