File: pyproject.toml

package info (click to toggle)
python-crispy-bootstrap3 2024.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 500 kB
  • sloc: python: 1,815; makefile: 3
file content (48 lines) | stat: -rw-r--r-- 1,558 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "crispy-bootstrap3"
description = "Bootstrap3 template pack for django-crispy-forms"
authors = [ { name = "David Smith" } ]
license = {text = "MIT"}
requires-python = ">=3.7"
readme = "README.md"
dependencies = [
    "django-crispy-forms>=1.14.0",
    "django>=3.2",
]
classifiers=[
    "Environment :: Web Environment",
    "Framework :: Django",
    "Framework :: Django :: 3.2",
    "Framework :: Django :: 4.0",
    "Framework :: Django :: 4.1",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Topic :: Internet :: WWW/HTTP",
    "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ['version']

[project.urls]
"Homepage" = "https://github.com/django-crispy-forms/crispy-bootstrap3"
"Issues" = "https://github.com/django-crispy-forms/crispy-bootstrap3/issues"
"CI" = "https://github.com/django-crispy-forms/crispy-bootstrap3/actions"
"Changelog" = "https://github.com/django-crispy-forms/crispy-bootstrap3/releases"

[tool.setuptools.dynamic]
version = {attr = "crispy_bootstrap3.__version__"}

[tool.isort]
profile = "black"

[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.test_settings"