-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
100 lines (91 loc) · 2.38 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
[tool.poetry]
name = "aidial-adapter-vertexai"
version = "0.13.0rc"
description = "DIAL adapter for Google Vertex AI"
authors = ["EPAM RAIL <[email protected]>"]
homepage = "https://epam-rail.com"
documentation = "https://epam-rail.com/dial_api"
license = "Apache-2.0"
readme = "README.md"
keywords = ["ai"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
repository = "https://github.com/epam/ai-dial-adapter-vertexai/"
[tool.poetry.dependencies]
python = "~3.11"
# TODO: move to new version, when it's released
#aidial-sdk = {version = "0.14.0", extras = ["telemetry"]}
aidial-sdk = {git = "https://github.com/epam/ai-dial-sdk.git", branch = "feat/add-static-functions", extras = ["telemetry"]}
fastapi = "0.115.2"
google-cloud-aiplatform = "^1.70.0"
google-auth = "2.21.0"
openai = "1.13.3"
pydantic = "1.10.13"
uvicorn = "0.22.0"
aiocache = "0.12.2"
pillow = "^10.3.0"
pypdf = {version = "^4.3.1", extras = ["crypto"]}
numpy = "^2.0.0"
aiohttp = "^3.10.2"
[tool.poetry.group.test.dependencies]
pytest = "7.4.0"
pytest-asyncio = "0.21.1"
python-dotenv = "1.0.0"
requests = "^2.32.2"
pytest-dotenv = "^0.5.2"
pytest-xdist = "^3.5.0"
asgi-lifespan = "^2.1.0"
httpx = "^0.25.2"
[tool.poetry.group.lint.dependencies]
autoflake = "2.2.0"
black = "24.3.0"
flake8 = "6.0.0"
isort = "5.12.0"
pyright = "1.1.324"
[tool.poetry.group.dev.dependencies]
nox = "^2023.4.22"
google-auth-oauthlib = "1.0.0"
[tool.pytest.ini_options]
addopts = "-n=auto --asyncio-mode=auto"
env_override_existing_values = 1
# muting warnings from google.rpc https://github.com/googleapis/google-cloud-python/issues/11184 and opentelemetry packages
filterwarnings = [
"ignore:Deprecated call to `pkg_resources\\.declare_namespace\\('.*'\\):DeprecationWarning",
"ignore::DeprecationWarning:google.rpc",
"ignore::DeprecationWarning:opentelemetry.instrumentation.dependencies"
]
[tool.pyright]
typeCheckingMode = "basic"
reportUnusedVariable = "error"
reportIncompatibleMethodOverride = "error"
exclude = [
".git",
".venv",
".nox",
"**/__pycache__",
"~*"
]
[tool.black]
line-length = 80
exclude = '''
/(
\.git
| \.venv
| \.nox
| \.__pycache__
)/
'''
[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 = [
"\\.venv",
"\\.nox",
]