-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 931 Bytes
/
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
[tool.poetry]
name = "moodmo"
version = "0.11.4"
description = "A user-friendly, self-hosted mood tracking application written in Django."
license = "GPL-3.0"
authors = ["dnlzrgz <24715931+dnlzrgz@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.0.4"
environs = "^11.0.0"
psycopg = {extras = ["binary"], version = "^3.1.18"}
django-allauth = "^0.61.1"
whitenoise = {extras = ["brotli"], version = "^6.6.0"}
gunicorn = "^21.2.0"
redis = {extras = ["hiredis"], version = "^5.0.3"}
brotli = "^1.1.0"
django-sqids = "^0.1.1"
pymemcache = "^4.0.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.5"
django-debug-toolbar = "^4.3.0"
djhtml = "^3.0.6"
django-browser-reload = "^1.12.1"
faker = "^24.7.1"
coverage = "^7.4.4"
pre-commit = "^3.7.0"
commitizen = "^3.21.3"
django-silk = "^5.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"