-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1 KB
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
# Project
# --------------------------------
[project]
name = "functional-chatbots"
version = "0.2.0"
description = "Functional LLM Chatbots demo from DjangoCon Europe 2024, refreshed for 2026."
authors = [{ name = "Christian Tanul", email = "tanulchristian@gmail.com" }]
requires-python = ">=3.12"
readme = "README.md"
dependencies = [
"Django>=6.0",
"django-environ>=0.13",
"django-ninja>=1.6.2",
"django-jinja>=2.11",
"django-htmx>=1.27",
"whitenoise>=6.12",
"openai>=2.41",
"pydantic>=2.13",
]
[project.optional-dependencies]
local = [
"watchfiles>=1.2",
"django-extensions>=4.1",
"ruff>=0.15",
]
production = [
"granian>=2.7.5",
]
# ruff
# --------------------------------
[tool.ruff]
line-length = 100
target-version = "py312"
exclude = [".venv", "staticfiles", "*/migrations/*"]
[tool.ruff.lint]
select = ["F", "E", "W", "I", "UP", "B", "SIM", "RUF"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"