-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) Β· 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (64 loc) Β· 2.13 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
# Core project metadata
[project]
name = "rabbithole"
version = "0.1.0"
description = "Agent2Agent Protocol - An open protocol enabling communication between AI agents"
# Requires Python 3.10 or higher
requires-python = ">=3.10"
license = { text = "Apache-2.0" } # SPDX identifier for Apache 2.0
# Project authors - can be a list of tables
authors = [
{ name = "VinsmokeSomya", email = "somyadxdalavi007@gmail.com" }
]
# Main project dependencies
dependencies = [
"httpx>=0.27.2",
"httpx-sse>=0.4.0",
"jwcrypto>=1.5.6",
"python-jose>=3.3.0",
"pydantic>=2.10.6",
"pyjwt>=2.10.1",
"sse-starlette>=2.2.1",
"starlette>=0.46.1",
"typing-extensions>=4.12.2",
"uvicorn>=0.34.0",
"click>=8.1.8",
"python-dotenv>=1.1.0",
"openai~=1.76.0",
"openai-agents~=0.0.15",
"google-adk==0.4.0",
"asyncclick~=8.1.8",
"litellm>=1.36.0",
"google-generativeai>=0.5.0",
"streamlit>=1.33.0",
"deprecated"
]
# Optional dependencies - grouped by purpose
[project.optional-dependencies]
# For OpenAI specific agent functionality
oai = ["openai~=1.76.0","openai-agents~=0.0.15"]
# For Google ADK specific agent functionality
adk = ["google-adk==0.4.0", "litellm>=1.36.0"]
# Development and testing tools
dev = [
"pytest>=8.3.5",
"pytest-mock>=3.14.0",
"ruff>=0.11.2"
]
# Project URLs
[project.urls]
Homepage = "https://github.com/VinsmokeSomya/RabbitHole" # Updated to your repo
Documentation = "https://github.com/VinsmokeSomya/RabbitHole" # Updated to your repo
# Build system configuration (using Hatchling)
[build-system]
requires = ["hatchling"] # Specifies Hatchling as the build tool
build-backend = "hatchling.build"
# Hatch build configuration
[tool.hatch.build.targets.wheel]
# Specifies the package directory to include in the wheel
packages = ["rabbithole"]
[project.scripts]
rabbithole-cli = "rabbithole.cli.__main__:main"
rabbithole-adk-server = "rabbithole.agent.adk.__main__:main"
# rabbithole-oai-server = "rabbithole.agent.oai.__main__:main" # If you have an OAI server entry point
rabbithole-streamlit = "rabbithole.ui.streamlit_app:run_streamlit_app" # Entry point for Streamlit app