-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
57 lines (53 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
]
[project]
name="crispy-bootstrap5"
description="Bootstrap5 template pack for django-crispy-forms"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "David Smith"}]
requires-python = ">=3.8"
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
"version",
]
dependencies = [
"django>=4.2",
"django-crispy-forms>=2.3",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-django",
]
[project.urls]
"CI" = "https://github.com/django-crispy-forms/crispy-bootstrap5/actions"
"Changelog" = "https://github.com/django-crispy-forms/crispy-bootstrap5/releases"
"Homepage" = "https://github.com/django-crispy-forms/crispy-bootstrap5"
"Issues" = "https://github.com/django-crispy-forms/crispy-bootstrap5/issues"
[tool.setuptools.dynamic]
version = {attr = "crispy_bootstrap5.__version__"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE= "tests.test_settings"