-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.41 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
[tool.poetry]
name = "nebuly"
version = "0.3.36"
description = "The SDK for instrumenting applications for tracking AI costs."
authors = ["Nebuly"]
readme = "README.md"
packages = [{ include = "nebuly" }]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
packaging = "^23.2"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^7.4.3"
pylint = "^2.17.5"
ruff = "^0.0.287"
mypy = "^1.5.1"
hypothesis = "^6.84.0"
openai = { extras = ["datalib"], version = "^1.1.0" }
isort = "^5.12.0"
bandit = "^1.7.5"
safety = "^2.3.5"
pre-commit = "^3.4.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
google-cloud-aiplatform = "^1.42.1"
cohere = "^4.48"
anthropic = "^0.16.0"
langchain = "^0.3.0"
langchain-openai = "^0.2.0"
google-generativeai = "^0.3.2"
transformers = "^4.38.0"
torch = ">=1.13.1"
boto3 = "^1.34.47"
types-urllib3 = "^1.26.25.14"
llama-index = "^0.10.11"
faiss-cpu = "^1.7.4"
langchainhub = "^0.1.21"
huggingface-hub = "^0.20.3"
langgraph = "^0.2.34"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.messages_control]
disable = [
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"too-few-public-methods",
"fixme",
]
[tool.pylint.format]
max-line-length = 88
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
[tool.coverage.html]
show_contexts = true
[tool.mypy]
strict = true