-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (61 loc) · 1.57 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 = "FinTrack"
version = "0.1.0"
description = "Personal Finance Management App with Django, HTMX, Alpine, Tailwind and Plaid"
authors = ["earthcomfy <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.1"
django-htmx = "^1.19.0"
django-tailwind = "^3.8.0"
django-allauth = { extras = ["mfa"], version = "^64.1.0" }
django-cotton = "^0.9.32"
plaid-python = "^24.0.0"
celery = { extras = ["redis"], version = "^5.4.0" }
python-jose = "^3.3.0"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.1"
pre-commit = "^3.8.0"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
factory-boy = "^3.3.1"
pytest-mock = "^3.14.0"
pytest-xdist = "^3.6.1"
pytest-django = "^4.8.0"
django-browser-reload = "^1.15.0"
django-debug-toolbar = "^4.4.6"
django-extensions = "^3.2.3"
pytest-celery = "^1.1.1"
[build-system]
requires = ["poetry-config"]
build-backend = "poetry.config.masonry.api"
[tool.pytest.ini_options]
addopts = "--ds=django_finance.config.settings.test --nomigrations --cov=. --cov-report=html --reuse-db"
python_files = ["test_*.py"]
markers = [
"unit: tests that are isolated from the db, external api calls and other mockable internal code.",
]
[tool.coverage.run]
include = ["apps/**"]
omit = [
"*/migrations/*",
"*/tests/*",
'*/.venv/*',
'*/venv/*',
'*/env/*',
'*/staticfiles/*',
'*/config/*',
'*/__init__.py',
'*apps.py',
'*urls.py',
'*wsgi.py',
'*asgi.py',
'*manage.py',
'*requirements.txt',
]
[tool.ruff]
line-length = 119
[tool.djlint]
profile = "django"
ignore = "H031"