[tool.poetry] name = "softdelete" version = "0.1.0" description = "" authors = ["Lucas F. "] readme = "README.md" [tool.poetry.dependencies] python = "^3.10" django = "^4.1.7" [tool.poetry.group.dev.dependencies] pytest = "^7.2.2" pytest-django = "^4.5.2" black = "^23.1.0" isort = "^5.12.0" [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.pytest.ini_options] minversion = "6.0" DJANGO_SETTINGS_MODULE = "softdelete.settings" python_files = [ "tests.py", "test_*.py", "*_tests.py", ]