-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (106 loc) · 3.36 KB
/
pyproject.toml
File metadata and controls
118 lines (106 loc) · 3.36 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# -------------------------------------------
# Managed by modulesync - DO NOT EDIT
# -------------------------------------------
[project]
name = "django-datawatch"
dynamic = ["version"]
license = "MIT"
requires-python = ">=3.10"
description = "Automated data checks for Django"
readme = "README.md"
keywords = ["django", "monitoring", "datawatch", "check", "checks"]
authors = [
{ name = "RegioHelden GmbH", email = "opensource@regiohelden.de" },
]
maintainers = [
{ name = "RegioHelden GmbH", email = "opensource@regiohelden.de" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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 :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["celery>=5.0.0", "Django>=4.2,<6.1", "django-extensions>=3.0.0", "django-model-utils>=4.2.0", "python-dateutil>=2.8.0"]
[project.urls]
Homepage = "https://github.com/RegioHelden/django-datawatch"
Documentation = "https://github.com/RegioHelden/django-datawatch/blob/main/README.md"
Repository = "https://github.com/RegioHelden/django-datawatch.git"
Issues = "https://github.com/RegioHelden/django-datawatch/issues"
Changelog = "https://github.com/RegioHelden/django-datawatch/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "version"
pattern = "(?P<version>.+)"
[tool.hatch.build.targets.wheel]
include = ["LICENSE", "README.md", "CHANGELOG.md", "django_datawatch/*"]
[tool.hatch.build.targets.sdist]
include = ["LICENSE", "README.md", "CHANGELOG.md", "django_datawatch/*"]
[tool.ruff]
exclude = [
".cache",
".git",
"__pycache",
"docs",
"migrations",
"src",
]
line-length = 120
[tool.ruff.lint]
dummy-variable-rgx = "_|dummy"
# See https://docs.astral.sh/ruff/rules/ for all supported rules
select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"C90", # mccabe
"COM", # flake8-commas
"DJ", # flake8-django
"DTZ", # flake8-datetimez
"E", # pycodestyle
"ERA", # eradicate
"F", # pyflakes
"G", # flake8-logging-format
"I", # isort
"ICN", # flake8-import-conventions
"INP", # flake8-no-pep420
"N", # pep8-naming
"PIE", # flake8-pie
"PGH", # pygrep-hooks
"PL", # pylint
"PTH", # flake8-use-pathlib
"RET", # flake8-return
"RSE", # flake8-raise
"RUF", # ruff-specific rules
"S", # flake8-bandit
"SIM", # flake8-simplify
"T20", # flake8-print
"TID", # flake8-tidy-imports
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120
[tool.ruff.lint.mccabe]
max-complexity = 16
[tool.coverage.run]
branch = true
[tool.coverage.report]
omit = ["*site-packages*", "*tests*", "*.tox*"]
show_missing = true
exclude_lines = ["raise NotImplementedError"]