-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.18 KB
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools" ]
[project]
name = "django-tabler-icons"
version = "0.7.2"
description = "Use tabler icons with django templates"
readme = "README.md"
authors = [
{ name = "Demetris Stavrou" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dependencies = [
"django>4.2",
]
urls.Repository = "https://github.com/demestav/django_tabler_icons"
scripts.django_tabler_icons = "tabler_icons.cli:main"
[dependency-groups]
test = [
"coverage",
"pytest",
"pytest-django",
]
[tool.flake8]
max-line-length = 88
[tool.pytest.ini_options]
addopts = """\
--strict-config
--strict-markers
"""
DJANGO_SETTINGS_MODULE = "tests.settings"
django_find_project = "false"
[tool.coverage.run]
branch = true
source = [
"tabler_icons",
]
[tool.coverage.paths]
source = [
"src",
]