Files
links/pyproject.toml
junv 74b2e72844 chore: update dependencies to clear security advisories
Python (pip-audit: 0 vulnerabilities):
  - Django 5.2.12 -> >=5.2.16  (CVEs PYSEC-2026-48..55, 197..201, 2090..2092)
  - sqlparse 0.5.1 -> >=0.5.4  (GHSA-27jp-wm6q-gp25)
  - pillow 12.2.0 -> >=12.3.0  (PYSEC-2026-2253..2257, 3451..3453)
  - transitive upgrades: idna 3.10 -> 3.15, setuptools 78.1.1 -> 83.0.0
  - refreshed uv.lock via `uv sync --upgrade`

npm (`npm audit`: 0 vulnerabilities):
  - brace-expansion, glob, picomatch bumped via `npm audit fix --legacy-peer-deps`
    (brace-expansion ReDoS, glob CLI cmd injection, picomatch ReDoS/injection)

Verified: 67/67 tests pass, Tailwind build clean, pip-audit and npm
audit both report 0 vulnerabilities.
2026-07-16 10:29:15 +10:00

77 lines
1.5 KiB
TOML

[project]
name = "links"
version = "0.1.1"
description = "A URL management tool"
requires-python = ">=3.12"
dependencies = [
"asgiref==3.8.1",
"Django>=5.2.16",
"django-widget-tweaks==1.5.0",
"sqlparse>=0.5.4",
"django-tailwind==3.8.0",
"fontawesome-free==5.15.3",
"gunicorn==23.0.0",
"whitenoise==5.3.0",
"django-simplemde==0.1.4",
"markdown==3.8.1",
"requests>=2.32.4,<3",
"beautifulsoup4==4.12.3",
"djangorestframework==3.15.2",
"apscheduler>=3.10.0,<4.0.0",
"playwright>=1.40.0",
"boto3>=1.35.0",
"python-magic>=0.4.27",
"pillow>=12.3.0,<13",
"whoosh==2.7.4",
"django-redis>=5.4.0",
"qdrant-client>=1.13.2",
"cryptography>=48.0.1",
"kubernetes>=29.0.0",
"maxminddb>=3.1.1",
"yfinance>=1.3.0",
"websocket-client>=1.9.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-django>=4.5",
"black>=23.0",
"isort>=5.0",
"flake8>=6.0",
]
[tool.black]
line-length = 100
target-version = ["py312"]
include = '\.pyi?$'
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "core.settings"
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-django>=4.10.0",
]