mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 15:56:56 +00:00
26 lines
566 B
TOML
26 lines
566 B
TOML
[project]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"django>=6.0.4",
|
|
"django-cors-headers>=4.9.0",
|
|
"django-environ>=0.13.0",
|
|
"djangorestframework>=3.17.1",
|
|
"djangorestframework-simplejwt>=5.5.1",
|
|
"psycopg2-binary>=2.9.11",
|
|
"ruff>=0.15.9",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "UP", "I"]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"**/migrations/*" = ["E501"] # boilerplate - ignore
|