-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
46 lines (41 loc) · 1013 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
37
38
39
40
41
42
43
44
45
46
[tool.black]
line-length = 120
[tool.poetry]
name = "boogie-stats"
version = "0.1.0"
description = "A pass-through proxy for groovestats.com that records non-ranked song scores"
authors = ["Rafał Florczak <florczak.raf+boogiestats@gmail.com>"]
license = "AGPLv3"
readme = "README.md"
packages = [
{ include = "boogiestats" },
]
[tool.poetry.dependencies]
python = "^3.10"
Django = "^5.0.4"
requests = "^2.32.0"
gunicorn = "^23.0.0"
django-mathfilters = "^1.0.0"
redis = "^5.0.0"
sentry-sdk = "^2.0.0"
django-bootstrap-icons = "0.9.0"
django-prometheus = "^2.3.1"
prometheus-client = "0.20.0"
django-ipware = "^7.0.1"
django-formset = "^1.5.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.2"
pytest-django = "^4.8.0"
black = "24.4.2"
requests-mock = "^1.12.1"
flake8 = "^7.0.0"
djlint = "1.34.1"
bandit = "^1.7.8"
pre-commit = "^3.8.0"
pre-commit-hooks = "^4.6.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"