Files
chatbot_v3/pyproject.toml
2026-08-02 15:52:46 +03:30

48 lines
698 B
TOML

[project]
name = "new-chatbot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]==0.141.1",
"pydantic-settings>=2.14.2",
]
[dependency-groups]
dev = [
"ruff>=0.16.1",
"ty>=0.0.65",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# pyflakes
"F",
# isort
"I",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# flake8-simplify
"SIM",
# Ruff-specific rules
"RUF",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ty.environment]
python-version = "3.13"