-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
36 lines (32 loc) · 921 Bytes
/
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
[tool.poetry]
name = "lunary"
version = "1.2.5"
description = "Observability, analytics and evaluations for AI agents and chatbots."
authors = ["lunary <[email protected]>"]
readme = "README.md"
repository = "https://github.com/lunary-ai/lunary-py"
documentation = "https://lunary.ai/docs/py"
keywords = ["Lunary", "lunary.ai", "Langchain", "AI", "Analytics", "Monitoring"]
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0"
requests = "^2.31.0"
setuptools = ">=72.1.0"
tenacity = "^8.2.3"
packaging = "^23.2"
chevron = "^0.14.0"
pyhumps = "^3.8.0"
aiohttp = "^3.9.5"
jsonpickle = "^3.0.4"
pydantic = "^2.10.2"
[tool.poetry.group.dev.dependencies]
langchain-core = "^0.3.13"
openai = "^1.12.0"
pytest = "^8.3.3"
greenlet = "^3.1.1"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"