forked from phy101/opencanvaspython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (63 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
75 lines (63 loc) · 1.56 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
72
73
74
75
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ninja-open-canvas"
version = "0.0.1"
description = "Fork of the langchain Open Canvas"
authors = ["stan <kmihaltsov@gmail.com>"]
readme = "README.md"
packages = [
{ include = "infra" },
{ include = "agents" },
{ include = "shared" }
]
[[tool.poetry.source]]
name = "ninjapypi"
# "Ninja PyPi - cache of both internal and external packages"
url = "https://ninja-tech-ai-591753572006.d.codeartifact.us-west-2.amazonaws.com/pypi/ninja-py-pi/simple"
priority = "primary"
[tool.poetry.dependencies]
#
# Main Dependencies
#
python = "~3.12"
boto3 = "^1.26.116"
ddtrace = "^2.7.4"
langgraph = "^0.3.8"
langchain = "^0.3.20"
langchain_openai = "^0.3.8"
langchain-community = "*"
langchain-core = "^0.3.44"
langchain-anthropic = "*"
langchain-google-genai = "*"
tavily-python = "*"
supabase = "*"
websockets = "*"
langgraph-checkpoint-postgres = "*"
pydantic = "^2.5.2"
typing-extensions = "^4.8.0"
python-dotenv = "^1.0.0"
pypdf2 = "^3.0.1"
[tool.poetry.group.infra]
#
# Infra Dependencies
#
optional = true
[tool.poetry.group.infra.dependencies]
aws-cdk-lib = "^2.146.0"
constructs = "^10.2.47"
ninja-common = "^3.0.327"
ninja-common-infra= "^3.0.11"
ninja-common-canary-cdk = "^8.0.13"
ninja-test-session-helpers = "^0.1.13"
aws-cdk-aws-scheduler-alpha = "^2.101.1a0"
aws-cdk-aws-scheduler-targets-alpha = "^2.101.1a0"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 100
filter_files = true
combine_as_imports = true