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
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-crispy-forms"
requires-python = ">=3.8"
description = "Best way to have Django DRY forms"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = {text = "MIT"}
dependencies = ["django>=4.2"]
authors = [{name = "Miguel Araujo", email = "miguel.araujo.perez@gmail.com"}]
dynamic = ['version']
readme = "README.rst"
keywords = ["forms", "django", "crispy", "DRY"]
[project.urls]
"Homepage" = "https://github.com/django-crispy-forms/django-crispy-forms"
"Issues" = "https://github.com/django-crispy-forms/django-crispy-forms/issues"
"Changelog" = "https://github.com/django-crispy-forms/django-crispy-forms/releases"
[tool.setuptools.dynamic]
version = {attr = "crispy_forms.__version__"}
[tool.black]
line-length = 119
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 119
[tool.coverage.run]
branch = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE= "tests.test_settings"
|