-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.1 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
[tool.poetry]
name = "digitaldome"
version = "0.1.0"
description = ""
authors = ["Kamil Marut <kamil@kamilmarut.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "^1.0.0"
django = "^4.2.7"
django-storages = {extras = ["s3"], version = "^1.14.2"}
django-filter = "^23.3"
psycopg = "^3.1.9"
whitenoise = {extras = ["brotli"], version = "^6.5.0"}
pillow = "^10.0.0"
pyjwt = "^2.8.0"
httpx = "^0.24.1"
gunicorn = "^21.2.0"
python-magic = "^0.4.27"
sentry-sdk = {extras = ["django"], version = "^1.32.0"}
openai = "^1.2.3"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
ruff = "^0.0.286"
ipython = "^8.14.0"
djlint = "^1.33.0"
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.ruff]
select = ["E", "F", "ANN", "ASYNC", "S", "A", "DJ", "G", "PIE", "T20", "RSE", "SIM", "PTH", "PD", "TRY", "RUF"]
ignore = ["ANN401", "TRY003", "SIM118"]
line-length = 120
target-version = "py311"
[tool.ruff.per-file-ignores]
"**/management/commands/*.py" = ["A003"]
"**/migrations/0*_*.py" = ["RUF012"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"