Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nrl-sdk-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/nrl_sdk_lib"]

[tool.deptry]
known_first_party = ["nrl_sdk_lib"]

[dependency-groups]
dev = [
"anyio>=4.9.0",
Expand Down Expand Up @@ -59,6 +62,7 @@ ignore = [
"PLR2004", # Magic values allowed in tests
]


[tool.ruff.lint.isort]
# so it knows to group first-party stuff last
known-first-party = ["src"]
Expand Down
5 changes: 5 additions & 0 deletions nrl-sdk-lib/src/nrl_sdk_lib/converters/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Csv to GeoJson converter."""

from .csv_to_geojson import csv_to_geojson

__all__ = ["csv_to_geojson"]
Loading