2021-11-02 12:05:11 +00:00
|
|
|
[tool.pyright]
|
|
|
|
ignore = [
|
|
|
|
"**/migrations/**",
|
|
|
|
"**/node_modules/**"
|
|
|
|
]
|
|
|
|
reportMissingTypeStubs = false
|
|
|
|
strictParameterNoneValue = true
|
|
|
|
strictDictionaryInference = true
|
|
|
|
strictListInference = true
|
2022-09-06 22:23:25 +00:00
|
|
|
reportOptionalMemberAccess = false
|
|
|
|
# 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
|
|
|
|
|
|
|
[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 = [
|
|
|
|
"*/asgi.py",
|
|
|
|
"manage.py",
|
|
|
|
"*/migrations/*",
|
|
|
|
"*/management/commands/*",
|
|
|
|
"*/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",
|
|
|
|
"fixme",
|
|
|
|
"locally-disabled",
|
|
|
|
"too-many-ancestors",
|
|
|
|
"too-few-public-methods",
|
|
|
|
"import-outside-toplevel",
|
|
|
|
"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-12-02 21:00:59 +00:00
|
|
|
version = "2022.11.3"
|
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]
|
|
|
|
celery = "*"
|
2022-10-18 20:34:27 +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 = "*"
|
2022-11-14 13:42:43 +00:00
|
|
|
opencontainers = {extras = ["reggie"],version = "*"}
|
2021-12-24 22:25:38 +00:00
|
|
|
packaging = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
paramiko = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
psycopg2-binary = "*"
|
|
|
|
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 = "*"
|
|
|
|
urllib3 = {extras = ["secure"],version = "*"}
|
|
|
|
uvicorn = {extras = ["standard"],version = "*"}
|
|
|
|
webauthn = "*"
|
|
|
|
wsproto = "*"
|
2021-12-25 18:21:45 +00:00
|
|
|
xmlsec = "*"
|
2022-11-14 13:42:43 +00:00
|
|
|
zxcvbn = "*"
|
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 = "*"
|
2022-04-21 20:38:32 +00:00
|
|
|
django-silk = "*"
|
2021-12-24 22:25:38 +00:00
|
|
|
|
|
|
|
[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"
|