-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.61 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-suspense"
dynamic = ["version"]
authors = [
{ name="Pavel Kutsenko", email="[email protected]" },
]
description = "Display a fallback in templates until its children have finished loading."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
"Homepage" = "https://github.com/paqstd-dev/django-suspense"
"Bug Tracker" = "https://github.com/paqstd-dev/django-suspense/issues"
[tool.setuptools_scm]
[tool.coverage.run]
omit = [
"manage.py",
"setup.py",
"tests/*"
]
[tool.black]
line-length = 88
target-version = ["py311"]
include = "\\.pyi?$"
skip-string-normalization=true
[tool.isort]
profile = "django"
combine_as_imports = true
include_trailing_comma = true
line_length = 88
multi_line_output = 3
known_first_party = ["config"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.tests"
asyncio_default_fixture_loop_scope = "function"