-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.13 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
# https://peps.python.org/pep-0621/
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "django-minifilter"
dynamic = ["version"]
description = "Minimal filter and search functionality for django list views."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "dennisvang", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"django>=3.2",
]
[project.urls]
source = "https://github.com/dennisvang/django-minifilter"
documentation = "https://github.com/dennisvang/django-minifilter"
issues = "https://github.com/dennisvang/django-minifilter/issues"
[tool.setuptools.dynamic]
version = {attr = "minifilter.__version__"}
[tool.setuptools.packages.find]
# https://setuptools.pypa.io/en/stable/userguide/pyproject_config.html#setuptools-specific-configuration
where = ["src"]
[tool.setuptools.package-data]
minifilter = ["templates/*/*/*"]
[tool.ruff.format]
quote-style = "single"