Add missing dependencies
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful

This commit is contained in:
Sonny Bakker 2025-03-23 16:13:27 +01:00
parent d0f0f94f3d
commit 61c6a79f42
2 changed files with 55 additions and 13 deletions

View file

@ -1,8 +1,8 @@
[project]
name = 'newsreader'
version = '0.5.3'
authors = [ { name = 'Sonny', email= 'sonny871@hotmail.com' } ]
license = { text = 'GPL-3.0' }
authors = [{ name = 'Sonny', email= 'sonny871@hotmail.com' }]
license = {text = 'GPL-3.0'}
requires-python = '>=3.11'
dependencies = [
'django~=4.2',
@ -25,36 +25,36 @@ dependencies = [
]
[dependency-groups]
test-tools = [ 'ruff' ]
test-tools = ['ruff', 'factory_boy', 'freezegun']
development = [
'django-debug-toolbar',
'django-stubs',
'django-extensions',
]
ci = [ 'coverage~=7.6.1' ]
production = [ 'gunicorn~=23.0' ]
ci = ['coverage~=7.6.1']
production = ['gunicorn~=23.0']
[project.optional-dependencies]
sentry = [ 'sentry-sdk~=2.0' ]
sentry = ['sentry-sdk~=2.0']
[tool.uv]
environments = [ "sys_platform == 'linux'" ]
default-groups = [ 'test-tools' ]
environments = ["sys_platform == 'linux'"]
default-groups = ['test-tools']
[tool.ruff]
include = [ 'pyproject.toml', 'src/**/*.py' ]
include = ['pyproject.toml', 'src/**/*.py']
line-length = 88
[tool.ruff.lint]
select = [ "E4", "E7", "E9", "F", "I" ]
select = ['E4', 'E7', 'E9', 'F', 'I']
[tool.ruff.lint.isort]
lines-between-types=1
lines-after-imports=2
default-section = 'third-party'
known-first-party = [ 'transip_client' ]
known-first-party = ['transip_client']
section-order = [
'future',
'standard-library',
@ -65,4 +65,4 @@ section-order = [
]
[tool.ruff.lint.isort.sections]
django = [ 'django' ]
django = ['django']