41 lines
722 B
TOML
41 lines
722 B
TOML
[tool.poetry]
|
|
name = "django-template"
|
|
version = "0.1.0"
|
|
description = "Django Template"
|
|
license = "MIT"
|
|
authors = ["Dmitriy <ataraxiadev@ataraxiadev.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
django = "^4.1.5"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pyright = "^1.1.290"
|
|
black = "^22.12.0"
|
|
isort = "^5.11.4"
|
|
django-types = "^0.16.0"
|
|
djlint = "^1.19.12"
|
|
pyproject-flake8 = "^6.0.0.post1"
|
|
|
|
[tool.djlint]
|
|
extend_exclude=".vscode"
|
|
profile="django"
|
|
max_line_length=88
|
|
use_gitignore=true
|
|
format_js=true
|
|
format_css=true
|
|
|
|
[tool.pyright]
|
|
include = ["."]
|
|
|
|
[tool.black]
|
|
line-length=88
|
|
|
|
[tool.flake8]
|
|
max-line-length=88
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|