-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
104 lines (103 loc) · 2.39 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
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
[project]
name = "illallangi-data-residential"
authors = [
{ name = "Andrew Cole", email = "[email protected]" }
]
maintainers = [
{ name = "Andrew Cole", email = "[email protected]" }
]
description = "An Illallangi Data plugin for recording residential data."
readme = "README.md"
requires-python = ">=3.10.1"
dependencies = [
"diffsync>=2.0.0",
"django-autoslug>=1.9.9",
"django-partial-date>=1.3.2",
"django>=5.1.2",
"djp",
"illallangi-rdf>=0.4.0",
]
keywords = [
"django",
"data",
"data-lake",
]
version = "0.3.0"
classifiers =[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
license = { text = "MIT License" }
[project.urls]
Homepage = "https://github.com/illallangi/data-residential"
Repository = "https://github.com/illallangi/data-residential.git"
Issues = "https://github.com/illallangi/data-residential/issues"
Changelog = "https://github.com/illallangi/data-residential/blob/master/CHANGELOG.md"
[build-system]
requires = [
"ruff>=0.6.9",
"hatchling>=1.25.0",
]
build-backend = "hatchling.build"
[tool.deptry.per_rule_ignores]
DEP002 = []
[tool.djlint]
profile="django"
format_css=true
format_js=true
ignore="H006"
[tool.ruff]
lint.select = ["ALL"]
lint.ignore = [
"D",
"COM812",
"E501",
"ISC001",
]
exclude = [
"**/migrations/0*.py",
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.lint.flake8-tidy-imports]
# Disallow all relative imports.
ban-relative-imports = "all"
[tool.uv]
dev-dependencies = [
"commitizen>=3.29.1",
"deptry>=0.20.0",
"djlint>=1.35.2",
"hatchling>=1.25.0",
"pre-commit>=3.8.0",
"ruff>=0.6.9",
]
[tool.uv.sources]
djp = { git = "https://github.com/andrewcole/djp" }
[tool.hatch.build.targets.sdist]
exclude = [
"Makefile",
"uv.lock",
]
[tool.hatch.build.targets.wheel]
packages = ["src/illallangi"]
exclude = [
"Makefile",
"uv.lock",
]
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "pep621"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"src/illallangi/data/residential/__version__.py:__version__",
]
pre_bump_hooks = [
"uv sync --no-dev",
]
update_changelog_on_bump = true
major_version_zero = true
[project.entry-points.djp]
"illallangi.data.residential" = "illallangi.data.residential"