-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (84 loc) · 2.47 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (84 loc) · 2.47 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
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
[build-system]
requires = ["setuptools >= 80.9.0, < 81"]
build-backend = "setuptools.build_meta"
[project]
name = "django-dirtyfields"
dynamic = ["version"]
description = "Tracking dirty fields on a Django model instance."
keywords = ["django", "dirtyfields", "track", "model", "changes"]
readme = {file = "README.rst", content-type = "text/x-rst"}
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [{name = "Romain Garrigues"}]
maintainers = [{name = "Lincoln Puzey"}]
requires-python = ">=3.10"
dependencies = [
"Django>=3.2",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
]
[project.urls]
Homepage = "https://github.com/romgar/django-dirtyfields"
Repository = "https://github.com/romgar/django-dirtyfields.git"
Changelog = "https://github.com/romgar/django-dirtyfields/blob/develop/ChangeLog.rst"
Documentation = "https://django-dirtyfields.readthedocs.io"
[tool.setuptools.dynamic]
version = {attr = "dirtyfields.__version__"}
[dependency-groups]
dev = [
{include-group = "test"},
{include-group = "lint"},
{include-group = "security"},
{include-group = "build"},
]
test = [
"pytest>=8.4.0,<9",
"coverage[toml]>=7.10.0,<8",
"psycopg2",
# let pip choose the latest version compatible with the python/django version being tested.
"pytest-django",
"jsonfield",
]
lint = [
"flake8",
]
security = [
"bandit",
]
build = [
"build",
]
[tool.pytest.ini_options]
django_find_project = false
DJANGO_SETTINGS_MODULE = 'tests.django_settings'
filterwarnings = [
'error',
]
[tool.coverage.run]
branch = true
source = ['dirtyfields']
[tool.coverage.report]
show_missing = true
precision = 2