~linuxgoose/bocpress

ref: 3578bb484005bfec26aaa41fb90b2af73cbe52b0 bocpress/pyproject.toml -rw-r--r-- 810 bytes
3578bb48Jordan Robinson fix middleware for docs site 8 days ago
                                                                                
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
[project]
name = "mataroa"
version = "1.3.6"
description = "Mataroa is a simple blogging platform."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
    "bleach[css]>=6.2.0",
    "django>=5.2.5",
    "graphviz>=0.21",
    "gunicorn>=23.0.0",
    "l2m4m>=1.0.4",
    "markdown>=3.8.2",
    "markdown-it-py>=4.0.0",
    "mdit-py-plugins>=0.5.0",
    "psycopg[binary]>=3.2.9",
    "pygments>=2.19.2",
    "python-dotenv>=1.1.1",
    "stripe==13.0.1",
]

[dependency-groups]
dev = [
    "ansible>=11.8.0",
    "coverage>=7.10.2",
    "djade>=1.4.0",
    "ruff>=0.12.8",
]

[tool.ruff.lint]
select = [
    # pycodestyle
    "E",
    # Pyflakes
    "F",
    # pyupgrade
    "UP",
    # flake8-bugbear
    "B",
    # flake8-simplify
    "SIM",
    # isort
    "I",
]
ignore = ["E501"] # line too long