You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.2 KiB
75 lines
1.2 KiB
[tool.poetry]
|
|
name = "django_conc"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Lucas F. <lucas@lucasf.dev>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
django = "^5.0.2"
|
|
dj-database-url = "^2.1.0"
|
|
django-storages = "^1.14.2"
|
|
pillow = "^10.2.0"
|
|
python-decouple = "^3.8"
|
|
django-cleanup = "^8.1.0"
|
|
psycopg2-binary = "^2.9.9"
|
|
django-extensions = "^3.2.3"
|
|
dj-static = "^0.0.6"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 89
|
|
multi_line_output = 2
|
|
include_trailing_comma = false
|
|
extend_skip = [
|
|
".git",
|
|
".hg",
|
|
".mypy_cache",
|
|
".tox",
|
|
".venv",
|
|
"_build",
|
|
"buck-out",
|
|
"build",
|
|
"dist",
|
|
"migrations",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
include = '\.pyi?$'
|
|
force-exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| migrations
|
|
)/
|
|
'''
|
|
|
|
[tool.djlint]
|
|
profile = "django"
|
|
max_attribute_length = 0
|
|
blank_line_after_tag = "load, extends, endblock, endwith"
|
|
line_break_after_multiline_tag = true
|
|
format_attribute_template_tags = true
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.0"
|
|
DJANGO_SETTINGS_MODULE = "django_conc.settings"
|
|
python_files = [
|
|
"tests.py",
|
|
"test_*.py",
|
|
"*_tests.py",
|
|
]
|
|
|