-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (58 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "django-block-fragments"
authors = [{ name = "Kai Schlamp", email = "kai.schlamp@gmail.com" }]
description = "Reusable block fragments for the Django Template Language."
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["django>=5.0.0"]
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
[project.urls]
source = "https://github.com/medihack/django-block-fragments"
issues = "https://github.com/medihack/django-block-fragments/issues"
documentation = "https://github.com/medihack/django-block-fragments/blob/main/README.md"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"pytest-django>=4.10.0",
"ruff>=0.9.10",
]
[tool.ruff]
target-version = "py310"
line-length = 100
lint.select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["tests.py"]
[tool.coverage.run]
branch = true
source = ["src/block_fragments"]
[tool.coverage.report]
skip_empty = true
show_missing = true
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/block_fragments"]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
pattern = "default-unprefixed"