-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (86 loc) · 2.79 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
[project]
name = "django_meilisearch_indexer"
version = "1.0.1"
requires-python = ">=3.9"
description = "Meilisearch indexer for django models and related utilities"
dependencies = [
"django>=4.0.0",
"djangorestframework>=3.13.0",
"meilisearch>=0.28.0",
"typing-extensions>=4.12.2",
]
readme = "README.md"
authors = [{ name = "Jordan Kowal", email = "[email protected]" }]
maintainers = [{ name = "Jordan Kowal", email = "[email protected]" }]
keywords = ["django", "meilisearch", "indexer"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
]
[project.urls]
Changelog = "https://github.com/Jordan-Kowal/django-meilisearch-indexer/blob/main/CHANGELOG.md"
Issues = "https://github.com/Jordan-Kowal/django-meilisearch-indexer/issues"
"Release notes" = "https://github.com/Jordan-Kowal/django-meilisearch-indexer/releases"
Source = "https://github.com/Jordan-Kowal/django-meilisearch-indexer"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["django_meilisearch_indexer"]
# ------------------------------
# Dependencies
# ------------------------------
[tool.uv]
dev-dependencies = [
"build>=1.2.2.post1",
"coverage>=7.6.4",
"mypy>=1.12.1",
"ruff>=0.7.0",
"twine>=5.1.1",
]
# ------------------------------
# MYPY
# ------------------------------
[tool.mypy]
python_version = "3.12"
mypy_path = "."
check_untyped_defs = true
disallow_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = false
show_column_numbers = true
strict_optional = false
warn_redundant_casts = true
warn_unused_ignores = true
disable_error_code = "attr-defined,import-untyped"
# ------------------------------
# RUFF
# ------------------------------
[tool.ruff.format]
quote-style = "double"
docstring-code-format = true
[tool.ruff.lint.isort]
known-first-party = ["django_meilisearch_indexer"]
force-sort-within-sections = true
# ------------------------------
# COVERAGE
# ------------------------------
[tool.coverage.run]
omit = ["*/__init__.py", "*/tests/*"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"]