Move src directory to be under nj

This commit is contained in:
Marty Oehme 2025-08-20 16:16:27 +02:00
parent 7939fc8860
commit d583b7190f
Signed by: Marty
GPG key ID: 4E535BC19C61886E
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@ requires-python = ">=3.13"
dependencies = ["requests>=2.32.4", "typer>=0.16.0"]
[project.scripts]
nightjet = "nj_api:main"
nightjet = "nj:main"
[build-system]
requires = ["hatchling"]
@ -18,4 +18,4 @@ build-backend = "hatchling.build"
typeCheckingMode = "basic"
[tool.hatch.build.targets.wheel]
packages = ["src/nj_api"]
packages = ["src/nj"]

View file

@ -1,4 +1,4 @@
from nj_api import main as cli
from nj import main as cli
def main() -> None: