-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 1.88 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
69
70
71
72
73
74
[project]
name = "django-typst"
version = "0.1.6"
description = "A Django template engine powered by Typst"
readme = "README.md"
authors = [
{ name = "Jonathan Moss", email = "xirisr@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Printing",
"Topic :: Software Development :: Libraries",
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.12,<3.15"
dependencies = [
"django>=5.2.0",
"tomlkit>=0.13.3",
"typst>=0.14.1",
]
[project.urls]
Homepage = "https://github.com/a-musing-moose/django-typst-engine/"
Repository = "https://github.com/a-musing-moose/django-typst-engine/"
Readme = "https://github.com/a-musing-moose/django-typst-engine/blob/master/README.md"
Documentation = "https://django-typst-engine.readthedocs.io/en/latest/"
[build-system]
requires = ["uv_build>=0.8.3,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"mypy[mypyc]>=1.17.1",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"pytest-django>=4.11.1",
"pytest-spec>=5.0.0",
"ruff>=0.12.11",
]
docs = [
"zensical>=0.0.44",
]
[tool.mypy]
strict = true
exclude = "tests"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "django.*"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
addopts = "--rootdir src --spec"
spec_header_format = "{test_case} [{module_path}]:"