-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 739 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (24 loc) · 739 Bytes
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
[tool.poetry]
name = "ai-data-analysis-guiderail"
version = "2.0.0-alpha.1"
description = "An advanced data analysis and conditional completions API using OpenAI's GPT models."
authors = ["@ruvnet"]
[tool.poetry.dependencies]
python = ">=3.12,<4"
fastapi = "0.141.1"
httpx = "0.28.1"
pydantic = "2.13.5"
requests = "2.34.2"
uvicorn = "0.52.4"
regex = "2026.9.10"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"