-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.58 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
[project]
name = "django-sniplates"
version = "0.7.2"
description = "Efficient template macro sets for Django"
authors = [
{ name = "Curtis Maloney", email="curtis@tinbrain.net" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["django", "templates", "forms"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"django (>=3.0.5)",
]
[project.urls]
Repository = "https://github.com/funkybob/django-sniplates"
Documentation = "https://sniplates.readthedocs.io/en/latest/"
[project.optional-dependencies]
test = [
"isort",
"pytest",
"pytest-cov",
"pytest-django",
"pylint",
"pylint-pytest",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
django_find_project = false
pythonpath = ["."]
addopts = "--cov=src/"
[tool.coverage.run]
branch = true
source = ["src/"]
[tool.pylint."message control"]
disable = ["missing-module-docstring", "missing-class-docstring", "missing-function-docstring", "raise-missing-from", "redefined-outer-name"]
[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
include_trailing_comma = true
line_length = 119