Skip to content

Commit 77d5023

Browse files
authored
chore: update project structure to cd59edc6
1 parent 36e071f commit 77d5023

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

.cruft.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/collijk/python-package-cookiecutter",
3-
"commit": "8e2aaf58b416eecf27f0021e9ee770a34688fff9",
3+
"commit": "cd59edc69d51f9485bca69eb940e0706bc65e9ba",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -11,7 +11,8 @@
1111
"project_slug": "rra-building-density",
1212
"package_name": "rra_building_density",
1313
"project_short_description": "Extraction and processing pipelines for a variety of building density products.",
14-
"_template": "https://github.com/collijk/python-package-cookiecutter"
14+
"_template": "https://github.com/collijk/python-package-cookiecutter",
15+
"_commit": "cd59edc69d51f9485bca69eb940e0706bc65e9ba"
1516
}
1617
},
1718
"directory": null

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.0.1
3+
rev: v5.0.0
44
hooks:
55
- id: check-ast
66
- id: check-added-large-files

pyproject.toml.rej

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
diff a/pyproject.toml b/pyproject.toml (rejected hunks)
2+
@@ -34,12 +34,12 @@ python = ">=3.10, <4.0"
3+
click = "*"
4+
5+
[tool.poetry.group.dev.dependencies]
6+
-mkdocstrings = {version = ">=0.23", extras = ["python"]}
7+
+mkdocstrings = {version = "*", extras = ["python"]}
8+
mkdocs-material = "*"
9+
mkdocs-table-reader-plugin = "*"
10+
-mkdocs-gen-files = "^0.5.0"
11+
-mkdocs-literate-nav = "^0.6.1"
12+
-mkdocs-section-index = "^0.3.9"
13+
+mkdocs-gen-files = "*"
14+
+mkdocs-literate-nav = "*"
15+
+mkdocs-section-index = "*"
16+
mypy = "*"
17+
pre-commit = "*"
18+
pymdown-extensions = "*"
19+
@@ -47,13 +47,13 @@ pytest = "*"
20+
pytest-github-actions-annotate-failures = "*"
21+
pytest-cov = "*"
22+
python-kacl = "*"
23+
-ruff = ">=0.2.0"
24+
+ruff = "*"
25+
26+
[build-system]
27+
requires = ["poetry-core>=1.0.0"]
28+
build-backend = "poetry.core.masonry.api"
29+
30+
-[project.scripts]
31+
+[tool.poetry.scripts]
32+
my-cli = "rra_building_density.cli:main"
33+
34+
[tool.ruff]

0 commit comments

Comments
 (0)