-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.02 KB
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
[project]
name = "django-huey-log"
version = "0.1.0"
description = "Log and monitor Huey task attempts in the Django admin"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"django>=5.0",
"huey>=2.5.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/django_huey_log"]
[tool.hatch.build.targets.wheel.sources]
"src" = "django_huey_log"
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-django>=4.5",
]
dev = [
"ruff==0.14.13",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example.settings"
python_files = ["tests.py", "test_*.py"]
pythonpath = ["."]
[tool.ruff]
# Target version for the generated code
target-version = "py310"
line-length = 88
[tool.ruff.lint]
# Enable Pyflakes (F) and pycodestyle (E, W) codes by default.
# Also common: I (isort), B (flake8-bugbear), UP (pyupgrade)
select = ["E", "F", "W", "I", "B", "UP"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"