-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
100 lines (91 loc) · 2.23 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[tool.poetry]
name = "ssi-views"
version = "0.6.0"
description = "A simple Django application to process SSI includes."
authors = ["Mihail Mishakin <x896321475@gmail.com>"]
maintainers = ["Mihail Mishakin <x896321475@gmail.com>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
packages = [
{ include = "ssi_views" },
]
[tool.poetry.urls]
repository = "https://github.com/dldevinc/ssi-views"
[tool.poetry.dependencies]
python = "^3.9"
django = ">=3.2"
[tool.poetry.group.pytest]
optional = true
[tool.poetry.group.pytest.dependencies]
pytest = "^8.3.4"
pytest-xdist = "^3.6.1"
pytest-django = "^4.9.0"
pytest-cov = "*"
[tool.isort]
extend_skip = [".md", ".json"]
line_length = 90
known_first_party = ["ssi_views"]
multi_line_output = 5
[tool.flake8]
max-line-length = 90
extend-exclude = [
"tests",
"migrations",
]
per-file-ignores = [
"__init__.py: F401", # imported but unused
"apps.py: F401", # imported but unused
]
extend-ignore = [
# "E501", # line too long
"E128", # continuation line under-indented for visual indent
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "settings"
pythonpath = [
"./tests"
]
addopts = "--showlocals -rf -s"
norecursedirs = [
"*.egg",
".*",
"_darcs",
"build",
"CVS",
"dist",
"node_modules",
"venv",
".venv",
"{arch}",
"__pycache__",
]
[tool.coverage.run]
source = [
"ssi_views/",
]
omit = [
"*/tests/*",
"*/migrations/*",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"