-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
43 lines (39 loc) · 1.06 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "approval-frame"
version = "0.1.0"
description = ""
authors = ["Felix Sargent <[email protected]>"]
readme = "README.md"
packages = [{ include = "approval_polls" }]
[tool.poetry.dependencies]
python = "^3.11"
django = "^5"
pytz = "^2023.4"
django-extensions = "^3.2.3"
djangoajax = "^3.3"
django-environ = "^0.11.2"
django-sendgrid-v5 = "^1.2.3"
gunicorn = "^21.2.0"
django-upgrade = "^1.15.0"
whitenoise = "^6.6.0"
django-structlog = "^7.1.0"
django-passkeys = "^1.2.7"
django-allauth = "^0.61.1"
djlint = "^1.34.1"
django-widget-tweaks = "^1.5.0"
sentry-sdk = { extras = ["django"], version = "^2.8.0" }
django-import-export = "^3.3.7"
pytest = "^8.2.2"
pytest-django = "^4.8.0"
django-compressor = "^4.5.1"
django-libsass = "^0.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# pyproject.toml
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "approval_polls.settings"
python_files = "tests.py test_*.py *_tests.py"
[tool.bandit]
exclude_dirs = ['*_test.py', '*/test_*.py', '*/tests.py']
skips = ["B106"]