2021-11-02 12:05:11 +00:00
|
|
|
[tool.pyright]
|
|
|
|
ignore = [
|
|
|
|
"**/migrations/**",
|
|
|
|
"**/node_modules/**"
|
|
|
|
]
|
|
|
|
|
|
|
|
reportMissingTypeStubs = false
|
|
|
|
strictParameterNoneValue = true
|
|
|
|
strictDictionaryInference = true
|
|
|
|
strictListInference = true
|
|
|
|
verboseOutput = false
|
|
|
|
pythonVersion = "3.9"
|
|
|
|
pythonPlatform = "Linux"
|
|
|
|
|
2020-10-26 18:07:08 +00:00
|
|
|
[tool.black]
|
2021-08-03 15:45:16 +00:00
|
|
|
line-length = 100
|
2021-11-02 12:05:11 +00:00
|
|
|
target-version = ['py39']
|
2020-10-26 18:07:08 +00:00
|
|
|
exclude = 'node_modules'
|
2020-12-02 13:24:24 +00:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|
|
|
|
force_grid_wrap = 0
|
|
|
|
use_parentheses = true
|
2021-08-03 15:45:16 +00:00
|
|
|
line_length = 100
|
2020-12-05 21:08:42 +00:00
|
|
|
src_paths = ["authentik", "tests", "lifecycle"]
|
2021-06-10 09:58:12 +00:00
|
|
|
force_to_top = "*"
|
2020-12-05 21:08:42 +00:00
|
|
|
|
|
|
|
[tool.coverage.run]
|
2021-07-22 21:52:58 +00:00
|
|
|
source = ["authentik"]
|
2020-12-05 21:08:42 +00:00
|
|
|
relative_files = true
|
2021-09-21 11:32:28 +00:00
|
|
|
omit = ["*/asgi.py", "manage.py", "*/migrations/*", "*/apps.py", "website/"]
|
2020-12-05 21:08:42 +00:00
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
sort = "Cover"
|
|
|
|
skip_covered = true
|
|
|
|
precision = 2
|
|
|
|
exclude_lines = [
|
|
|
|
"pragma: no cover",
|
|
|
|
# Don't complain about missing debug-only code:
|
|
|
|
"def __unicode__",
|
|
|
|
"def __str__",
|
|
|
|
"def __repr__",
|
|
|
|
"if self.debug",
|
|
|
|
"if TYPE_CHECKING",
|
|
|
|
# Don't complain if tests don't hit defensive assertion code:
|
|
|
|
"raise AssertionError",
|
|
|
|
"raise NotImplementedError",
|
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
|
|
"if 0:",
|
|
|
|
"if __name__ == .__main__.:",
|
|
|
|
]
|
|
|
|
show_missing = true
|
2021-03-30 08:05:14 +00:00
|
|
|
|
|
|
|
[tool.pylint.master]
|
2021-09-21 11:32:28 +00:00
|
|
|
disable = [
|
|
|
|
"arguments-differ",
|
|
|
|
"no-self-use",
|
|
|
|
"fixme",
|
|
|
|
"locally-disabled",
|
|
|
|
"too-many-ancestors",
|
|
|
|
"too-few-public-methods",
|
|
|
|
"import-outside-toplevel",
|
|
|
|
"bad-continuation",
|
|
|
|
"signature-differs",
|
|
|
|
"similarities",
|
|
|
|
"cyclic-import",
|
|
|
|
"protected-access",
|
|
|
|
"raise-missing-from",
|
2021-10-02 22:30:35 +00:00
|
|
|
# To preserve django's translation function we need to use %-formatting
|
2021-09-21 11:32:28 +00:00
|
|
|
"consider-using-f-string",
|
|
|
|
]
|
2021-03-30 08:05:14 +00:00
|
|
|
|
2021-09-21 11:32:28 +00:00
|
|
|
load-plugins = ["pylint_django", "pylint.extensions.bad_builtin"]
|
|
|
|
django-settings-module = "authentik.root.settings"
|
|
|
|
extension-pkg-whitelist = ["lxml", "xmlsec"]
|
2021-03-30 08:05:14 +00:00
|
|
|
|
|
|
|
# Allow constants to be shorter than normal (and lowercase, for settings.py)
|
2021-09-21 11:32:28 +00:00
|
|
|
const-rgx = "[a-zA-Z0-9_]{1,40}$"
|
2021-03-30 08:05:14 +00:00
|
|
|
|
2021-09-21 11:32:28 +00:00
|
|
|
ignored-modules = ["django-otp", "binascii", "socket", "zlib"]
|
|
|
|
generated-members = ["xmlsec.constants.*", "xmlsec.tree.*", "xmlsec.template.*"]
|
|
|
|
ignore = "migrations"
|
|
|
|
max-attributes = 12
|
|
|
|
max-branches = 20
|
2021-03-30 08:05:14 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
DJANGO_SETTINGS_MODULE = "authentik.root.settings"
|
|
|
|
python_files = ["tests.py", "test_*.py", "*_tests.py"]
|
|
|
|
junit_family = "xunit2"
|
|
|
|
addopts = "-p no:celery --junitxml=unittest.xml"
|
2021-12-24 22:25:38 +00:00
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "authentik"
|
2022-01-22 17:28:40 +00:00
|
|
|
version = "2022.1.1"
|
2021-12-24 22:25:38 +00:00
|
|
|
description = ""
|
|
|
|
authors = ["Jens Langhammer <jens.langhammer@beryju.org>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
boto3 = "*"
|
|
|
|
celery = "*"
|
|
|
|
channels = "*"
|
|
|
|
channels-redis = "*"
|
|
|
|
codespell = "*"
|
|
|
|
colorama = "*"
|
|
|
|
dacite = "*"
|
|
|
|
deepmerge = "*"
|
|
|
|
defusedxml = "*"
|
|
|
|
django = "*"
|
2022-01-04 21:16:49 +00:00
|
|
|
django-dbbackup = "=4.0.0b0"
|
2021-12-24 22:25:38 +00:00
|
|
|
django-filter = "*"
|
|
|
|
django-guardian = "*"
|
|
|
|
django-model-utils = "*"
|
|
|
|
django-otp = "*"
|
|
|
|
django-prometheus = "*"
|
|
|
|
django-redis = "*"
|
|
|
|
django-storages = "*"
|
|
|
|
djangorestframework = "*"
|
|
|
|
djangorestframework-guardian = "*"
|
|
|
|
docker = "*"
|
|
|
|
drf-spectacular = "*"
|
|
|
|
duo-client = "*"
|
|
|
|
facebook-sdk = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
flower = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
geoip2 = "*"
|
|
|
|
gunicorn = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
kubernetes = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
ldap3 = "*"
|
|
|
|
lxml = "*"
|
|
|
|
packaging = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
paramiko = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
psycopg2-binary = "*"
|
|
|
|
pycryptodome = "*"
|
|
|
|
pyjwt = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
python = "^3.10"
|
2021-12-24 22:25:38 +00:00
|
|
|
pyyaml = "*"
|
|
|
|
requests-oauthlib = "*"
|
2022-01-23 20:27:16 +00:00
|
|
|
sentry-sdk = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
service_identity = "*"
|
|
|
|
structlog = "*"
|
|
|
|
swagger-spec-validator = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
twisted = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
ua-parser = "*"
|
|
|
|
urllib3 = {extras = ["secure"],version = "*"}
|
|
|
|
uvicorn = {extras = ["standard"],version = "*"}
|
|
|
|
webauthn = "*"
|
|
|
|
wsproto = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
xmlsec = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
bandit = "*"
|
|
|
|
black = "*"
|
|
|
|
bump2version = "*"
|
|
|
|
colorama = "*"
|
|
|
|
coverage = {extras = ["toml"],version = "*"}
|
2021-12-25 18:21:45 +00:00
|
|
|
importlib-metadata = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
pylint = "*"
|
|
|
|
pylint-django = "*"
|
|
|
|
pytest = "*"
|
|
|
|
pytest-django = "*"
|
|
|
|
pytest-randomly = "*"
|
|
|
|
requests-mock = "*"
|
|
|
|
selenium = "*"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-01-04 21:13:26 +00:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
ak = "lifecycle.ak:main"
|