-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.29 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
[tool.poetry]
name = "criticalpath_ai"
version = "0.1.0"
description = "Criticalpath AI with Graph KnowledgeBase"
readme = "README.md"
authors = ["Priyank"]
packages = [
{ include = "backend" },
# { include = "" }
]
[tool.poetry.dependencies]
python = ">=3.11,<3.15"
anthropic = "^0.75.0"
google-genai = "^1.56.0"
openai = "^2.14.0"
portkey-ai = "^2.1.0"
python-dotenv = "^1.2.1"
fastapi = {extras = ["standard"], version = "^0.128.7"}
uvicorn = { version = "^0.27", extras = ["standard"] }
pandas = "^2.2"
numpy = "^1.26"
networkx = "^3.2"
pydantic = "^2.6"
pytest = "^9.0.2"
# Optional deps (to power extras like .[modal])
modal = { version = "^0.73.0", optional = true }
prime-sandboxes = { version = "^0.2.0", optional = true }
dill = { version = "^0.3.7", optional = true }
pyngrok = "^7.5.0"
azure-functions = "^1.24.0"
azure-storage-blob = "^12.28.0"
[tool.poetry.extras]
modal = ["modal", "dill"]
prime = ["prime-sandboxes", "dill"]
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.5.1"
ruff = "^0.14.10"
ty = "^0.0.7"
[tool.poetry.group.test.dependencies]
pytest-asyncio = "^1.3.0"
pytest = "^9.0.2"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP"]
ignore = ["E501"]
#[tool.poetry.scripts]
#criticalpath = "criticalpath_ai.cli:main"