-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.11 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
[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 = "^22.0.0"
django-upgrade = "^1.15.0"
whitenoise = "^6.6.0"
django-structlog = "^7.1.0"
django-allauth = { version = "65.3.1", extras = ["socialaccount", "google"] }
djlint = "^1.34.1"
django-widget-tweaks = "^1.5.0"
sentry-sdk = { extras = ["django"], version = "^2.8.0" }
pytest = "^8.2.2"
pytest-django = "^4.8.0"
django-compressor = "^4.5.1"
django-libsass = "^0.9"
django-import-export = { extras = ["all"], version = "^4.3.4" }
[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"]