-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.05 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
[project]
name = "overflow"
version = "7.0.18"
description = "overflow.no is the personal website of Aleksander Skraastad. I like programming, science & technology, gaming, cooking and the outdoors."
authors = ["Aleksander Skraastad <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
requires-python = ">=3.12"
dependencies = [
"django-cors-headers>=4.6.0",
"django-redis>=5.4.0",
"django>=5.1.3",
"markdown2>=2.5.1",
"pillow>=11.0.0",
"psycopg2-binary>=2.9.10",
"pygments>=2.18.0",
"python-decouple>=3.8",
"uvicorn>=0.32.0",
]
[tool.django-stubs]
django_settings_module = "overflow.settings"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.ruff]
line-length=120
target-version = "py312"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.uv]
dev-dependencies = [
"django-stubs[compatible-mypy]>=5.1.1",
"mypy>=1.13.0",
"ruff>=0.7.3",
]