fix project structure
This commit is contained in:
@@ -32,7 +32,7 @@ requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["airflow-wingman"]
|
||||
packages = ["src/airflow_wingman"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 200
|
||||
|
||||
6
airflow-wingman/src/airflow_wingman/__init__.py
Normal file
6
airflow-wingman/src/airflow_wingman/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from importlib.metadata import version
|
||||
|
||||
from airflow_wingman.plugin import WingmanPlugin
|
||||
|
||||
__version__ = version("airflow-wingman")
|
||||
__all__ = ["WingmanPlugin"]
|
||||
Reference in New Issue
Block a user