-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
114 lines (105 loc) · 3.01 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-help"
version = "2024.10.1"
description = "A Django Knowledgebase"
authors = [{ name = "Jack Linke", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.10,<4.0"
dependencies = [
"django>=4.2",
"click>=8.1.7",
"django-markdownx>=4.0.7",
"django-translated-fields>=0.13.0",
"django-taggit>=6.1.0",
"python-frontmatter>=1.1.0",
"django-crispy-forms>=2.3",
"crispy-bootstrap5>=2024.2",
]
[project.urls]
Homepage = "https://github.com/OmenApps/django-help"
Repository = "https://github.com/OmenApps/django-help"
Documentation = "https://django-help.readthedocs.io"
Changelog = "https://github.com/OmenApps/django-help/releases"
[tool.uv]
dev-dependencies = [
"psycopg2-binary>=2.9.9",
"Pygments>=2.18.0",
"bandit>=1.7.8",
"black>=24.4.2",
"coverage[toml]>=7.5.1",
"darglint>=1.8.1",
"flake8==7.0.0",
"flake8-bugbear>=24.4.26",
"flake8-docstrings>=1.7.0",
"flake8-rst-docstrings>=0.3.0",
"furo>=2024.8.6",
"isort>=5.13.2",
"nox>=2024.4.15",
"pep8-naming>=0.14.1",
"pre-commit>=3.7.1",
"pre-commit-hooks>=4.6.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"pytest-django>=4.9.0",
"pyupgrade>=3.15.2",
"safety>=3.2.0",
"sphinx>=8.0.2",
"sphinx-autobuild>=2024.4.16",
"sphinx-click>=6.0.0",
"xdoctest[colors]>=1.1.3",
"myst-parser>=4.0.0",
"linkify-it-py==2.0.3",
]
[tool.black]
line-length = 120
target-version = ["py310", "py311", "py312", "py313"]
force-exclude = '''
(
.nox
)
'''
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["example_project", "*/example_project"]
[tool.coverage.run]
branch = true
source = ["src", "example_project"]
[tool.coverage.report]
show_missing = true
fail_under = 50
omit = [".nox/*", "example_project/*", "**/migrations/*", "**/__init__.py"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example_project.settings"
python_files = ["*test_*.py", "*_test.py", "example_project/*.py"]
log_cli = true
log_cli_level = "INFO"
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
extend_skip = [".nox"]