2021-11-02 12:05:11 +00:00
|
|
|
[tool.pyright]
|
2023-02-15 15:06:17 +00:00
|
|
|
ignore = ["**/migrations/**", "**/node_modules/**"]
|
2021-11-02 12:05:11 +00:00
|
|
|
reportMissingTypeStubs = false
|
|
|
|
strictParameterNoneValue = true
|
|
|
|
strictDictionaryInference = true
|
|
|
|
strictListInference = true
|
2022-09-06 22:23:25 +00:00
|
|
|
reportOptionalMemberAccess = false
|
2023-05-03 09:44:10 +00:00
|
|
|
reportOptionalContextManager = false
|
|
|
|
# rest_framework's serializer's `validated_data` is typed as optional None
|
|
|
|
reportOptionalSubscript = false
|
2022-09-06 22:23:25 +00:00
|
|
|
# Sadly pyright still has issues with enums, and they fall under general type issues
|
|
|
|
# so we have to disable those for now
|
|
|
|
reportGeneralTypeIssues = false
|
2021-11-02 12:05:11 +00:00
|
|
|
verboseOutput = false
|
2022-11-13 13:20:55 +00:00
|
|
|
pythonVersion = "3.11"
|
2022-09-06 22:23:25 +00:00
|
|
|
pythonPlatform = "All"
|
2021-11-02 12:05:11 +00:00
|
|
|
|
2020-10-26 18:07:08 +00:00
|
|
|
[tool.black]
|
2021-08-03 15:45:16 +00:00
|
|
|
line-length = 100
|
2022-11-13 13:20:55 +00:00
|
|
|
target-version = ['py311']
|
2020-10-26 18:07:08 +00:00
|
|
|
exclude = 'node_modules'
|
2020-12-02 13:24:24 +00:00
|
|
|
|
2023-04-18 11:28:19 +00:00
|
|
|
[tool.ruff]
|
|
|
|
line-length = 100
|
|
|
|
target-version = "py311"
|
|
|
|
exclude = ["**/migrations/**", "**/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
|
2022-08-02 22:05:49 +00:00
|
|
|
omit = [
|
2023-04-18 11:28:19 +00:00
|
|
|
"*/asgi.py",
|
|
|
|
"manage.py",
|
|
|
|
"*/migrations/*",
|
|
|
|
"*/management/commands/*",
|
|
|
|
"*/apps.py",
|
|
|
|
"website/",
|
2022-08-02 22:05:49 +00:00
|
|
|
]
|
2020-12-05 21:08:42 +00:00
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
sort = "Cover"
|
|
|
|
skip_covered = true
|
|
|
|
precision = 2
|
|
|
|
exclude_lines = [
|
2023-04-18 11:28:19 +00:00
|
|
|
"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__.:",
|
2020-12-05 21:08:42 +00:00
|
|
|
]
|
|
|
|
show_missing = true
|
2021-03-30 08:05:14 +00:00
|
|
|
|
2023-01-15 16:02:31 +00:00
|
|
|
[tool.pylint.basic]
|
2023-03-07 22:52:34 +00:00
|
|
|
good-names = ["pk", "id", "i", "j", "k", "_", "bar"]
|
2023-01-15 16:02:31 +00:00
|
|
|
|
2021-03-30 08:05:14 +00:00
|
|
|
[tool.pylint.master]
|
2021-09-21 11:32:28 +00:00
|
|
|
disable = [
|
2023-04-18 11:28:19 +00:00
|
|
|
"arguments-differ",
|
|
|
|
"locally-disabled",
|
|
|
|
"too-many-ancestors",
|
|
|
|
"too-few-public-methods",
|
|
|
|
"import-outside-toplevel",
|
|
|
|
"signature-differs",
|
|
|
|
"similarities",
|
|
|
|
"cyclic-import",
|
|
|
|
"protected-access",
|
|
|
|
"unused-argument",
|
|
|
|
"raise-missing-from",
|
|
|
|
"fixme",
|
|
|
|
# To preserve django's translation function we need to use %-formatting
|
|
|
|
"consider-using-f-string",
|
2021-09-21 11:32:28 +00:00
|
|
|
]
|
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"
|
2023-01-19 19:34:51 +00:00
|
|
|
filterwarnings = [
|
2023-04-18 11:28:19 +00:00
|
|
|
"ignore:defusedxml.lxml is no longer supported and will be removed in a future release.:DeprecationWarning",
|
|
|
|
"ignore:SelectableGroups dict interface is deprecated. Use select.:DeprecationWarning",
|
2023-01-19 19:34:51 +00:00
|
|
|
]
|
2021-12-24 22:25:38 +00:00
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "authentik"
|
2023-04-18 08:45:17 +00:00
|
|
|
version = "2023.4.1"
|
2021-12-24 22:25:38 +00:00
|
|
|
description = ""
|
2022-05-28 19:26:33 +00:00
|
|
|
authors = ["authentik Team <hello@goauthentik.io>"]
|
2021-12-24 22:25:38 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-04-19 09:22:37 +00:00
|
|
|
argon2-cffi = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
celery = "*"
|
2023-02-15 15:06:17 +00:00
|
|
|
channels = { version = "*", extras = ["daphne"] }
|
2021-12-24 22:25:38 +00:00
|
|
|
channels-redis = "*"
|
|
|
|
codespell = "*"
|
|
|
|
colorama = "*"
|
|
|
|
dacite = "*"
|
|
|
|
deepmerge = "*"
|
|
|
|
defusedxml = "*"
|
|
|
|
django = "*"
|
|
|
|
django-filter = "*"
|
|
|
|
django-guardian = "*"
|
|
|
|
django-model-utils = "*"
|
|
|
|
django-otp = "*"
|
|
|
|
django-prometheus = "*"
|
|
|
|
django-redis = "*"
|
|
|
|
djangorestframework = "*"
|
|
|
|
djangorestframework-guardian = "*"
|
|
|
|
docker = "*"
|
|
|
|
drf-spectacular = "*"
|
2022-11-14 13:42:43 +00:00
|
|
|
dumb-init = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
duo-client = "*"
|
|
|
|
facebook-sdk = "*"
|
2022-11-14 13:42:43 +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 = "*"
|
2023-02-15 15:06:17 +00:00
|
|
|
opencontainers = { extras = ["reggie"], version = "*" }
|
2021-12-24 22:25:38 +00:00
|
|
|
packaging = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
paramiko = "*"
|
2023-04-13 12:10:12 +00:00
|
|
|
psycopg2-binary = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
pycryptodome = "*"
|
|
|
|
pyjwt = "*"
|
2022-11-13 13:20:55 +00:00
|
|
|
python = "^3.11"
|
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 = "*"
|
2022-11-14 13:42:43 +00:00
|
|
|
twilio = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
twisted = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
ua-parser = "*"
|
2023-02-15 15:06:17 +00:00
|
|
|
urllib3 = { extras = ["secure"], version = "*" }
|
|
|
|
uvicorn = { extras = ["standard"], version = "*" }
|
2021-12-24 22:25:38 +00:00
|
|
|
webauthn = "*"
|
|
|
|
wsproto = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
xmlsec = "*"
|
2022-11-14 13:42:43 +00:00
|
|
|
zxcvbn = "*"
|
2022-12-30 10:30:18 +00:00
|
|
|
watchdog = "*"
|
2023-03-06 18:39:08 +00:00
|
|
|
pydantic-scim = "^0.0.7"
|
2021-12-24 22:25:38 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
bandit = "*"
|
|
|
|
black = "*"
|
|
|
|
bump2version = "*"
|
|
|
|
colorama = "*"
|
2023-02-15 15:06:17 +00:00
|
|
|
coverage = { extras = ["toml"], version = "*" }
|
2023-03-20 15:54:35 +00:00
|
|
|
django-silk = "*"
|
2023-05-07 10:32:01 +00:00
|
|
|
drf-jsonschema-serializer = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
importlib-metadata = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
pylint = "*"
|
|
|
|
pylint-django = "*"
|
2023-03-20 15:54:35 +00:00
|
|
|
pyrad = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
pytest = "*"
|
|
|
|
pytest-django = "*"
|
2023-04-18 11:28:19 +00:00
|
|
|
pytest-github-actions-annotate-failures = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
pytest-randomly = "*"
|
|
|
|
requests-mock = "*"
|
2023-04-18 11:28:19 +00:00
|
|
|
ruff = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
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"
|