la-chariotte/pyproject.toml
2023-04-18 16:01:42 +02:00

26 lines
435 B
TOML

[project]
name = "la chariotte"
version = "0.0.1"
description = "Web application for organising grouped orders"
readme = "readMe.md"
license = {file = "LICENSE"}
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "la_chariotte.settings"
addopts = "--isort"
isort_ignore = ["*migrations/*.py"]
[tool.isort]
skip_glob = ["*migrations/*.py"]
[tool.black]
line-length = 88
exclude = '''
(
/(
| migrations
| static
)/
)
'''