-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (53 loc) · 1.85 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-dbdiff"
version = "0.9.7"
description = "Database data diffing against fixtures for testing"
readme = "README.rst"
license = {text = "MIT"}
authors = [{name = "James Pic", email = "jamespic@gmail.com"}]
keywords = ["django", "test", "database", "fixture", "diff"]
requires-python = ">=3.10"
dependencies = ["ijson", "json_delta"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/yourlabs/django-dbdiff"
[project.entry-points."pytest11"]
dbdiff = "dbdiff.plugin"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = ["dbdiff.tests*", "tests*", "tests.*"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["E", "W", "F", "C90", "T10", "I", "D", "N"]
# D203 (blank-line-before-docstring) conflicts with D211; D213 conflicts with D212
ignore = ["D203", "D213", "N818"]
[tool.ruff.lint.mccabe]
max-complexity = 7
[tool.ruff.lint.per-file-ignores]
"dbdiff/tests/**/*.py" = ["D100", "D101", "D102", "D103"]
"dbdiff/tests/**/migrations/**" = ["D", "E501", "I"]