-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 805 Bytes
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
[project]
name = "opencanvaspython"
version = "0.1.0"
description = "OpenCanvas Python Implementation. This code is ported from Typescript to Python. Original Typescript code by Brace Sproul. Ported to Python by Paulo Hermanny"
authors = [
{ name = "Brace Sproul" },
{ Ported by = "Paulo Hermanny" },
]
dependencies = [
"langgraph",
"langchain",
"langchain-openai",
"langchain-anthropic",
"langchain-google-genai",
"pydantic",
"python-dotenv",
"tavily-python",
"langchain-community",
"langchain-core",
"supabase",
"websockets"
]
[project.optional-dependencies]
dev = ["mypy>=1.11.1", "ruff>=0.6.1"]
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["agents", "shared"]