-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.31 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "pdfding"
version = "0.1.1"
description = ""
authors = ["mrmn"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11 <4.0"
django = "==5.1.5"
django-allauth = {extras = ["socialaccount"], version = "==65.3.1"}
django-cleanup = "==9.0.0"
django-htmx = "==1.21.0"
gunicorn = "==23.0.0"
huey = "==2.5.2"
Markdown = "==3.7"
minio = "==7.2.15"
nh3 = "==0.2.20"
psycopg2-binary = "==2.9.10"
python-magic = "==0.4.27"
qrcode= {extras = ["pil"], version = "==8.0 "}
supervisor = "==4.2.5"
whitenoise = {extras = ["brotli"], version = "==6.8.2 "}
pypdfium2 = "==4.30.1"
[tool.poetry.group.dev.dependencies]
bandit = "==1.8.2"
black = "==24.10.0 "
flake8 = "==7.1.1"
pytest = "==8.3.4"
pytest-cov = "==6.0.0"
pytest-django = "==4.9.0"
[tool.poetry.group.e2e.dependencies]
pytest-playwright = "==0.6.2"
[tool.black]
line-length = 120
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "pdfding.core.settings"
[tool.bandit]
exclude_dirs = ["tests", "path/to/file"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true