initial commit

This commit is contained in:
2026-08-02 15:52:46 +03:30
commit e0a7d3ec02
12 changed files with 1959 additions and 0 deletions

47
pyproject.toml Normal file
View File

@@ -0,0 +1,47 @@
[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"