-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.31 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
[project]
name = "guardrails-api"
dynamic = ["version"]
description = "Guardrails API"
authors = [
{name = "Guardrails AI", email = "[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["Guardrails", "Guardrails AI", "Guardrails API", "Guardrails API"]
requires-python = ">= 3.8.1"
dependencies = [
"guardrails-ai>=0.5.12",
"jsonschema>=4.22.0,<5",
"referencing>=0.35.1,<1",
"boto3>=1.34.115,<2",
"psycopg2-binary>=2.9.9,<3",
"litellm>=1.39.3,<2",
"typer>=0.9.4,<1",
"opentelemetry-api>=1.0.0,<2",
"opentelemetry-sdk>=1.0.0,<2",
"opentelemetry-exporter-otlp-proto-grpc>=1.0.0,<2",
"opentelemetry-exporter-otlp-proto-http>=1.0.0,<2",
"opentelemetry-instrumentation-fastapi>=0.48b0",
"requests>=2.32.3",
"aiocache>=0.11.1",
"fastapi>=0.114.1",
"SQLAlchemy>=2.0.34",
"uvicorn>=0.30.6",
]
[tool.setuptools.dynamic]
version = {attr = "guardrails_api.__version__"}
[project.scripts]
guardrails-api = "guardrails_api.cli:cli"
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"coverage",
"pytest-mock",
"gunicorn>=22.0.0,<23",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rP"
testpaths = [
"tests"
]
pythonpath = [
".", "guardrails_api"
]
[tool.pyright]
include = ["guardrails_api"]