-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
66 lines (58 loc) · 1.7 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
64
65
66
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "django-bootstrap-static"
dynamic = ["version"]
description = "A collection of Bootstrap static files."
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{name = "Peter Bittner", email = "[email protected]"},
{name = "Derek Stegelman ", email = "[email protected]"},
]
maintainers = [
{name = "Peter Bittner", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
keywords=[
"django",
"staticfiles",
"bootstrap",
"jquery",
"fontawesome",
]
[project.urls]
source = "https://github.com/bittner/django-bootstrap-static"
[tool.pytest.ini_options]
addopts = "--color=yes --doctest-modules --verbose"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
pythonpath = ["tests"]
DJANGO_SETTINGS_MODULE = "test_project.settings"
FAIL_INVALID_TEMPLATE_VARS = true
[tool.ruff]
extend-exclude = []
extend-include = []
[tool.ruff.lint]
extend-select = ["ALL"]
extend-ignore = ["ANN", "D", "INP001", "UP"]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["S101"]
[tool.setuptools]
include-package-data = true
packages = ["bootstrap", "fontawesome"]
[tool.setuptools_scm]
local_scheme = "no-local-version"