|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = [ |
| 4 | + "setuptools>=61", |
| 5 | +] |
| 6 | + |
| 7 | +[project] |
| 8 | +name="crispy-bootstrap4" |
| 9 | +description="Bootstrap4 template pack for django-crispy-forms" |
| 10 | +readme = "README.md" |
| 11 | +license = {text = "MIT"} |
| 12 | +authors = [{name = "David Smith"}] |
| 13 | +requires-python = ">=3.8" |
| 14 | +classifiers=[ |
| 15 | + "Environment :: Web Environment", |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "Framework :: Django", |
| 18 | + "Framework :: Django :: 4.2", |
| 19 | + "Framework :: Django :: 5.0", |
| 20 | + "Framework :: Django :: 5.1", |
| 21 | + "Framework :: Django :: 5.2", |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "License :: OSI Approved :: MIT License", |
| 24 | + "Programming Language :: Python :: 3", |
| 25 | + "Programming Language :: Python :: 3.8", |
| 26 | + "Programming Language :: Python :: 3.9", |
| 27 | + "Programming Language :: Python :: 3.10", |
| 28 | + "Programming Language :: Python :: 3.11", |
| 29 | + "Programming Language :: Python :: 3.12", |
| 30 | + "Programming Language :: Python :: 3.13", |
| 31 | + "Topic :: Internet :: WWW/HTTP", |
| 32 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 33 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 34 | +] |
| 35 | +dynamic = [ |
| 36 | + "version", |
| 37 | +] |
| 38 | +dependencies = [ |
| 39 | + "django>=4.2", |
| 40 | + "django-crispy-forms>=2.3", |
| 41 | +] |
| 42 | +[project.optional-dependencies] |
| 43 | +test = [ |
| 44 | + "pytest", |
| 45 | + "pytest-django", |
| 46 | +] |
| 47 | +[project.urls] |
| 48 | +"CI" = "https://github.com/django-crispy-forms/crispy-bootstrap4/actions" |
| 49 | +"Changelog" = "https://github.com/django-crispy-forms/crispy-bootstrap4/releases" |
| 50 | +"Homepage" = "https://github.com/django-crispy-forms/crispy-bootstrap4" |
| 51 | +"Issues" = "https://github.com/django-crispy-forms/crispy-bootstrap4/issues" |
| 52 | + |
| 53 | +[tool.setuptools.dynamic] |
| 54 | +version = {attr = "crispy_bootstrap4.__version__"} |
| 55 | + |
| 56 | +[tool.isort] |
| 57 | +profile = "black" |
| 58 | + |
| 59 | +[tool.pytest.ini_options] |
| 60 | +DJANGO_SETTINGS_MODULE= "tests.test_settings" |
0 commit comments