diff --git a/pyproject.toml b/pyproject.toml index ef138c0999..5924bf0690 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,7 @@ world_coords = "jwst.scripts.world_coords:main" jwst = "jwst.stpipe.integration:get_steps" [project.entry-points.pytest11] -report_crds_context = "pytest_crds.plugin" +report_crds_context = "pytest_jwst.plugin" [project.optional-dependencies] docs = [ @@ -128,6 +128,7 @@ include-package-data = false [tool.setuptools.packages.find] namespaces = false +include = ["pytest_jwst*", "jwst*"] [tool.setuptools.package-data] "*" = [ diff --git a/pytest_crds/__init__.py b/pytest_jwst/__init__.py similarity index 100% rename from pytest_crds/__init__.py rename to pytest_jwst/__init__.py diff --git a/pytest_crds/plugin.py b/pytest_jwst/plugin.py similarity index 100% rename from pytest_crds/plugin.py rename to pytest_jwst/plugin.py