forked from TreyWW/MyFinances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (73 loc) · 1.78 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "MyFinances"
version = "0.2.1"
description = "github.com/TreyWW/MyFinances"
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
bleach = "6.1.0"
oauthlib = "3.2.2"
boto3 = "1.34.76"
django-storages = "1.14.2"
pillow = "10.3.0"
tblib = "^3.0.0"
forex-python = "^1.8"
django = "^5.0.2"
django-mathfilters = "^1.0.0"
sample-helper-aws-appconfig = "^2.1.0"
redis = { extras = ["hiredis"], version = "^5.0.1" }
boto3-stubs = { extras = [
"sesv2",
"events",
"scheduler",
"iam",
"stepfunctions",
], version = "^1.34.76" }
djangorestframework = "^3.14.0"
django-tz-detect = "^0.5.0"
typos = "^1.20.3"
[tool.poetry.group.django.dependencies]
Django = "^5.0.2"
gunicorn = "21.2.0"
social-auth-app-django = "5.4.0"
django-sendgrid-v5 = "1.2.3"
django-environ = "0.11.2"
django-extensions = "3.2.3"
python-dateutil = "2.9.0"
django-mathfilters = "1.0.0"
django-ratelimit = "4.1.0"
django-htmlmin = "0.11.0"
python-memcached = "1.62"
django-htmx = "1.17.3"
django-login-required-middleware = "0.9.0"
django-debug-toolbar = "4.3.0"
django-components = "0.37"
django-markdownify = "0.9.3"
shortuuid = "1.0.13"
model-bakery = "1.17.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.15"
mkdocs-git-committers-plugin-2 = "^2.3.0"
[tool.poetry.group.mysql]
optional = true
[tool.poetry.group.mysql.dependencies]
mysqlclient = "2.2.0"
mariadb = "1.1.8"
[tool.poetry.group.postgres]
optional = true
[tool.poetry.group.postgres.dependencies]
psycopg2 = "2.9.9"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
djlint = "^1.34.1"
coverage = "^7.4.4"
[tool.djlint]
profile = "django"
max_line_length = 110
[tool.black]
line-length = 140
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"