fix project structure

This commit is contained in:
2025-02-24 10:52:20 +00:00
parent 7b59a454c6
commit ea0af4e1fc
6 changed files with 7 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build" build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = ["airflow-wingman"] packages = ["src/airflow_wingman"]
[tool.ruff] [tool.ruff]
line-length = 200 line-length = 200

View File

@@ -0,0 +1,6 @@
from importlib.metadata import version
from airflow_wingman.plugin import WingmanPlugin
__version__ = version("airflow-wingman")
__all__ = ["WingmanPlugin"]