File: pyproject.toml

package info (click to toggle)
python-djangosaml2 1.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 700 kB
  • sloc: python: 3,066; xml: 327; makefile: 18; sh: 9
file content (14 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[tool.black]
force-exclude = '''/(migrations)/'''
target-version = ["py39"]

[tool.isort]
src_paths = ["djangosaml2", "tests"]
profile = "black"
known_django = ["django"]
known_contrib = ["django.contrib"]
known_saml2 = ["saml2"]
known_first_party = ["djangosaml2"]
known_tests = ["tests"]
sections = ["FUTURE", "STDLIB", "DJANGO", "CONTRIB", "THIRDPARTY", "SAML2", "FIRSTPARTY", "TESTS", "LOCALFOLDER"]
skip_glob = ["**/migrations/*.py"]