-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.16 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
[tool.poetry]
name = "promptlayer"
version = "1.0.39"
description = "PromptLayer is a platform for prompt engineering and tracks your LLM requests."
authors = ["Magniv <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
requests = "^2.31.0"
opentelemetry-api = "^1.26.0"
opentelemetry-sdk = "^1.26.0"
ably = "^2.0.6"
aiohttp = "^3.10.10"
httpx = "^0.27.2"
nest-asyncio = "^1.6.0"
[tool.poetry.group.dev.dependencies]
langchain = "^0.0.260"
behave = "^1.2.6"
pytest = "^8.2.0"
pytest-asyncio = "^0.23.6"
anyio = "^4.3.0"
anthropic = "^0.25.8"
openai = "^1.60.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
indent-width = 4 # mimic Black
target-version = "py38"
[tool.ruff.lint]
ignore = ["E501", "E711", "E712"]
[tool.ruff.lint.isort]
combine-as-imports = true
relative-imports-order = "closest-to-furthest"
known-first-party = ["promptlayer", "tests"]
[tool.ruff.format]
quote-style = "double" # mimic Black
indent-style = "space" # also mimic Black
skip-magic-trailing-comma = false # also mimic Black
line-ending = "auto" # mimic Black