-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
105 lines (95 loc) · 2.9 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tool.poetry]
name = "aidial-sdk"
version = "0.16.0rc"
description = "Framework to create applications and model adapters for AI DIAL"
authors = ["EPAM RAIL <[email protected]>"]
homepage = "https://epam-rail.com"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/epam/ai-dial-sdk"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
fastapi = ">=0.51,<1.0"
uvicorn = ">=0.19,<1.0"
pydantic = ">=1.10,<3"
wrapt = ">=1.10,<2"
# Telemetry extras
opentelemetry-sdk = {version = "^1.20.0", optional = true}
opentelemetry-api = {version = "^1.20.0", optional = true}
opentelemetry-exporter-otlp-proto-grpc = {version = "^1.20.0", optional = true}
opentelemetry-instrumentation-aiohttp-client = {version = ">=0.41b0", optional = true}
opentelemetry-instrumentation-fastapi = {version = ">=0.41b0", optional = true}
opentelemetry-instrumentation-httpx = {version = ">=0.41b0", optional = true}
opentelemetry-instrumentation-logging = {version = ">=0.41b0", optional = true}
opentelemetry-instrumentation-requests = {version = ">=0.41b0", optional = true}
opentelemetry-instrumentation-system-metrics = {version = ">=0.41b0", optional = true}
opentelemetry-instrumentation-urllib = {version = ">=0.41b0", optional = true}
opentelemetry-exporter-prometheus = {version = ">=0.41b0", optional = true}
prometheus-client = {version = ">=0.17.1,<=0.21", optional = true}
[tool.poetry.extras]
telemetry = [
"opentelemetry-sdk",
"opentelemetry-api",
"opentelemetry-exporter-otlp-proto-grpc",
"opentelemetry-instrumentation-aiohttp-client",
"opentelemetry-instrumentation-fastapi",
"opentelemetry-instrumentation-httpx",
"opentelemetry-instrumentation-logging",
"opentelemetry-instrumentation-requests",
"opentelemetry-instrumentation-system-metrics",
"opentelemetry-instrumentation-urllib",
"opentelemetry-exporter-prometheus",
"prometheus-client",
]
[tool.poetry.group.test.dependencies]
pytest = "^8.2"
pytest-asyncio = "^0.24.0"
nox = "^2023.4.22"
pillow = "^10.2.0"
httpx = "^0.25.0"
respx = "^0.21.1"
aiohttp = "^3.8.3"
aioresponses = "^0.7.6"
requests = "^2.19"
responses = "^0.25.3"
[tool.poetry.group.lint.dependencies]
flake8 = "^6.0.0"
black = ">=23.3,<25.0"
isort = "^5.12.0"
pyright = "1.1.385"
autoflake = "^2.2.0"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
addopts = "--asyncio-mode=auto"
testpaths = [
"tests"
]
[tool.pyright]
typeCheckingMode = "basic"
reportUnusedVariable = "error"
reportIncompatibleMethodOverride = "error"
exclude = [
".git",
"**/.venv",
".nox",
".pytest_cache",
"**/__pycache__",
"build",
"examples/langchain_rag"
]
[tool.black]
line-length = 80
[tool.isort]
line_length = 80
profile = "black"
[tool.autoflake]
ignore_init_module_imports = true
remove_all_unused_imports = true
in_place = true
recursive = true
quiet = true
exclude = [
".nox",
".pytest_cache",
"\\.venv"
]