-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.57 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-fieldsignals"
version = "0.8.0"
description = "Django signals that fire when specific model fields change"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Craig de Stigter", email = "craig@destigter.nz"}]
requires-python = ">=3.8"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Typing :: Typed",
]
dependencies = ["django>=4.2"]
[project.urls]
Homepage = "https://github.com/craigds/django-fieldsignals"
Repository = "https://github.com/craigds/django-fieldsignals"
[project.optional-dependencies]
dev = ["pytest", "ruff", "tox", "tox-uv"]
[tool.setuptools.packages.find]
include = ["fieldsignals*"]
[tool.ruff]
target-version = "py38"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.pytest.ini_options]
testpaths = ["fieldsignals/tests"]
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
strict = true
exclude = ["fieldsignals/tests/"]
[tool.django-stubs]
django_settings_module = "fieldsignals.tests.settings"