diff --git a/.circleci/config.yml b/.circleci/config.yml index 3bae5a5805a..47d353f8cb9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,7 +16,6 @@ commands: - run: name: Install dependencies command: | - cd packages/python/plotly python -m venv venv . venv/bin/activate pip install --upgrade pip wheel @@ -24,7 +23,6 @@ commands: - run: name: Test core command: | - cd packages/python/plotly . venv/bin/activate pytest plotly/tests/test_core no_output_timeout: 20m @@ -41,7 +39,6 @@ commands: - run: name: Install dependencies command: | - cd packages/python/plotly python -m venv venv . venv/bin/activate pip install --upgrade pip wheel @@ -52,47 +49,40 @@ commands: - run: name: Install plotly-geo command: | - cd packages/python/plotly . venv/bin/activate pip install plotly-geo - run: name: Test core command: | - cd packages/python/plotly . venv/bin/activate pytest plotly/tests/test_core no_output_timeout: 20m - run: name: Test optional command: | - cd packages/python/plotly . venv/bin/activate pytest plotly/tests/test_optional no_output_timeout: 40m - run: name: Test utils command: | - cd packages/python/plotly . venv/bin/activate pytest _plotly_utils/tests/ no_output_timeout: 20m - run: name: Test io command: | - cd packages/python/plotly . venv/bin/activate pytest plotly/tests/test_io no_output_timeout: 20m - run: name: Test dependencdies not imported command: | - cd packages/python/plotly . venv/bin/activate pytest -x test_init/test_dependencies_not_imported.py - run: name: Test lazy imports command: | - cd packages/python/plotly . venv/bin/activate pytest -x test_init/test_lazy_imports.py test_orca: @@ -107,7 +97,6 @@ commands: - run: name: Install dependencies command: | - cd packages/python/plotly python -m venv venv . venv/bin/activate pip install --upgrade pip wheel @@ -115,7 +104,6 @@ commands: - run: name: Install plotly-geo command: | - cd packages/python/plotly . venv/bin/activate pip install plotly-geo - run: @@ -129,12 +117,11 @@ commands: - run: name: Test orca command: | - cd packages/python/plotly . venv/bin/activate pytest plotly/tests/test_orca no_output_timeout: 20m - store_artifacts: - path: packages/python/plotly/plotly/tests/test_orca/images/linux/failed + path: plotly/tests/test_orca/images/linux/failed jobs: check-code-formatting: @@ -283,9 +270,9 @@ jobs: python -m venv venv . venv/bin/activate pip install --upgrade pip wheel - pip install -e ./packages/python/plotly + pip install -e . pip install plotly-geo - pip install -r ./packages/python/plotly/test_requirements/requirements_39_pandas_2_optional.txt + pip install -r test_requirements/requirements_39_pandas_2_optional.txt - run: name: Build html figures (Pandas 2) @@ -322,7 +309,6 @@ jobs: - run: name: Install dependencies command: | - cd packages/python/plotly python -m venv venv . venv/bin/activate pip install --upgrade pip wheel @@ -331,19 +317,16 @@ jobs: - run: name: Update jupyter widget plotly.js version command: | - cd packages/python/plotly . venv/bin/activate python setup.py updateplotlywidgetversion - run: name: Update plotly.js to dev command: | - cd packages/python/plotly . venv/bin/activate python setup.py updateplotlyjsdev - run: name: Test core command: | - cd packages/python/plotly . venv/bin/activate locale pytest -k 'not nodev' plotly/tests/test_core @@ -351,7 +334,6 @@ jobs: - run: name: Commit command: | - cd packages/python/plotly git config --global user.email "you@example.com" git config --global user.name "Your Name" git add -A @@ -360,12 +342,11 @@ jobs: - run: name: Build source distribution packages command: | - cd packages/python/plotly . venv/bin/activate python setup.py sdist when: always - store_artifacts: - path: packages/python/plotly/dist + path: dist/ full_build: docker: @@ -392,7 +373,7 @@ jobs: command: | eval "$(conda shell.bash hook)" conda activate env - cd packages/python/plotly/js + cd js npm ci npm run build git status @@ -402,9 +383,8 @@ jobs: command: | eval "$(conda shell.bash hook)" conda activate env - cd packages/python/plotly python setup.py sdist bdist_wheel - cp -R dist ../../../output/dist + cp -R dist output/dist git status - run: @@ -412,9 +392,8 @@ jobs: command: | eval "$(conda shell.bash hook)" conda activate env - cd packages/python/plotly conda build recipe/ - mv /opt/conda/envs/env/conda-bld/noarch/plotly*.tar.bz2 ../../../output + mv /opt/conda/envs/env/conda-bld/noarch/plotly*.tar.bz2 output/ git status - run: @@ -422,7 +401,7 @@ jobs: command: | eval "$(conda shell.bash hook)" conda activate env - cd packages/python/plotly/js + cd js npm ci npm run build @@ -471,12 +450,12 @@ jobs: pip install -r requirements.txt if [ "${CIRCLE_BRANCH}" != "doc-prod" ]; then pip uninstall -y plotly - cd ../packages/python/plotly + cd .. pip install -e . cd js npm ci npm run build - cd ../../../../doc + cd ../doc fi cd .. - run: @@ -553,9 +532,9 @@ jobs: # graph_objs/graph_objects if [ "${CIRCLE_BRANCH}" == "doc-prod" ]; then pip uninstall -y plotly - cd ../packages/python/plotly + cd .. pip install -e . - cd ../../../doc + cd doc cd apidoc make html cd _build/html diff --git a/.gitattributes b/.gitattributes index de2c3848b55..ce8d6ba9cd5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -packages/python/plotly/plotly/_version.py export-subst +plotly/_version.py export-subst diff --git a/.gitignore b/.gitignore index 7f8615b184c..b9403cf9f13 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ 0 0.html iframe_figures/ -packages/python/plotly/plotly/tests/test_orca/images/linux/failed/ +plotly/tests/test_orca/images/linux/failed/ *.egg-info @@ -15,6 +15,7 @@ doc/python/raw.githubusercontent.com/ # Don't ignore dataset files !*.csv.gz +!*.geojson.gz *.ipynb @@ -59,10 +60,9 @@ doc/.ipynb_checkpoints tags doc/check-or-enforce-order.py -packages/javascript/jupyterlab-plotly/lib/ -packages/python/plotly/jupyterlab_plotly/labextension/ -packages/python/plotly/jupyterlab_plotly/nbextension/index.js* -packages/python/plotly/plotly/package_data/widgetbundle.js +jupyterlab_plotly/labextension/ +jupyterlab_plotly/nbextension/index.js* +plotly/package_data/widgetbundle.js test/percy/*.html test/percy/pandas2/*.html diff --git a/packages/python/plotly/MANIFEST.in b/MANIFEST.in similarity index 100% rename from packages/python/plotly/MANIFEST.in rename to MANIFEST.in diff --git a/README.md b/README.md index cb3ce93e1b3..0ffe11e7e33 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,8 @@ or conda conda install -c plotly plotly-geo=1.0.0 ``` +`plotly-geo` can be found on Github at https://github.com/plotly/plotly-geo. + ## Copyright and Licenses Code and documentation copyright 2019 Plotly, Inc. diff --git a/packages/python/plotly/_plotly_future_/__init__.py b/_plotly_future_/__init__.py similarity index 100% rename from packages/python/plotly/_plotly_future_/__init__.py rename to _plotly_future_/__init__.py diff --git a/packages/python/plotly/_plotly_future_/extract_chart_studio.py b/_plotly_future_/extract_chart_studio.py similarity index 100% rename from packages/python/plotly/_plotly_future_/extract_chart_studio.py rename to _plotly_future_/extract_chart_studio.py diff --git a/packages/python/plotly/_plotly_future_/orca_defaults.py b/_plotly_future_/orca_defaults.py similarity index 100% rename from packages/python/plotly/_plotly_future_/orca_defaults.py rename to _plotly_future_/orca_defaults.py diff --git a/packages/python/plotly/_plotly_future_/remove_deprecations.py b/_plotly_future_/remove_deprecations.py similarity index 100% rename from packages/python/plotly/_plotly_future_/remove_deprecations.py rename to _plotly_future_/remove_deprecations.py diff --git a/packages/python/plotly/_plotly_future_/renderer_defaults.py b/_plotly_future_/renderer_defaults.py similarity index 100% rename from packages/python/plotly/_plotly_future_/renderer_defaults.py rename to _plotly_future_/renderer_defaults.py diff --git a/packages/python/plotly/_plotly_future_/template_defaults.py b/_plotly_future_/template_defaults.py similarity index 100% rename from packages/python/plotly/_plotly_future_/template_defaults.py rename to _plotly_future_/template_defaults.py diff --git a/packages/python/plotly/_plotly_future_/timezones.py b/_plotly_future_/timezones.py similarity index 100% rename from packages/python/plotly/_plotly_future_/timezones.py rename to _plotly_future_/timezones.py diff --git a/packages/python/plotly/_plotly_future_/trace_uids.py b/_plotly_future_/trace_uids.py similarity index 100% rename from packages/python/plotly/_plotly_future_/trace_uids.py rename to _plotly_future_/trace_uids.py diff --git a/packages/python/plotly/_plotly_future_/v4.py b/_plotly_future_/v4.py similarity index 100% rename from packages/python/plotly/_plotly_future_/v4.py rename to _plotly_future_/v4.py diff --git a/packages/python/plotly/_plotly_future_/v4_subplots.py b/_plotly_future_/v4_subplots.py similarity index 100% rename from packages/python/plotly/_plotly_future_/v4_subplots.py rename to _plotly_future_/v4_subplots.py diff --git a/packages/python/plotly/_plotly_utils/README.md b/_plotly_utils/README.md similarity index 100% rename from packages/python/plotly/_plotly_utils/README.md rename to _plotly_utils/README.md diff --git a/packages/python/plotly/_plotly_utils/__init__.py b/_plotly_utils/__init__.py similarity index 100% rename from packages/python/plotly/_plotly_utils/__init__.py rename to _plotly_utils/__init__.py diff --git a/packages/python/plotly/_plotly_utils/basevalidators.py b/_plotly_utils/basevalidators.py similarity index 100% rename from packages/python/plotly/_plotly_utils/basevalidators.py rename to _plotly_utils/basevalidators.py diff --git a/packages/python/plotly/_plotly_utils/colors/__init__.py b/_plotly_utils/colors/__init__.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/__init__.py rename to _plotly_utils/colors/__init__.py diff --git a/packages/python/plotly/_plotly_utils/colors/_swatches.py b/_plotly_utils/colors/_swatches.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/_swatches.py rename to _plotly_utils/colors/_swatches.py diff --git a/packages/python/plotly/_plotly_utils/colors/carto.py b/_plotly_utils/colors/carto.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/carto.py rename to _plotly_utils/colors/carto.py diff --git a/packages/python/plotly/_plotly_utils/colors/cmocean.py b/_plotly_utils/colors/cmocean.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/cmocean.py rename to _plotly_utils/colors/cmocean.py diff --git a/packages/python/plotly/_plotly_utils/colors/colorbrewer.py b/_plotly_utils/colors/colorbrewer.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/colorbrewer.py rename to _plotly_utils/colors/colorbrewer.py diff --git a/packages/python/plotly/_plotly_utils/colors/cyclical.py b/_plotly_utils/colors/cyclical.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/cyclical.py rename to _plotly_utils/colors/cyclical.py diff --git a/packages/python/plotly/_plotly_utils/colors/diverging.py b/_plotly_utils/colors/diverging.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/diverging.py rename to _plotly_utils/colors/diverging.py diff --git a/packages/python/plotly/_plotly_utils/colors/plotlyjs.py b/_plotly_utils/colors/plotlyjs.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/plotlyjs.py rename to _plotly_utils/colors/plotlyjs.py diff --git a/packages/python/plotly/_plotly_utils/colors/qualitative.py b/_plotly_utils/colors/qualitative.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/qualitative.py rename to _plotly_utils/colors/qualitative.py diff --git a/packages/python/plotly/_plotly_utils/colors/sequential.py b/_plotly_utils/colors/sequential.py similarity index 100% rename from packages/python/plotly/_plotly_utils/colors/sequential.py rename to _plotly_utils/colors/sequential.py diff --git a/packages/python/plotly/_plotly_utils/data_utils.py b/_plotly_utils/data_utils.py similarity index 100% rename from packages/python/plotly/_plotly_utils/data_utils.py rename to _plotly_utils/data_utils.py diff --git a/packages/python/plotly/_plotly_utils/exceptions.py b/_plotly_utils/exceptions.py similarity index 100% rename from packages/python/plotly/_plotly_utils/exceptions.py rename to _plotly_utils/exceptions.py diff --git a/packages/python/plotly/_plotly_utils/files.py b/_plotly_utils/files.py similarity index 100% rename from packages/python/plotly/_plotly_utils/files.py rename to _plotly_utils/files.py diff --git a/packages/python/plotly/_plotly_utils/importers.py b/_plotly_utils/importers.py similarity index 100% rename from packages/python/plotly/_plotly_utils/importers.py rename to _plotly_utils/importers.py diff --git a/packages/python/plotly/_plotly_utils/optional_imports.py b/_plotly_utils/optional_imports.py similarity index 100% rename from packages/python/plotly/_plotly_utils/optional_imports.py rename to _plotly_utils/optional_imports.py diff --git a/packages/python/plotly/_plotly_utils/png.py b/_plotly_utils/png.py similarity index 100% rename from packages/python/plotly/_plotly_utils/png.py rename to _plotly_utils/png.py diff --git a/packages/python/plotly/_plotly_utils/tests/__init__.py b/_plotly_utils/tests/__init__.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/__init__.py rename to _plotly_utils/tests/__init__.py diff --git a/packages/python/plotly/_plotly_utils/tests/resources/1x1-black.png b/_plotly_utils/tests/resources/1x1-black.png similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/resources/1x1-black.png rename to _plotly_utils/tests/resources/1x1-black.png diff --git a/packages/python/plotly/_plotly_utils/tests/validators/__init__.py b/_plotly_utils/tests/validators/__init__.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/__init__.py rename to _plotly_utils/tests/validators/__init__.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_angle_validator.py b/_plotly_utils/tests/validators/test_angle_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_angle_validator.py rename to _plotly_utils/tests/validators/test_angle_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_any_validator.py b/_plotly_utils/tests/validators/test_any_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_any_validator.py rename to _plotly_utils/tests/validators/test_any_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_basetraces_validator.py b/_plotly_utils/tests/validators/test_basetraces_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_basetraces_validator.py rename to _plotly_utils/tests/validators/test_basetraces_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_boolean_validator.py b/_plotly_utils/tests/validators/test_boolean_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_boolean_validator.py rename to _plotly_utils/tests/validators/test_boolean_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_color_validator.py b/_plotly_utils/tests/validators/test_color_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_color_validator.py rename to _plotly_utils/tests/validators/test_color_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_colorlist_validator.py b/_plotly_utils/tests/validators/test_colorlist_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_colorlist_validator.py rename to _plotly_utils/tests/validators/test_colorlist_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_colorscale_validator.py b/_plotly_utils/tests/validators/test_colorscale_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_colorscale_validator.py rename to _plotly_utils/tests/validators/test_colorscale_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_compound_validator.py b/_plotly_utils/tests/validators/test_compound_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_compound_validator.py rename to _plotly_utils/tests/validators/test_compound_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_compoundarray_validator.py b/_plotly_utils/tests/validators/test_compoundarray_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_compoundarray_validator.py rename to _plotly_utils/tests/validators/test_compoundarray_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_dash_validator.py b/_plotly_utils/tests/validators/test_dash_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_dash_validator.py rename to _plotly_utils/tests/validators/test_dash_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_dataarray_validator.py b/_plotly_utils/tests/validators/test_dataarray_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_dataarray_validator.py rename to _plotly_utils/tests/validators/test_dataarray_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_enumerated_validator.py b/_plotly_utils/tests/validators/test_enumerated_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_enumerated_validator.py rename to _plotly_utils/tests/validators/test_enumerated_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_fig_deepcopy.py b/_plotly_utils/tests/validators/test_fig_deepcopy.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_fig_deepcopy.py rename to _plotly_utils/tests/validators/test_fig_deepcopy.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_flaglist_validator.py b/_plotly_utils/tests/validators/test_flaglist_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_flaglist_validator.py rename to _plotly_utils/tests/validators/test_flaglist_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_imageuri_validator.py b/_plotly_utils/tests/validators/test_imageuri_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_imageuri_validator.py rename to _plotly_utils/tests/validators/test_imageuri_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_infoarray_validator.py b/_plotly_utils/tests/validators/test_infoarray_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_infoarray_validator.py rename to _plotly_utils/tests/validators/test_infoarray_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_integer_validator.py b/_plotly_utils/tests/validators/test_integer_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_integer_validator.py rename to _plotly_utils/tests/validators/test_integer_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_literal_validator.py b/_plotly_utils/tests/validators/test_literal_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_literal_validator.py rename to _plotly_utils/tests/validators/test_literal_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_number_validator.py b/_plotly_utils/tests/validators/test_number_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_number_validator.py rename to _plotly_utils/tests/validators/test_number_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_pandas_series_input.py b/_plotly_utils/tests/validators/test_pandas_series_input.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_pandas_series_input.py rename to _plotly_utils/tests/validators/test_pandas_series_input.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_string_validator.py b/_plotly_utils/tests/validators/test_string_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_string_validator.py rename to _plotly_utils/tests/validators/test_string_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_subplotid_validator.py b/_plotly_utils/tests/validators/test_subplotid_validator.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_subplotid_validator.py rename to _plotly_utils/tests/validators/test_subplotid_validator.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_validators_common.py b/_plotly_utils/tests/validators/test_validators_common.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_validators_common.py rename to _plotly_utils/tests/validators/test_validators_common.py diff --git a/packages/python/plotly/_plotly_utils/tests/validators/test_xarray_input.py b/_plotly_utils/tests/validators/test_xarray_input.py similarity index 100% rename from packages/python/plotly/_plotly_utils/tests/validators/test_xarray_input.py rename to _plotly_utils/tests/validators/test_xarray_input.py diff --git a/packages/python/plotly/_plotly_utils/utils.py b/_plotly_utils/utils.py similarity index 100% rename from packages/python/plotly/_plotly_utils/utils.py rename to _plotly_utils/utils.py diff --git a/packages/python/plotly/codegen/__init__.py b/codegen/__init__.py similarity index 98% rename from packages/python/plotly/codegen/__init__.py rename to codegen/__init__.py index 6b4a3261312..ffc15257213 100644 --- a/packages/python/plotly/codegen/__init__.py +++ b/codegen/__init__.py @@ -90,8 +90,8 @@ def perform_codegen(): # --------------------------------- # (relative to project root) abs_file_path = opath.realpath(__file__) - packages_py = opath.dirname(opath.dirname(opath.dirname(abs_file_path))) - outdir = opath.join(packages_py, "plotly", "plotly") + project_root = opath.dirname(opath.dirname(abs_file_path)) + outdir = opath.join(project_root, "plotly") # Delete prior codegen output # --------------------------- @@ -113,7 +113,7 @@ def perform_codegen(): # Load plotly schema # ------------------ plot_schema_path = opath.join( - packages_py, "plotly", "codegen", "resources", "plot-schema.json" + project_root, "codegen", "resources", "plot-schema.json" ) with open(plot_schema_path, "r") as f: diff --git a/packages/python/plotly/codegen/compatibility.py b/codegen/compatibility.py similarity index 100% rename from packages/python/plotly/codegen/compatibility.py rename to codegen/compatibility.py diff --git a/packages/python/plotly/codegen/datatypes.py b/codegen/datatypes.py similarity index 100% rename from packages/python/plotly/codegen/datatypes.py rename to codegen/datatypes.py diff --git a/packages/python/plotly/codegen/figure.py b/codegen/figure.py similarity index 100% rename from packages/python/plotly/codegen/figure.py rename to codegen/figure.py diff --git a/packages/python/plotly/codegen/resources/plot-schema.json b/codegen/resources/plot-schema.json similarity index 100% rename from packages/python/plotly/codegen/resources/plot-schema.json rename to codegen/resources/plot-schema.json diff --git a/packages/python/plotly/codegen/utils.py b/codegen/utils.py similarity index 100% rename from packages/python/plotly/codegen/utils.py rename to codegen/utils.py diff --git a/packages/python/plotly/codegen/validators.py b/codegen/validators.py similarity index 100% rename from packages/python/plotly/codegen/validators.py rename to codegen/validators.py diff --git a/contributing.md b/contributing.md index adb8f55b905..063c0f7f29f 100644 --- a/contributing.md +++ b/contributing.md @@ -20,14 +20,14 @@ There are many ways to contribute to plotly.py. To contribute effectively, it is is [generated from the Plotly.js schema](https://plotly.com/python/figure-structure/), so changes to be made in this package need to be [contributed to Plotly.js](https://github.com/plotly/plotly.js) or to the `codegen` system - in `packages/python/plotly/codegen`. Most of the codegen code concerns the generation of docstrings from + in `codegen/`. Most of the codegen code concerns the generation of docstrings from the schema JSON in Plotly.js. Traces and Layout classes have a direct correspondence with their Javascript - counterpart. Higher-level methods that work on figures regardless of the current schema (e.g., `BaseFigure.for_each_trace`) are defined in `packages/python/plotly/plotly/basedatatypes.py`. Additional helper methods are defined there for the `Figure` object, such as + counterpart. Higher-level methods that work on figures regardless of the current schema (e.g., `BaseFigure.for_each_trace`) are defined in `plotly/basedatatypes.py`. Additional helper methods are defined there for the `Figure` object, such as `update_layout`, `add_trace`, etc. - [the `plotly.express` module](https://plotly.com/python/plotly-express/) (usually imported as `px`) is a high-level - functional API that uses `graph_objects` under the hood. Its code is in `packages/python/plotly/plotly/express`. + functional API that uses `graph_objects` under the hood. Its code is in `plotly/express/`. Plotly Express functions are designed to be highly consistent with each other, and to do *as little computation in Python as possible*, generally concerning themselves with formatting data and creating @@ -49,13 +49,13 @@ There are many ways to contribute to plotly.py. To contribute effectively, it is as we are introducing more features into `plotly.express`. Some issues in the tracker are labeled "figure_factory" and can be good issues to work on. More instructions on figure factories are found - [here](packages/python/plotly/plotly/figure_factory/README.md). + [here](plotly/figure_factory/README.md). - other pure-Python submodules are: `plotly.io` (low-level interface for displaying, reading and writing figures), `plotly.subplots` (helper function for layout of multi-plot figures) -- tests are found in `packages/python/plotly/plotly/tests`. Different +- tests are found in `plotly/tests`. Different directories correspond to different test jobs (with different dependency sets) run in continuous integration. More is explained about tests in the following "Technical aspects" section. @@ -138,7 +138,7 @@ We will support Python 3.12 and higher versions soon. ### Install development requirements (Non-Windows) ```bash -(plotly_dev) $ pip install -r packages/python/plotly/requires-optional.txt +(plotly_dev) $ pip install -r requires-optional.txt ``` ### Install development requirements (Windows + Conda) Because Windows requires Visual Studio libraries to compile some of the optional dependencies, follow these steps to @@ -146,17 +146,17 @@ complete installation and avoid gdal-config errors. ```bash (plotly_dev) $ conda install fiona -(plotly_dev) $ pip install -r packages/python/plotly/requires-optional.txt +(plotly_dev) $ pip install -r requires-optional.txt ``` ### Editable install of plotly packages ```bash -(plotly_dev) $ pip install -e packages/python/plotly/ +(plotly_dev) $ pip install -e . ``` **Note**: To test `go.FigureWidget` locally, you'll need to generate the javascript bundle as follows: ``` -cd packages/python/plotly/js +cd js npm install && npm run build ``` @@ -174,7 +174,7 @@ documentation on _development mode_. This repo uses the [Black](https://black.readthedocs.io/en/stable/) code formatter, and the [pre-commit](https://pre-commit.com/) library to manage a git commit hook to run Black prior to each commit. Both pre-commit and black are included in the -`packages/python/plotly/requires-optional.txt` file, so you should have them +`requires-optional.txt` file, so you should have them installed already if you've been following along. To enable the Black formatting git hook, run the following from within your virtual @@ -214,12 +214,11 @@ make that pull request! ## Update to a new version of Plotly.js -First update the version of the `plotly.js` dependency in `packages/python/plotly/js/package.json`. +First update the version of the `plotly.js` dependency in `js/package.json`. Then run the `updateplotlyjs` command with: ```bash -$ cd packages/python/plotly $ python setup.py updateplotlyjs ``` @@ -249,7 +248,7 @@ $ npm run build $ npm pack $ mv plotly.js-*.tgz plotly.js.tgz -# In your plotly.py/packages/python/plotly/ directory: +# In your plotly.py/ directory: $ python setup.py updateplotlyjsdev --local /path/to/your/plotly.js/ ``` @@ -267,19 +266,19 @@ Since our tests cover *all* the functionality, to prevent tons of errors from sh After you've done that, go ahead and run the test suite! ```bash -pytest packages/python/plotly/plotly/tests/ +pytest plotly/tests/ ``` Or for more *verbose* output: ```bash -pytest -v packages/python/plotly/plotly/tests/ +pytest -v plotly/tests/ ``` Either of those will run *every* test we've written for the Python API. You can get more granular by running something like: ```bash -pytest packages/python/plotly/plotly/tests/test_core/ +pytest plotly/tests/test_core/ ``` ... or even more granular by running something like: @@ -323,7 +322,7 @@ Where `TOXENV` is the environment list you want to use when invoking `tox` from * `tox` will automatically manage a virtual env for each environment you want to test in. * You only have to run `tox` and know that the module is working in all included Python versions. -Finally, `tox` allows you to pass in additional command line arguments that are formatted in (by us) in the `tox.ini` file, see `{posargs}`. This is setup to help with our configuration of [pytest markers](http://doc.pytest.org/en/latest/example/markers.html), which are set up in `packages/python/plotly/pytest.ini`. To run only tests that are *not* tagged with `nodev`, you could use the following command: +Finally, `tox` allows you to pass in additional command line arguments that are formatted in (by us) in the `tox.ini` file, see `{posargs}`. This is setup to help with our configuration of [pytest markers](http://doc.pytest.org/en/latest/example/markers.html), which are set up in `pytest.ini`. To run only tests that are *not* tagged with `nodev`, you could use the following command: ```bash tox -- -a '!nodev' diff --git a/doc/apidoc/Makefile b/doc/apidoc/Makefile index 0e5987301d9..88d2ad14a82 100644 --- a/doc/apidoc/Makefile +++ b/doc/apidoc/Makefile @@ -18,24 +18,24 @@ help: # For sphinx-apidoc the first positional path is the module to document # then all the other ones are paths to exclude for the doc generation %: Makefile - sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/*.py - sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/*/*.py - sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/*/*/*.py - sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/*/*/*/*.py + sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../plotly/graph_objs/*.py + sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../plotly/graph_objs/*/*.py + sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../plotly/graph_objs/*/*/*.py + sed -i 's/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../plotly/graph_objs/*/*/*/*.py # Copy _plotly_utils file so that they appear in the API doc - cp ../../packages/python/plotly/_plotly_utils/colors/sequential.py ../../packages/python/plotly/_plotly_utils/colors/diverging.py ../../packages/python/plotly/_plotly_utils/colors/qualitative.py ../../packages/python/plotly/_plotly_utils/colors/cyclical.py ../../packages/python/plotly/_plotly_utils/colors/colorbrewer.py ../../packages/python/plotly/_plotly_utils/colors/carto.py ../../packages/python/plotly/_plotly_utils/colors/cmocean.py ../../packages/python/plotly/plotly/colors - cp ../../packages/python/plotly/_plotly_utils/colors/sequential.py ../../packages/python/plotly/_plotly_utils/colors/diverging.py ../../packages/python/plotly/_plotly_utils/colors/qualitative.py ../../packages/python/plotly/_plotly_utils/colors/cyclical.py ../../packages/python/plotly/_plotly_utils/colors/colorbrewer.py ../../packages/python/plotly/_plotly_utils/colors/carto.py ../../packages/python/plotly/_plotly_utils/colors/cmocean.py ../../packages/python/plotly/plotly/express/colors + cp ../../_plotly_utils/colors/sequential.py ../../_plotly_utils/colors/diverging.py ../../_plotly_utils/colors/qualitative.py ../../_plotly_utils/colors/cyclical.py ../../_plotly_utils/colors/colorbrewer.py ../../_plotly_utils/colors/carto.py ../../_plotly_utils/colors/cmocean.py ../../plotly/colors + cp ../../_plotly_utils/colors/sequential.py ../../_plotly_utils/colors/diverging.py ../../_plotly_utils/colors/qualitative.py ../../_plotly_utils/colors/cyclical.py ../../_plotly_utils/colors/colorbrewer.py ../../_plotly_utils/colors/carto.py ../../_plotly_utils/colors/cmocean.py ../../plotly/express/colors # Run sphinx-apidoc script to create hierarchy of rst files to generate # docstrings. The first path is the one to process, the following ones # are excluded from the search. rm -rf _build generated - sphinx-apidoc -M -o generated ../../packages/python/plotly/plotly ../../packages/python/plotly/plotly/validators ../../packages/python/plotly/plotly/tests ../../packages/python/plotly/plotly/matplotlylib/ ../../packages/python/plotly/plotly/offline ../../packages/python/plotly/plotly/api + sphinx-apidoc -M -o generated ../../plotly ../../plotly/validators ../../plotly/tests ../../plotly/matplotlylib/ ../../plotly/offline ../../plotly/api # Run sphinx-build to build html pages from the rst pages @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - git checkout -- ../../packages/python/plotly/plotly/graph_objs + git checkout -- ../../plotly/graph_objs # Remove files which were added only for docstring generation - rm ../../packages/python/plotly/plotly/colors/diverging.py ../../packages/python/plotly/plotly/colors/sequential.py ../../packages/python/plotly/plotly/colors/qualitative.py ../../packages/python/plotly/plotly/colors/cyclical.py ../../packages/python/plotly/plotly/colors/colorbrewer.py ../../packages/python/plotly/plotly/colors/carto.py ../../packages/python/plotly/plotly/colors/cmocean.py - rm ../../packages/python/plotly/plotly/express/colors/diverging.py ../../packages/python/plotly/plotly/express/colors/sequential.py ../../packages/python/plotly/plotly/express/colors/qualitative.py ../../packages/python/plotly/plotly/express/colors/cyclical.py ../../packages/python/plotly/plotly/express/colors/colorbrewer.py ../../packages/python/plotly/plotly/express/colors/carto.py ../../packages/python/plotly/plotly/express/colors/cmocean.py + rm ../../plotly/colors/diverging.py ../../plotly/colors/sequential.py ../../plotly/colors/qualitative.py ../../plotly/colors/cyclical.py ../../plotly/colors/colorbrewer.py ../../plotly/colors/carto.py ../../plotly/colors/cmocean.py + rm ../../plotly/express/colors/diverging.py ../../plotly/express/colors/sequential.py ../../plotly/express/colors/qualitative.py ../../plotly/express/colors/cyclical.py ../../plotly/express/colors/colorbrewer.py ../../plotly/express/colors/carto.py ../../plotly/express/colors/cmocean.py rename 's/graph_objs/graph_objects/' _build/html/*.html _build/html/generated/*.html _build/html/generated/generated/*.html mv _build/html/generated/plotly.graph_objs.html _build/html/generated/plotly.graph_objects.html sed -i 's/graph_objs/graph_objects/g' _build/html/*.html diff --git a/packages/python/plotly/js/package-lock.json b/js/package-lock.json similarity index 100% rename from packages/python/plotly/js/package-lock.json rename to js/package-lock.json diff --git a/packages/python/plotly/js/package.json b/js/package.json similarity index 100% rename from packages/python/plotly/js/package.json rename to js/package.json diff --git a/packages/python/plotly/js/tsconfig.json b/js/tsconfig.json similarity index 100% rename from packages/python/plotly/js/tsconfig.json rename to js/tsconfig.json diff --git a/packages/python/plotly/js/widget.ts b/js/widget.ts similarity index 100% rename from packages/python/plotly/js/widget.ts rename to js/widget.ts diff --git a/migration-guide.md b/migration-guide.md index 4fb0c4e45ea..b7fec3cf9db 100644 --- a/migration-guide.md +++ b/migration-guide.md @@ -1,3 +1,6 @@ +# Migration to Version 6 +See https://plotly.com/python/v6-migration/ + # Migration to Version 5 See https://community.plotly.com/t/introducing-plotly-py-5-0-0-a-new-federated-jupyter-extension-icicle-charts-and-bar-chart-patterns/54039 diff --git a/packages/python/plotly/README.md b/packages/python/plotly/README.md deleted file mode 120000 index 8a33348c7d8..00000000000 --- a/packages/python/plotly/README.md +++ /dev/null @@ -1 +0,0 @@ -../../../README.md \ No newline at end of file diff --git a/packages/python/plotly/pyproject.toml b/packages/python/plotly/pyproject.toml deleted file mode 100644 index e90a16f3f5c..00000000000 --- a/packages/python/plotly/pyproject.toml +++ /dev/null @@ -1,3 +0,0 @@ -[build-system] -requires = ["jupyterlab~=3.0;python_version>='3.6'", "setuptools>=40.8.0", "wheel"] -build-backend = "setuptools.build_meta" diff --git a/packages/python/plotly/recipe/LICENSE.txt b/packages/python/plotly/recipe/LICENSE.txt deleted file mode 100644 index 98b37b6f421..00000000000 --- a/packages/python/plotly/recipe/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016-2018 Plotly, Inc - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/packages/python/plotly/setup.py b/packages/python/plotly/setup.py deleted file mode 100644 index 1b8b6a2159a..00000000000 --- a/packages/python/plotly/setup.py +++ /dev/null @@ -1,581 +0,0 @@ -import os -import sys -import time -import platform -import json -import shutil - -from setuptools import setup, Command -from setuptools.command.egg_info import egg_info -from subprocess import check_call -from distutils import log - -# ensure the current directory is on sys.path; so versioneer can be imported -# when pip uses PEP 517/518 build rules. -# https://github.com/python-versioneer/python-versioneer/issues/193 -sys.path.append(os.path.dirname(__file__)) - -import versioneer - - -here = os.path.dirname(os.path.abspath(__file__)) -project_root = os.path.dirname(os.path.dirname(os.path.dirname(here))) -node_root = os.path.join(project_root, "packages", "python", "plotly", "js") -is_repo = os.path.exists(os.path.join(project_root, ".git")) - -npm_path = os.pathsep.join( - [ - os.path.join(node_root, "node_modules", ".bin"), - os.environ.get("PATH", os.defpath), - ] -) - -if "--skip-npm" in sys.argv or os.environ.get("SKIP_NPM") is not None: - print("Skipping npm install as requested.") - skip_npm = True - if "--skip-npm" in sys.argv: - sys.argv.remove("--skip-npm") -else: - skip_npm = False - - -# Load plotly.js version from js/package.json -def plotly_js_version(): - path = os.path.join(here, "js", "package.json") - with open(path, "rt") as f: - package_json = json.load(f) - version = package_json["dependencies"]["plotly.js"] - version = version.replace("^", "") - - return version - - -def readme(): - with open(os.path.join(here, "README.md")) as f: - return f.read() - - -def js_prerelease(command, strict=False): - """decorator for building minified js/css prior to another command""" - - class DecoratedCommand(command): - def run(self): - jsdeps = self.distribution.get_command_obj("jsdeps") - if not is_repo and all(os.path.exists(t) for t in jsdeps.targets): - # sdist, nothing to do - command.run(self) - return - - try: - self.distribution.run_command("jsdeps") - except Exception as e: - missing = [t for t in jsdeps.targets if not os.path.exists(t)] - if strict or missing: - log.warn("rebuilding js and css failed") - if missing: - log.error("missing files: %s" % missing) - raise e - else: - log.warn("rebuilding js and css failed (not a problem)") - log.warn(str(e)) - command.run(self) - update_package_data(self.distribution) - - return DecoratedCommand - - -def update_package_data(distribution): - """update package_data to catch changes during setup""" - build_py = distribution.get_command_obj("build_py") - - # re-init build_py options which load package_data - build_py.finalize_options() - - -class NPM(Command): - description = "install package.json dependencies using npm" - - user_options = [] - - node_modules = os.path.join(node_root, "node_modules") - - targets = [ - os.path.join(here, "plotly", "package_data", "widgetbundle.js"), - ] - - def initialize_options(self): - self.local = None - - def finalize_options(self): - self.set_undefined_options("updateplotlyjsdev", ("local", "local")) - - def get_npm_name(self): - npmName = "npm" - if platform.system() == "Windows": - npmName = "npm.cmd" - - return npmName - - def has_npm(self): - npmName = self.get_npm_name() - try: - check_call([npmName, "--version"]) - return True - except: - return False - - def run(self): - if skip_npm: - log.info("Skipping npm-installation") - return - - has_npm = self.has_npm() - if not has_npm: - log.error( - "`npm` unavailable. If you're running this command using sudo, make sure `npm` is available to sudo" - ) - - env = os.environ.copy() - env["PATH"] = npm_path - - if self.has_npm(): - log.info( - "Installing build dependencies with npm. This may take a while..." - ) - npmName = self.get_npm_name() - check_call( - [npmName, "install"], - cwd=node_root, - stdout=sys.stdout, - stderr=sys.stderr, - ) - if self.local is not None: - plotly_archive = os.path.join(self.local, "plotly.js.tgz") - check_call( - [npmName, "install", plotly_archive], - cwd=node_root, - stdout=sys.stdout, - stderr=sys.stderr, - ) - check_call( - [npmName, "run", "build"], - cwd=node_root, - stdout=sys.stdout, - stderr=sys.stderr, - ) - os.utime(self.node_modules, None) - - for t in self.targets: - if not os.path.exists(t): - msg = "Missing file: %s" % t - raise ValueError(msg) - - # update package data in case this created new files - update_package_data(self.distribution) - - -class CodegenCommand(Command): - description = "Generate class hierarchy from Plotly JSON schema" - user_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - if sys.version_info < (3, 8): - raise ImportError("Code generation must be executed with Python >= 3.8") - - from codegen import perform_codegen - - perform_codegen() - - -def overwrite_schema_local(uri): - path = os.path.join(here, "codegen", "resources", "plot-schema.json") - shutil.copyfile(uri, path) - - -def overwrite_schema(url): - import requests - - req = requests.get(url) - assert req.status_code == 200 - path = os.path.join(here, "codegen", "resources", "plot-schema.json") - with open(path, "wb") as f: - f.write(req.content) - - -def overwrite_bundle_local(uri): - path = os.path.join(here, "plotly", "package_data", "plotly.min.js") - shutil.copyfile(uri, path) - - -def overwrite_bundle(url): - import requests - - req = requests.get(url) - assert req.status_code == 200 - path = os.path.join(here, "plotly", "package_data", "plotly.min.js") - with open(path, "wb") as f: - f.write(req.content) - - -def overwrite_plotlyjs_version_file(plotlyjs_version): - path = os.path.join(here, "plotly", "offline", "_plotlyjs_version.py") - with open(path, "w") as f: - f.write( - """\ -# DO NOT EDIT -# This file is generated by the updatebundle setup.py command -__plotlyjs_version__ = "{plotlyjs_version}" -""".format( - plotlyjs_version=plotlyjs_version - ) - ) - - -def overwrite_plotlywidget_version_file(version): - path = os.path.join(here, "plotly", "_widget_version.py") - with open(path, "w") as f: - f.write( - """\ -# This file is generated by the updateplotlywidgetversion setup.py command -# for automated dev builds -# -# It is edited by hand prior to official releases -__frontend_version__ = "{version}" -""".format( - version=version - ) - ) - - -def request_json(url): - import requests - - req = requests.get(url) - return json.loads(req.content.decode("utf-8")) - - -def get_latest_publish_build_info(repo, branch): - url = ( - r"https://circleci.com/api/v1.1/project/github/" - r"{repo}/tree/{branch}?limit=100&filter=completed" - ).format(repo=repo, branch=branch) - - branch_jobs = request_json(url) - - # Get most recent successful publish build for branch - builds = [ - j - for j in branch_jobs - if j.get("workflows", {}).get("job_name", None) == "publish-dist" - and j.get("status", None) == "success" - ] - build = builds[0] - - # Extract build info - return {p: build[p] for p in ["vcs_revision", "build_num", "committer_date"]} - - -def get_bundle_schema_local(local): - plotly_archive = os.path.join(local, "plotly.js.tgz") - plotly_bundle = os.path.join(local, "dist/plotly.min.js") - plotly_schemas = os.path.join(local, "dist/plot-schema.json") - return plotly_archive, plotly_bundle, plotly_schemas - - -def get_bundle_schema_urls(build_num): - url = ( - "https://circleci.com/api/v1.1/project/github/" - "plotly/plotly.js/{build_num}/artifacts" - ).format(build_num=build_num) - - artifacts = request_json(url) - - # Find archive - archives = [a for a in artifacts if a.get("path", None) == "plotly.js.tgz"] - archive = archives[0] - - # Find bundle - bundles = [a for a in artifacts if a.get("path", None) == "dist/plotly.min.js"] - bundle = bundles[0] - - # Find schema - schemas = [a for a in artifacts if a.get("path", None) == "dist/plot-schema.json"] - schema = schemas[0] - - return archive["url"], bundle["url"], schema["url"] - - -class UpdateSchemaCommand(Command): - description = "Download latest version of the plot-schema JSON file" - user_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - url = ( - "https://raw.githubusercontent.com/plotly/plotly.js/" - "v%s/dist/plot-schema.json" % plotly_js_version() - ) - overwrite_schema(url) - - -class UpdateBundleCommand(Command): - description = "Download latest version of the plot-schema JSON file" - user_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - url = ( - "https://raw.githubusercontent.com/plotly/plotly.js/" - "v%s/dist/plotly.min.js" % plotly_js_version() - ) - overwrite_bundle(url) - - # Write plotly.js version file - plotlyjs_version = plotly_js_version() - overwrite_plotlyjs_version_file(plotlyjs_version) - - -class UpdatePlotlyJsCommand(Command): - description = "Update project to a new version of plotly.js" - user_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - self.run_command("updatebundle") - self.run_command("updateschema") - self.run_command("codegen") - - -class UpdateBundleSchemaDevCommand(Command): - description = "Update the plotly.js schema and bundle from master" - user_options = [] - - def initialize_options(self): - self.devrepo = None - self.devbranch = None - self.local = None - - def finalize_options(self): - self.set_undefined_options("updateplotlyjsdev", ("devrepo", "devrepo")) - self.set_undefined_options("updateplotlyjsdev", ("devbranch", "devbranch")) - self.set_undefined_options("updateplotlyjsdev", ("local", "local")) - - def run(self): - if self.local is None: - build_info = get_latest_publish_build_info(self.devrepo, self.devbranch) - - archive_url, bundle_url, schema_url = get_bundle_schema_urls( - build_info["build_num"] - ) - - # Update bundle in package data - overwrite_bundle(bundle_url) - - # Update schema in package data - overwrite_schema(schema_url) - else: - # this info could be more informative but - # it doesn't seem as useful in a local context - # and requires dependencies and programming. - build_info = {"vcs_revision": "local", "committer_date": str(time.time())} - self.devrepo = self.local - self.devbranch = "" - - archive_uri, bundle_uri, schema_uri = get_bundle_schema_local(self.local) - overwrite_bundle_local(bundle_uri) - overwrite_schema_local(schema_uri) - - # Update plotly.js url in package.json - package_json_path = os.path.join(node_root, "package.json") - with open(package_json_path, "r") as f: - package_json = json.load(f) - - # Replace version with bundle url - package_json["dependencies"]["plotly.js"] = ( - archive_url if self.local is None else archive_uri - ) - with open(package_json_path, "w") as f: - json.dump(package_json, f, indent=2) - - # update plotly.js version in _plotlyjs_version - rev = build_info["vcs_revision"] - date = str(build_info["committer_date"]) - version = "_".join([self.devrepo, self.devbranch, date[:10], rev[:8]]) - overwrite_plotlyjs_version_file(version) - - -class UpdatePlotlyJsDevCommand(Command): - description = "Update project to a new development version of plotly.js" - user_options = [ - ("devrepo=", None, "Repository name"), - ("devbranch=", None, "branch or pull/number"), - ("local=", None, "local copy of repo, used by itself"), - ] - - def initialize_options(self): - self.devrepo = "plotly/plotly.js" - self.devbranch = "master" - self.local = None - - def finalize_options(self): - pass - - def run(self): - self.run_command("updatebundleschemadev") - self.run_command("jsdeps") - self.run_command("codegen") - - -class UpdatePlotlywidgetVersionCommand(Command): - description = "Update package.json version to match widget version" - - user_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - from plotly._version import git_pieces_from_vcs, render - - # Update plotly.js url in package.json - package_json_path = os.path.join(node_root, "package.json") - - with open(package_json_path, "r") as f: - package_json = json.load(f) - - # Replace version with bundle url - pieces = git_pieces_from_vcs("widget-v", project_root, False) - pieces["dirty"] = False - widget_ver = render(pieces, "pep440")["version"] - - package_json["version"] = widget_ver - with open(package_json_path, "w") as f: - json.dump(package_json, f, indent=2) - - # write _widget_version - overwrite_plotlywidget_version_file(widget_ver) - - -graph_objs_packages = [ - d[0].replace("/", ".") - for d in os.walk("plotly/graph_objs") - if not d[0].endswith("__pycache__") -] - - -validator_packages = [ - d[0].replace("/", ".") - for d in os.walk("plotly/validators") - if not d[0].endswith("__pycache__") -] - -versioneer_cmds = versioneer.get_cmdclass() - - -def read_req_file(req_type): - with open(f"requires-{req_type}.txt", encoding="utf-8") as fp: - requires = (line.strip() for line in fp) - return [req for req in requires if req and not req.startswith("#")] - - -setup( - name="plotly", - version=versioneer.get_version(), - author="Chris P", - author_email="chris@plot.ly", - maintainer="Nicolas Kruchten", - maintainer_email="nicolas@plot.ly", - url="https://plotly.com/python/", - project_urls={ - "Documentation": "https://plotly.com/python/", - "Github": "https://github.com/plotly/plotly.py", - "Changelog": "https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md", - }, - description="An open-source, interactive data visualization library for Python", - long_description=readme(), - long_description_content_type="text/markdown", - classifiers=[ - "Development Status :: 5 - Production/Stable", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Topic :: Scientific/Engineering :: Visualization", - "License :: OSI Approved :: MIT License", - ], - python_requires=">=3.8", - license="MIT", - packages=[ - "plotly", - "plotly.plotly", - "plotly.offline", - "plotly.io", - "plotly.matplotlylib", - "plotly.matplotlylib.mplexporter", - "plotly.matplotlylib.mplexporter.renderers", - "plotly.figure_factory", - "plotly.data", - "plotly.colors", - "plotly.express", - "plotly.express.data", - "plotly.express.colors", - "plotly.express.trendline_functions", - "plotly.graph_objects", - "_plotly_utils", - "_plotly_utils.colors", - "_plotly_future_", - ] - + graph_objs_packages - + validator_packages, - package_data={ - "plotly": [ - "package_data/*", - "package_data/templates/*", - "package_data/datasets/*", - ], - }, - install_requires=read_req_file("install"), - extras_require={ - "express": read_req_file("express"), - }, - zip_safe=False, - cmdclass=dict( - build_py=js_prerelease(versioneer_cmds["build_py"]), - egg_info=js_prerelease(egg_info), - sdist=js_prerelease(versioneer_cmds["sdist"], strict=True), - jsdeps=NPM, - codegen=CodegenCommand, - updateschema=UpdateSchemaCommand, - updatebundle=UpdateBundleCommand, - updateplotlyjs=js_prerelease(UpdatePlotlyJsCommand), - updatebundleschemadev=UpdateBundleSchemaDevCommand, - updateplotlyjsdev=UpdatePlotlyJsDevCommand, - updateplotlywidgetversion=UpdatePlotlywidgetVersionCommand, - version=versioneer_cmds["version"], - ), -) diff --git a/packages/python/plotly/plotly/__init__.py b/plotly/__init__.py similarity index 100% rename from packages/python/plotly/plotly/__init__.py rename to plotly/__init__.py diff --git a/packages/python/plotly/plotly/_subplots.py b/plotly/_subplots.py similarity index 100% rename from packages/python/plotly/plotly/_subplots.py rename to plotly/_subplots.py diff --git a/packages/python/plotly/plotly/_version.py b/plotly/_version.py similarity index 100% rename from packages/python/plotly/plotly/_version.py rename to plotly/_version.py diff --git a/packages/python/plotly/plotly/_widget_version.py b/plotly/_widget_version.py similarity index 100% rename from packages/python/plotly/plotly/_widget_version.py rename to plotly/_widget_version.py diff --git a/packages/python/plotly/plotly/animation.py b/plotly/animation.py similarity index 100% rename from packages/python/plotly/plotly/animation.py rename to plotly/animation.py diff --git a/packages/python/plotly/plotly/api/__init__.py b/plotly/api/__init__.py similarity index 100% rename from packages/python/plotly/plotly/api/__init__.py rename to plotly/api/__init__.py diff --git a/packages/python/plotly/plotly/api/utils.py b/plotly/api/utils.py similarity index 100% rename from packages/python/plotly/plotly/api/utils.py rename to plotly/api/utils.py diff --git a/packages/python/plotly/plotly/api/v1.py b/plotly/api/v1.py similarity index 100% rename from packages/python/plotly/plotly/api/v1.py rename to plotly/api/v1.py diff --git a/packages/python/plotly/plotly/api/v2.py b/plotly/api/v2.py similarity index 100% rename from packages/python/plotly/plotly/api/v2.py rename to plotly/api/v2.py diff --git a/packages/python/plotly/plotly/basedatatypes.py b/plotly/basedatatypes.py similarity index 100% rename from packages/python/plotly/plotly/basedatatypes.py rename to plotly/basedatatypes.py diff --git a/packages/python/plotly/plotly/basewidget.py b/plotly/basewidget.py similarity index 100% rename from packages/python/plotly/plotly/basewidget.py rename to plotly/basewidget.py diff --git a/packages/python/plotly/plotly/callbacks.py b/plotly/callbacks.py similarity index 100% rename from packages/python/plotly/plotly/callbacks.py rename to plotly/callbacks.py diff --git a/packages/python/plotly/plotly/colors/__init__.py b/plotly/colors/__init__.py similarity index 100% rename from packages/python/plotly/plotly/colors/__init__.py rename to plotly/colors/__init__.py diff --git a/packages/python/plotly/plotly/config.py b/plotly/config.py similarity index 100% rename from packages/python/plotly/plotly/config.py rename to plotly/config.py diff --git a/packages/python/plotly/plotly/conftest.py b/plotly/conftest.py similarity index 100% rename from packages/python/plotly/plotly/conftest.py rename to plotly/conftest.py diff --git a/packages/python/plotly/plotly/dashboard_objs.py b/plotly/dashboard_objs.py similarity index 100% rename from packages/python/plotly/plotly/dashboard_objs.py rename to plotly/dashboard_objs.py diff --git a/packages/python/plotly/plotly/data/__init__.py b/plotly/data/__init__.py similarity index 100% rename from packages/python/plotly/plotly/data/__init__.py rename to plotly/data/__init__.py diff --git a/packages/python/plotly/plotly/exceptions.py b/plotly/exceptions.py similarity index 100% rename from packages/python/plotly/plotly/exceptions.py rename to plotly/exceptions.py diff --git a/packages/python/plotly/plotly/express/__init__.py b/plotly/express/__init__.py similarity index 100% rename from packages/python/plotly/plotly/express/__init__.py rename to plotly/express/__init__.py diff --git a/packages/python/plotly/plotly/express/_chart_types.py b/plotly/express/_chart_types.py similarity index 100% rename from packages/python/plotly/plotly/express/_chart_types.py rename to plotly/express/_chart_types.py diff --git a/packages/python/plotly/plotly/express/_core.py b/plotly/express/_core.py similarity index 100% rename from packages/python/plotly/plotly/express/_core.py rename to plotly/express/_core.py diff --git a/packages/python/plotly/plotly/express/_doc.py b/plotly/express/_doc.py similarity index 100% rename from packages/python/plotly/plotly/express/_doc.py rename to plotly/express/_doc.py diff --git a/packages/python/plotly/plotly/express/_imshow.py b/plotly/express/_imshow.py similarity index 100% rename from packages/python/plotly/plotly/express/_imshow.py rename to plotly/express/_imshow.py diff --git a/packages/python/plotly/plotly/express/_special_inputs.py b/plotly/express/_special_inputs.py similarity index 100% rename from packages/python/plotly/plotly/express/_special_inputs.py rename to plotly/express/_special_inputs.py diff --git a/packages/python/plotly/plotly/express/colors/__init__.py b/plotly/express/colors/__init__.py similarity index 100% rename from packages/python/plotly/plotly/express/colors/__init__.py rename to plotly/express/colors/__init__.py diff --git a/packages/python/plotly/plotly/express/data/__init__.py b/plotly/express/data/__init__.py similarity index 100% rename from packages/python/plotly/plotly/express/data/__init__.py rename to plotly/express/data/__init__.py diff --git a/packages/python/plotly/plotly/express/imshow_utils.py b/plotly/express/imshow_utils.py similarity index 100% rename from packages/python/plotly/plotly/express/imshow_utils.py rename to plotly/express/imshow_utils.py diff --git a/packages/python/plotly/plotly/express/trendline_functions/__init__.py b/plotly/express/trendline_functions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/express/trendline_functions/__init__.py rename to plotly/express/trendline_functions/__init__.py diff --git a/packages/python/plotly/plotly/figure_factory/README.md b/plotly/figure_factory/README.md similarity index 100% rename from packages/python/plotly/plotly/figure_factory/README.md rename to plotly/figure_factory/README.md diff --git a/packages/python/plotly/plotly/figure_factory/_2d_density.py b/plotly/figure_factory/_2d_density.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_2d_density.py rename to plotly/figure_factory/_2d_density.py diff --git a/packages/python/plotly/plotly/figure_factory/__init__.py b/plotly/figure_factory/__init__.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/__init__.py rename to plotly/figure_factory/__init__.py diff --git a/packages/python/plotly/plotly/figure_factory/_annotated_heatmap.py b/plotly/figure_factory/_annotated_heatmap.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_annotated_heatmap.py rename to plotly/figure_factory/_annotated_heatmap.py diff --git a/packages/python/plotly/plotly/figure_factory/_bullet.py b/plotly/figure_factory/_bullet.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_bullet.py rename to plotly/figure_factory/_bullet.py diff --git a/packages/python/plotly/plotly/figure_factory/_candlestick.py b/plotly/figure_factory/_candlestick.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_candlestick.py rename to plotly/figure_factory/_candlestick.py diff --git a/packages/python/plotly/plotly/figure_factory/_county_choropleth.py b/plotly/figure_factory/_county_choropleth.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_county_choropleth.py rename to plotly/figure_factory/_county_choropleth.py diff --git a/packages/python/plotly/plotly/figure_factory/_dendrogram.py b/plotly/figure_factory/_dendrogram.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_dendrogram.py rename to plotly/figure_factory/_dendrogram.py diff --git a/packages/python/plotly/plotly/figure_factory/_distplot.py b/plotly/figure_factory/_distplot.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_distplot.py rename to plotly/figure_factory/_distplot.py diff --git a/packages/python/plotly/plotly/figure_factory/_facet_grid.py b/plotly/figure_factory/_facet_grid.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_facet_grid.py rename to plotly/figure_factory/_facet_grid.py diff --git a/packages/python/plotly/plotly/figure_factory/_gantt.py b/plotly/figure_factory/_gantt.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_gantt.py rename to plotly/figure_factory/_gantt.py diff --git a/packages/python/plotly/plotly/figure_factory/_hexbin_mapbox.py b/plotly/figure_factory/_hexbin_mapbox.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_hexbin_mapbox.py rename to plotly/figure_factory/_hexbin_mapbox.py diff --git a/packages/python/plotly/plotly/figure_factory/_ohlc.py b/plotly/figure_factory/_ohlc.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_ohlc.py rename to plotly/figure_factory/_ohlc.py diff --git a/packages/python/plotly/plotly/figure_factory/_quiver.py b/plotly/figure_factory/_quiver.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_quiver.py rename to plotly/figure_factory/_quiver.py diff --git a/packages/python/plotly/plotly/figure_factory/_scatterplot.py b/plotly/figure_factory/_scatterplot.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_scatterplot.py rename to plotly/figure_factory/_scatterplot.py diff --git a/packages/python/plotly/plotly/figure_factory/_streamline.py b/plotly/figure_factory/_streamline.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_streamline.py rename to plotly/figure_factory/_streamline.py diff --git a/packages/python/plotly/plotly/figure_factory/_table.py b/plotly/figure_factory/_table.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_table.py rename to plotly/figure_factory/_table.py diff --git a/packages/python/plotly/plotly/figure_factory/_ternary_contour.py b/plotly/figure_factory/_ternary_contour.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_ternary_contour.py rename to plotly/figure_factory/_ternary_contour.py diff --git a/packages/python/plotly/plotly/figure_factory/_trisurf.py b/plotly/figure_factory/_trisurf.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_trisurf.py rename to plotly/figure_factory/_trisurf.py diff --git a/packages/python/plotly/plotly/figure_factory/_violin.py b/plotly/figure_factory/_violin.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/_violin.py rename to plotly/figure_factory/_violin.py diff --git a/packages/python/plotly/plotly/figure_factory/utils.py b/plotly/figure_factory/utils.py similarity index 100% rename from packages/python/plotly/plotly/figure_factory/utils.py rename to plotly/figure_factory/utils.py diff --git a/packages/python/plotly/plotly/files.py b/plotly/files.py similarity index 100% rename from packages/python/plotly/plotly/files.py rename to plotly/files.py diff --git a/packages/python/plotly/plotly/graph_objects/__init__.py b/plotly/graph_objects/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objects/__init__.py rename to plotly/graph_objects/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/__init__.py b/plotly/graph_objs/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/__init__.py rename to plotly/graph_objs/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/_bar.py b/plotly/graph_objs/_bar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_bar.py rename to plotly/graph_objs/_bar.py diff --git a/packages/python/plotly/plotly/graph_objs/_barpolar.py b/plotly/graph_objs/_barpolar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_barpolar.py rename to plotly/graph_objs/_barpolar.py diff --git a/packages/python/plotly/plotly/graph_objs/_box.py b/plotly/graph_objs/_box.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_box.py rename to plotly/graph_objs/_box.py diff --git a/packages/python/plotly/plotly/graph_objs/_candlestick.py b/plotly/graph_objs/_candlestick.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_candlestick.py rename to plotly/graph_objs/_candlestick.py diff --git a/packages/python/plotly/plotly/graph_objs/_carpet.py b/plotly/graph_objs/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_carpet.py rename to plotly/graph_objs/_carpet.py diff --git a/packages/python/plotly/plotly/graph_objs/_choropleth.py b/plotly/graph_objs/_choropleth.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_choropleth.py rename to plotly/graph_objs/_choropleth.py diff --git a/packages/python/plotly/plotly/graph_objs/_choroplethmap.py b/plotly/graph_objs/_choroplethmap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_choroplethmap.py rename to plotly/graph_objs/_choroplethmap.py diff --git a/packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py b/plotly/graph_objs/_choroplethmapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_choroplethmapbox.py rename to plotly/graph_objs/_choroplethmapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/_cone.py b/plotly/graph_objs/_cone.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_cone.py rename to plotly/graph_objs/_cone.py diff --git a/packages/python/plotly/plotly/graph_objs/_contour.py b/plotly/graph_objs/_contour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_contour.py rename to plotly/graph_objs/_contour.py diff --git a/packages/python/plotly/plotly/graph_objs/_contourcarpet.py b/plotly/graph_objs/_contourcarpet.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_contourcarpet.py rename to plotly/graph_objs/_contourcarpet.py diff --git a/packages/python/plotly/plotly/graph_objs/_densitymap.py b/plotly/graph_objs/_densitymap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_densitymap.py rename to plotly/graph_objs/_densitymap.py diff --git a/packages/python/plotly/plotly/graph_objs/_densitymapbox.py b/plotly/graph_objs/_densitymapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_densitymapbox.py rename to plotly/graph_objs/_densitymapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/_deprecations.py b/plotly/graph_objs/_deprecations.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_deprecations.py rename to plotly/graph_objs/_deprecations.py diff --git a/packages/python/plotly/plotly/graph_objs/_figure.py b/plotly/graph_objs/_figure.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_figure.py rename to plotly/graph_objs/_figure.py diff --git a/packages/python/plotly/plotly/graph_objs/_figurewidget.py b/plotly/graph_objs/_figurewidget.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_figurewidget.py rename to plotly/graph_objs/_figurewidget.py diff --git a/packages/python/plotly/plotly/graph_objs/_frame.py b/plotly/graph_objs/_frame.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_frame.py rename to plotly/graph_objs/_frame.py diff --git a/packages/python/plotly/plotly/graph_objs/_funnel.py b/plotly/graph_objs/_funnel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_funnel.py rename to plotly/graph_objs/_funnel.py diff --git a/packages/python/plotly/plotly/graph_objs/_funnelarea.py b/plotly/graph_objs/_funnelarea.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_funnelarea.py rename to plotly/graph_objs/_funnelarea.py diff --git a/packages/python/plotly/plotly/graph_objs/_heatmap.py b/plotly/graph_objs/_heatmap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_heatmap.py rename to plotly/graph_objs/_heatmap.py diff --git a/packages/python/plotly/plotly/graph_objs/_histogram.py b/plotly/graph_objs/_histogram.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_histogram.py rename to plotly/graph_objs/_histogram.py diff --git a/packages/python/plotly/plotly/graph_objs/_histogram2d.py b/plotly/graph_objs/_histogram2d.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_histogram2d.py rename to plotly/graph_objs/_histogram2d.py diff --git a/packages/python/plotly/plotly/graph_objs/_histogram2dcontour.py b/plotly/graph_objs/_histogram2dcontour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_histogram2dcontour.py rename to plotly/graph_objs/_histogram2dcontour.py diff --git a/packages/python/plotly/plotly/graph_objs/_icicle.py b/plotly/graph_objs/_icicle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_icicle.py rename to plotly/graph_objs/_icicle.py diff --git a/packages/python/plotly/plotly/graph_objs/_image.py b/plotly/graph_objs/_image.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_image.py rename to plotly/graph_objs/_image.py diff --git a/packages/python/plotly/plotly/graph_objs/_indicator.py b/plotly/graph_objs/_indicator.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_indicator.py rename to plotly/graph_objs/_indicator.py diff --git a/packages/python/plotly/plotly/graph_objs/_isosurface.py b/plotly/graph_objs/_isosurface.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_isosurface.py rename to plotly/graph_objs/_isosurface.py diff --git a/packages/python/plotly/plotly/graph_objs/_layout.py b/plotly/graph_objs/_layout.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_layout.py rename to plotly/graph_objs/_layout.py diff --git a/packages/python/plotly/plotly/graph_objs/_mesh3d.py b/plotly/graph_objs/_mesh3d.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_mesh3d.py rename to plotly/graph_objs/_mesh3d.py diff --git a/packages/python/plotly/plotly/graph_objs/_ohlc.py b/plotly/graph_objs/_ohlc.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_ohlc.py rename to plotly/graph_objs/_ohlc.py diff --git a/packages/python/plotly/plotly/graph_objs/_parcats.py b/plotly/graph_objs/_parcats.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_parcats.py rename to plotly/graph_objs/_parcats.py diff --git a/packages/python/plotly/plotly/graph_objs/_parcoords.py b/plotly/graph_objs/_parcoords.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_parcoords.py rename to plotly/graph_objs/_parcoords.py diff --git a/packages/python/plotly/plotly/graph_objs/_pie.py b/plotly/graph_objs/_pie.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_pie.py rename to plotly/graph_objs/_pie.py diff --git a/packages/python/plotly/plotly/graph_objs/_sankey.py b/plotly/graph_objs/_sankey.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_sankey.py rename to plotly/graph_objs/_sankey.py diff --git a/packages/python/plotly/plotly/graph_objs/_scatter.py b/plotly/graph_objs/_scatter.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scatter.py rename to plotly/graph_objs/_scatter.py diff --git a/packages/python/plotly/plotly/graph_objs/_scatter3d.py b/plotly/graph_objs/_scatter3d.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scatter3d.py rename to plotly/graph_objs/_scatter3d.py diff --git a/packages/python/plotly/plotly/graph_objs/_scattercarpet.py b/plotly/graph_objs/_scattercarpet.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scattercarpet.py rename to plotly/graph_objs/_scattercarpet.py diff --git a/packages/python/plotly/plotly/graph_objs/_scattergeo.py b/plotly/graph_objs/_scattergeo.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scattergeo.py rename to plotly/graph_objs/_scattergeo.py diff --git a/packages/python/plotly/plotly/graph_objs/_scattergl.py b/plotly/graph_objs/_scattergl.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scattergl.py rename to plotly/graph_objs/_scattergl.py diff --git a/packages/python/plotly/plotly/graph_objs/_scattermap.py b/plotly/graph_objs/_scattermap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scattermap.py rename to plotly/graph_objs/_scattermap.py diff --git a/packages/python/plotly/plotly/graph_objs/_scattermapbox.py b/plotly/graph_objs/_scattermapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scattermapbox.py rename to plotly/graph_objs/_scattermapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/_scatterpolar.py b/plotly/graph_objs/_scatterpolar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scatterpolar.py rename to plotly/graph_objs/_scatterpolar.py diff --git a/packages/python/plotly/plotly/graph_objs/_scatterpolargl.py b/plotly/graph_objs/_scatterpolargl.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scatterpolargl.py rename to plotly/graph_objs/_scatterpolargl.py diff --git a/packages/python/plotly/plotly/graph_objs/_scattersmith.py b/plotly/graph_objs/_scattersmith.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scattersmith.py rename to plotly/graph_objs/_scattersmith.py diff --git a/packages/python/plotly/plotly/graph_objs/_scatterternary.py b/plotly/graph_objs/_scatterternary.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_scatterternary.py rename to plotly/graph_objs/_scatterternary.py diff --git a/packages/python/plotly/plotly/graph_objs/_splom.py b/plotly/graph_objs/_splom.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_splom.py rename to plotly/graph_objs/_splom.py diff --git a/packages/python/plotly/plotly/graph_objs/_streamtube.py b/plotly/graph_objs/_streamtube.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_streamtube.py rename to plotly/graph_objs/_streamtube.py diff --git a/packages/python/plotly/plotly/graph_objs/_sunburst.py b/plotly/graph_objs/_sunburst.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_sunburst.py rename to plotly/graph_objs/_sunburst.py diff --git a/packages/python/plotly/plotly/graph_objs/_surface.py b/plotly/graph_objs/_surface.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_surface.py rename to plotly/graph_objs/_surface.py diff --git a/packages/python/plotly/plotly/graph_objs/_table.py b/plotly/graph_objs/_table.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_table.py rename to plotly/graph_objs/_table.py diff --git a/packages/python/plotly/plotly/graph_objs/_treemap.py b/plotly/graph_objs/_treemap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_treemap.py rename to plotly/graph_objs/_treemap.py diff --git a/packages/python/plotly/plotly/graph_objs/_violin.py b/plotly/graph_objs/_violin.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_violin.py rename to plotly/graph_objs/_violin.py diff --git a/packages/python/plotly/plotly/graph_objs/_volume.py b/plotly/graph_objs/_volume.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_volume.py rename to plotly/graph_objs/_volume.py diff --git a/packages/python/plotly/plotly/graph_objs/_waterfall.py b/plotly/graph_objs/_waterfall.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/_waterfall.py rename to plotly/graph_objs/_waterfall.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/__init__.py b/plotly/graph_objs/bar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/__init__.py rename to plotly/graph_objs/bar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_error_x.py b/plotly/graph_objs/bar/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_error_x.py rename to plotly/graph_objs/bar/_error_x.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_error_y.py b/plotly/graph_objs/bar/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_error_y.py rename to plotly/graph_objs/bar/_error_y.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_hoverlabel.py b/plotly/graph_objs/bar/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_hoverlabel.py rename to plotly/graph_objs/bar/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_insidetextfont.py b/plotly/graph_objs/bar/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_insidetextfont.py rename to plotly/graph_objs/bar/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_legendgrouptitle.py b/plotly/graph_objs/bar/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_legendgrouptitle.py rename to plotly/graph_objs/bar/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_marker.py b/plotly/graph_objs/bar/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_marker.py rename to plotly/graph_objs/bar/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_outsidetextfont.py b/plotly/graph_objs/bar/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_outsidetextfont.py rename to plotly/graph_objs/bar/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_selected.py b/plotly/graph_objs/bar/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_selected.py rename to plotly/graph_objs/bar/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_stream.py b/plotly/graph_objs/bar/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_stream.py rename to plotly/graph_objs/bar/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_textfont.py b/plotly/graph_objs/bar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_textfont.py rename to plotly/graph_objs/bar/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/_unselected.py b/plotly/graph_objs/bar/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/_unselected.py rename to plotly/graph_objs/bar/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/hoverlabel/__init__.py b/plotly/graph_objs/bar/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/hoverlabel/__init__.py rename to plotly/graph_objs/bar/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/hoverlabel/_font.py b/plotly/graph_objs/bar/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/hoverlabel/_font.py rename to plotly/graph_objs/bar/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/__init__.py b/plotly/graph_objs/bar/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/__init__.py rename to plotly/graph_objs/bar/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/_font.py b/plotly/graph_objs/bar/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/legendgrouptitle/_font.py rename to plotly/graph_objs/bar/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/__init__.py b/plotly/graph_objs/bar/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/__init__.py rename to plotly/graph_objs/bar/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/_colorbar.py b/plotly/graph_objs/bar/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/_colorbar.py rename to plotly/graph_objs/bar/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/_line.py b/plotly/graph_objs/bar/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/_line.py rename to plotly/graph_objs/bar/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/_pattern.py b/plotly/graph_objs/bar/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/_pattern.py rename to plotly/graph_objs/bar/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/__init__.py b/plotly/graph_objs/bar/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/__init__.py rename to plotly/graph_objs/bar/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickfont.py b/plotly/graph_objs/bar/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickfont.py rename to plotly/graph_objs/bar/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/bar/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_title.py b/plotly/graph_objs/bar/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/_title.py rename to plotly/graph_objs/bar/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/__init__.py b/plotly/graph_objs/bar/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/__init__.py rename to plotly/graph_objs/bar/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/_font.py b/plotly/graph_objs/bar/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/marker/colorbar/title/_font.py rename to plotly/graph_objs/bar/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/selected/__init__.py b/plotly/graph_objs/bar/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/selected/__init__.py rename to plotly/graph_objs/bar/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/selected/_marker.py b/plotly/graph_objs/bar/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/selected/_marker.py rename to plotly/graph_objs/bar/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/selected/_textfont.py b/plotly/graph_objs/bar/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/selected/_textfont.py rename to plotly/graph_objs/bar/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/unselected/__init__.py b/plotly/graph_objs/bar/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/unselected/__init__.py rename to plotly/graph_objs/bar/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/unselected/_marker.py b/plotly/graph_objs/bar/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/unselected/_marker.py rename to plotly/graph_objs/bar/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/bar/unselected/_textfont.py b/plotly/graph_objs/bar/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/bar/unselected/_textfont.py rename to plotly/graph_objs/bar/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/__init__.py b/plotly/graph_objs/barpolar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/__init__.py rename to plotly/graph_objs/barpolar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_hoverlabel.py b/plotly/graph_objs/barpolar/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/_hoverlabel.py rename to plotly/graph_objs/barpolar/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_legendgrouptitle.py b/plotly/graph_objs/barpolar/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/_legendgrouptitle.py rename to plotly/graph_objs/barpolar/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_marker.py b/plotly/graph_objs/barpolar/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/_marker.py rename to plotly/graph_objs/barpolar/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_selected.py b/plotly/graph_objs/barpolar/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/_selected.py rename to plotly/graph_objs/barpolar/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_stream.py b/plotly/graph_objs/barpolar/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/_stream.py rename to plotly/graph_objs/barpolar/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/_unselected.py b/plotly/graph_objs/barpolar/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/_unselected.py rename to plotly/graph_objs/barpolar/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/__init__.py b/plotly/graph_objs/barpolar/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/__init__.py rename to plotly/graph_objs/barpolar/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/_font.py b/plotly/graph_objs/barpolar/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/hoverlabel/_font.py rename to plotly/graph_objs/barpolar/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/__init__.py b/plotly/graph_objs/barpolar/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/__init__.py rename to plotly/graph_objs/barpolar/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/_font.py b/plotly/graph_objs/barpolar/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/legendgrouptitle/_font.py rename to plotly/graph_objs/barpolar/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/__init__.py b/plotly/graph_objs/barpolar/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/__init__.py rename to plotly/graph_objs/barpolar/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_colorbar.py b/plotly/graph_objs/barpolar/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/_colorbar.py rename to plotly/graph_objs/barpolar/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_line.py b/plotly/graph_objs/barpolar/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/_line.py rename to plotly/graph_objs/barpolar/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/_pattern.py b/plotly/graph_objs/barpolar/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/_pattern.py rename to plotly/graph_objs/barpolar/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/__init__.py b/plotly/graph_objs/barpolar/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/__init__.py rename to plotly/graph_objs/barpolar/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py b/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py rename to plotly/graph_objs/barpolar/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/barpolar/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_title.py b/plotly/graph_objs/barpolar/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/_title.py rename to plotly/graph_objs/barpolar/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/__init__.py b/plotly/graph_objs/barpolar/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/__init__.py rename to plotly/graph_objs/barpolar/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py b/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/marker/colorbar/title/_font.py rename to plotly/graph_objs/barpolar/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/selected/__init__.py b/plotly/graph_objs/barpolar/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/selected/__init__.py rename to plotly/graph_objs/barpolar/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/selected/_marker.py b/plotly/graph_objs/barpolar/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/selected/_marker.py rename to plotly/graph_objs/barpolar/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/selected/_textfont.py b/plotly/graph_objs/barpolar/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/selected/_textfont.py rename to plotly/graph_objs/barpolar/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/__init__.py b/plotly/graph_objs/barpolar/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/unselected/__init__.py rename to plotly/graph_objs/barpolar/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_marker.py b/plotly/graph_objs/barpolar/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/unselected/_marker.py rename to plotly/graph_objs/barpolar/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/barpolar/unselected/_textfont.py b/plotly/graph_objs/barpolar/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/barpolar/unselected/_textfont.py rename to plotly/graph_objs/barpolar/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/box/__init__.py b/plotly/graph_objs/box/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/__init__.py rename to plotly/graph_objs/box/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_hoverlabel.py b/plotly/graph_objs/box/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_hoverlabel.py rename to plotly/graph_objs/box/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_legendgrouptitle.py b/plotly/graph_objs/box/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_legendgrouptitle.py rename to plotly/graph_objs/box/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_line.py b/plotly/graph_objs/box/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_line.py rename to plotly/graph_objs/box/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_marker.py b/plotly/graph_objs/box/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_marker.py rename to plotly/graph_objs/box/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_selected.py b/plotly/graph_objs/box/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_selected.py rename to plotly/graph_objs/box/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_stream.py b/plotly/graph_objs/box/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_stream.py rename to plotly/graph_objs/box/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/box/_unselected.py b/plotly/graph_objs/box/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/_unselected.py rename to plotly/graph_objs/box/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/box/hoverlabel/__init__.py b/plotly/graph_objs/box/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/hoverlabel/__init__.py rename to plotly/graph_objs/box/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/box/hoverlabel/_font.py b/plotly/graph_objs/box/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/hoverlabel/_font.py rename to plotly/graph_objs/box/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/__init__.py b/plotly/graph_objs/box/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/__init__.py rename to plotly/graph_objs/box/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/_font.py b/plotly/graph_objs/box/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/legendgrouptitle/_font.py rename to plotly/graph_objs/box/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/box/marker/__init__.py b/plotly/graph_objs/box/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/marker/__init__.py rename to plotly/graph_objs/box/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/box/marker/_line.py b/plotly/graph_objs/box/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/marker/_line.py rename to plotly/graph_objs/box/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/box/selected/__init__.py b/plotly/graph_objs/box/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/selected/__init__.py rename to plotly/graph_objs/box/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/box/selected/_marker.py b/plotly/graph_objs/box/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/selected/_marker.py rename to plotly/graph_objs/box/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/box/unselected/__init__.py b/plotly/graph_objs/box/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/unselected/__init__.py rename to plotly/graph_objs/box/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/box/unselected/_marker.py b/plotly/graph_objs/box/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/box/unselected/_marker.py rename to plotly/graph_objs/box/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/__init__.py b/plotly/graph_objs/candlestick/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/__init__.py rename to plotly/graph_objs/candlestick/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_decreasing.py b/plotly/graph_objs/candlestick/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/_decreasing.py rename to plotly/graph_objs/candlestick/_decreasing.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_hoverlabel.py b/plotly/graph_objs/candlestick/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/_hoverlabel.py rename to plotly/graph_objs/candlestick/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_increasing.py b/plotly/graph_objs/candlestick/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/_increasing.py rename to plotly/graph_objs/candlestick/_increasing.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_legendgrouptitle.py b/plotly/graph_objs/candlestick/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/_legendgrouptitle.py rename to plotly/graph_objs/candlestick/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_line.py b/plotly/graph_objs/candlestick/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/_line.py rename to plotly/graph_objs/candlestick/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/_stream.py b/plotly/graph_objs/candlestick/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/_stream.py rename to plotly/graph_objs/candlestick/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/decreasing/__init__.py b/plotly/graph_objs/candlestick/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/decreasing/__init__.py rename to plotly/graph_objs/candlestick/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/decreasing/_line.py b/plotly/graph_objs/candlestick/decreasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/decreasing/_line.py rename to plotly/graph_objs/candlestick/decreasing/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/__init__.py b/plotly/graph_objs/candlestick/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/__init__.py rename to plotly/graph_objs/candlestick/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/_font.py b/plotly/graph_objs/candlestick/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/hoverlabel/_font.py rename to plotly/graph_objs/candlestick/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/increasing/__init__.py b/plotly/graph_objs/candlestick/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/increasing/__init__.py rename to plotly/graph_objs/candlestick/increasing/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/increasing/_line.py b/plotly/graph_objs/candlestick/increasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/increasing/_line.py rename to plotly/graph_objs/candlestick/increasing/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/__init__.py b/plotly/graph_objs/candlestick/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/__init__.py rename to plotly/graph_objs/candlestick/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/_font.py b/plotly/graph_objs/candlestick/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/candlestick/legendgrouptitle/_font.py rename to plotly/graph_objs/candlestick/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/__init__.py b/plotly/graph_objs/carpet/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/__init__.py rename to plotly/graph_objs/carpet/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_aaxis.py b/plotly/graph_objs/carpet/_aaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/_aaxis.py rename to plotly/graph_objs/carpet/_aaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_baxis.py b/plotly/graph_objs/carpet/_baxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/_baxis.py rename to plotly/graph_objs/carpet/_baxis.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_font.py b/plotly/graph_objs/carpet/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/_font.py rename to plotly/graph_objs/carpet/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_legendgrouptitle.py b/plotly/graph_objs/carpet/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/_legendgrouptitle.py rename to plotly/graph_objs/carpet/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/_stream.py b/plotly/graph_objs/carpet/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/_stream.py rename to plotly/graph_objs/carpet/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/__init__.py b/plotly/graph_objs/carpet/aaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/aaxis/__init__.py rename to plotly/graph_objs/carpet/aaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickfont.py b/plotly/graph_objs/carpet/aaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickfont.py rename to plotly/graph_objs/carpet/aaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickformatstop.py b/plotly/graph_objs/carpet/aaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/aaxis/_tickformatstop.py rename to plotly/graph_objs/carpet/aaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/_title.py b/plotly/graph_objs/carpet/aaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/aaxis/_title.py rename to plotly/graph_objs/carpet/aaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/__init__.py b/plotly/graph_objs/carpet/aaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/__init__.py rename to plotly/graph_objs/carpet/aaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/_font.py b/plotly/graph_objs/carpet/aaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/aaxis/title/_font.py rename to plotly/graph_objs/carpet/aaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/__init__.py b/plotly/graph_objs/carpet/baxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/baxis/__init__.py rename to plotly/graph_objs/carpet/baxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickfont.py b/plotly/graph_objs/carpet/baxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickfont.py rename to plotly/graph_objs/carpet/baxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickformatstop.py b/plotly/graph_objs/carpet/baxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/baxis/_tickformatstop.py rename to plotly/graph_objs/carpet/baxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/_title.py b/plotly/graph_objs/carpet/baxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/baxis/_title.py rename to plotly/graph_objs/carpet/baxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/title/__init__.py b/plotly/graph_objs/carpet/baxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/baxis/title/__init__.py rename to plotly/graph_objs/carpet/baxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/baxis/title/_font.py b/plotly/graph_objs/carpet/baxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/baxis/title/_font.py rename to plotly/graph_objs/carpet/baxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/__init__.py b/plotly/graph_objs/carpet/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/__init__.py rename to plotly/graph_objs/carpet/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/_font.py b/plotly/graph_objs/carpet/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/carpet/legendgrouptitle/_font.py rename to plotly/graph_objs/carpet/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/__init__.py b/plotly/graph_objs/choropleth/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/__init__.py rename to plotly/graph_objs/choropleth/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_colorbar.py b/plotly/graph_objs/choropleth/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_colorbar.py rename to plotly/graph_objs/choropleth/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_hoverlabel.py b/plotly/graph_objs/choropleth/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_hoverlabel.py rename to plotly/graph_objs/choropleth/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_legendgrouptitle.py b/plotly/graph_objs/choropleth/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_legendgrouptitle.py rename to plotly/graph_objs/choropleth/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_marker.py b/plotly/graph_objs/choropleth/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_marker.py rename to plotly/graph_objs/choropleth/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_selected.py b/plotly/graph_objs/choropleth/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_selected.py rename to plotly/graph_objs/choropleth/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_stream.py b/plotly/graph_objs/choropleth/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_stream.py rename to plotly/graph_objs/choropleth/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/_unselected.py b/plotly/graph_objs/choropleth/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/_unselected.py rename to plotly/graph_objs/choropleth/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/__init__.py b/plotly/graph_objs/choropleth/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/colorbar/__init__.py rename to plotly/graph_objs/choropleth/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickfont.py b/plotly/graph_objs/choropleth/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickfont.py rename to plotly/graph_objs/choropleth/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py b/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_tickformatstop.py rename to plotly/graph_objs/choropleth/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_title.py b/plotly/graph_objs/choropleth/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/colorbar/_title.py rename to plotly/graph_objs/choropleth/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/__init__.py b/plotly/graph_objs/choropleth/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/__init__.py rename to plotly/graph_objs/choropleth/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/_font.py b/plotly/graph_objs/choropleth/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/colorbar/title/_font.py rename to plotly/graph_objs/choropleth/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/__init__.py b/plotly/graph_objs/choropleth/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/__init__.py rename to plotly/graph_objs/choropleth/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/_font.py b/plotly/graph_objs/choropleth/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/hoverlabel/_font.py rename to plotly/graph_objs/choropleth/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/__init__.py b/plotly/graph_objs/choropleth/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/__init__.py rename to plotly/graph_objs/choropleth/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/_font.py b/plotly/graph_objs/choropleth/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/legendgrouptitle/_font.py rename to plotly/graph_objs/choropleth/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/marker/__init__.py b/plotly/graph_objs/choropleth/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/marker/__init__.py rename to plotly/graph_objs/choropleth/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/marker/_line.py b/plotly/graph_objs/choropleth/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/marker/_line.py rename to plotly/graph_objs/choropleth/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/selected/__init__.py b/plotly/graph_objs/choropleth/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/selected/__init__.py rename to plotly/graph_objs/choropleth/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/selected/_marker.py b/plotly/graph_objs/choropleth/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/selected/_marker.py rename to plotly/graph_objs/choropleth/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/unselected/__init__.py b/plotly/graph_objs/choropleth/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/unselected/__init__.py rename to plotly/graph_objs/choropleth/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choropleth/unselected/_marker.py b/plotly/graph_objs/choropleth/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choropleth/unselected/_marker.py rename to plotly/graph_objs/choropleth/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/__init__.py b/plotly/graph_objs/choroplethmap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/__init__.py rename to plotly/graph_objs/choroplethmap/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_colorbar.py b/plotly/graph_objs/choroplethmap/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_colorbar.py rename to plotly/graph_objs/choroplethmap/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_hoverlabel.py b/plotly/graph_objs/choroplethmap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_hoverlabel.py rename to plotly/graph_objs/choroplethmap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_legendgrouptitle.py b/plotly/graph_objs/choroplethmap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_legendgrouptitle.py rename to plotly/graph_objs/choroplethmap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_marker.py b/plotly/graph_objs/choroplethmap/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_marker.py rename to plotly/graph_objs/choroplethmap/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_selected.py b/plotly/graph_objs/choroplethmap/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_selected.py rename to plotly/graph_objs/choroplethmap/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_stream.py b/plotly/graph_objs/choroplethmap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_stream.py rename to plotly/graph_objs/choroplethmap/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/_unselected.py b/plotly/graph_objs/choroplethmap/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/_unselected.py rename to plotly/graph_objs/choroplethmap/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/__init__.py b/plotly/graph_objs/choroplethmap/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/__init__.py rename to plotly/graph_objs/choroplethmap/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py b/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickfont.py rename to plotly/graph_objs/choroplethmap/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py b/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py rename to plotly/graph_objs/choroplethmap/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_title.py b/plotly/graph_objs/choroplethmap/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/_title.py rename to plotly/graph_objs/choroplethmap/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/__init__.py b/plotly/graph_objs/choroplethmap/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/__init__.py rename to plotly/graph_objs/choroplethmap/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/_font.py b/plotly/graph_objs/choroplethmap/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/colorbar/title/_font.py rename to plotly/graph_objs/choroplethmap/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/__init__.py b/plotly/graph_objs/choroplethmap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/__init__.py rename to plotly/graph_objs/choroplethmap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/_font.py b/plotly/graph_objs/choroplethmap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/hoverlabel/_font.py rename to plotly/graph_objs/choroplethmap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/__init__.py b/plotly/graph_objs/choroplethmap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/__init__.py rename to plotly/graph_objs/choroplethmap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py b/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py rename to plotly/graph_objs/choroplethmap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/marker/__init__.py b/plotly/graph_objs/choroplethmap/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/marker/__init__.py rename to plotly/graph_objs/choroplethmap/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/marker/_line.py b/plotly/graph_objs/choroplethmap/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/marker/_line.py rename to plotly/graph_objs/choroplethmap/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/selected/__init__.py b/plotly/graph_objs/choroplethmap/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/selected/__init__.py rename to plotly/graph_objs/choroplethmap/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/selected/_marker.py b/plotly/graph_objs/choroplethmap/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/selected/_marker.py rename to plotly/graph_objs/choroplethmap/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/__init__.py b/plotly/graph_objs/choroplethmap/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/__init__.py rename to plotly/graph_objs/choroplethmap/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/_marker.py b/plotly/graph_objs/choroplethmap/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmap/unselected/_marker.py rename to plotly/graph_objs/choroplethmap/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/__init__.py b/plotly/graph_objs/choroplethmapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/__init__.py rename to plotly/graph_objs/choroplethmapbox/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_colorbar.py b/plotly/graph_objs/choroplethmapbox/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_colorbar.py rename to plotly/graph_objs/choroplethmapbox/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_hoverlabel.py b/plotly/graph_objs/choroplethmapbox/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_hoverlabel.py rename to plotly/graph_objs/choroplethmapbox/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py b/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py rename to plotly/graph_objs/choroplethmapbox/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_marker.py b/plotly/graph_objs/choroplethmapbox/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_marker.py rename to plotly/graph_objs/choroplethmapbox/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_selected.py b/plotly/graph_objs/choroplethmapbox/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_selected.py rename to plotly/graph_objs/choroplethmapbox/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_stream.py b/plotly/graph_objs/choroplethmapbox/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_stream.py rename to plotly/graph_objs/choroplethmapbox/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/_unselected.py b/plotly/graph_objs/choroplethmapbox/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/_unselected.py rename to plotly/graph_objs/choroplethmapbox/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/__init__.py b/plotly/graph_objs/choroplethmapbox/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/__init__.py rename to plotly/graph_objs/choroplethmapbox/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py b/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py rename to plotly/graph_objs/choroplethmapbox/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py b/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py rename to plotly/graph_objs/choroplethmapbox/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_title.py b/plotly/graph_objs/choroplethmapbox/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/_title.py rename to plotly/graph_objs/choroplethmapbox/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/__init__.py b/plotly/graph_objs/choroplethmapbox/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/__init__.py rename to plotly/graph_objs/choroplethmapbox/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py b/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py rename to plotly/graph_objs/choroplethmapbox/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/__init__.py b/plotly/graph_objs/choroplethmapbox/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/__init__.py rename to plotly/graph_objs/choroplethmapbox/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py b/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py rename to plotly/graph_objs/choroplethmapbox/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/__init__.py b/plotly/graph_objs/choroplethmapbox/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/__init__.py rename to plotly/graph_objs/choroplethmapbox/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py b/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py rename to plotly/graph_objs/choroplethmapbox/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/__init__.py b/plotly/graph_objs/choroplethmapbox/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/__init__.py rename to plotly/graph_objs/choroplethmapbox/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/_line.py b/plotly/graph_objs/choroplethmapbox/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/marker/_line.py rename to plotly/graph_objs/choroplethmapbox/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/__init__.py b/plotly/graph_objs/choroplethmapbox/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/__init__.py rename to plotly/graph_objs/choroplethmapbox/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/_marker.py b/plotly/graph_objs/choroplethmapbox/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/selected/_marker.py rename to plotly/graph_objs/choroplethmapbox/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/__init__.py b/plotly/graph_objs/choroplethmapbox/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/__init__.py rename to plotly/graph_objs/choroplethmapbox/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/_marker.py b/plotly/graph_objs/choroplethmapbox/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/choroplethmapbox/unselected/_marker.py rename to plotly/graph_objs/choroplethmapbox/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/__init__.py b/plotly/graph_objs/cone/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/__init__.py rename to plotly/graph_objs/cone/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/_colorbar.py b/plotly/graph_objs/cone/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/_colorbar.py rename to plotly/graph_objs/cone/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/_hoverlabel.py b/plotly/graph_objs/cone/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/_hoverlabel.py rename to plotly/graph_objs/cone/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/_legendgrouptitle.py b/plotly/graph_objs/cone/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/_legendgrouptitle.py rename to plotly/graph_objs/cone/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/_lighting.py b/plotly/graph_objs/cone/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/_lighting.py rename to plotly/graph_objs/cone/_lighting.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/_lightposition.py b/plotly/graph_objs/cone/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/_lightposition.py rename to plotly/graph_objs/cone/_lightposition.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/_stream.py b/plotly/graph_objs/cone/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/_stream.py rename to plotly/graph_objs/cone/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/__init__.py b/plotly/graph_objs/cone/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/colorbar/__init__.py rename to plotly/graph_objs/cone/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickfont.py b/plotly/graph_objs/cone/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickfont.py rename to plotly/graph_objs/cone/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickformatstop.py b/plotly/graph_objs/cone/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/colorbar/_tickformatstop.py rename to plotly/graph_objs/cone/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/_title.py b/plotly/graph_objs/cone/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/colorbar/_title.py rename to plotly/graph_objs/cone/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/title/__init__.py b/plotly/graph_objs/cone/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/colorbar/title/__init__.py rename to plotly/graph_objs/cone/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/colorbar/title/_font.py b/plotly/graph_objs/cone/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/colorbar/title/_font.py rename to plotly/graph_objs/cone/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/hoverlabel/__init__.py b/plotly/graph_objs/cone/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/hoverlabel/__init__.py rename to plotly/graph_objs/cone/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/hoverlabel/_font.py b/plotly/graph_objs/cone/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/hoverlabel/_font.py rename to plotly/graph_objs/cone/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/__init__.py b/plotly/graph_objs/cone/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/__init__.py rename to plotly/graph_objs/cone/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/_font.py b/plotly/graph_objs/cone/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/cone/legendgrouptitle/_font.py rename to plotly/graph_objs/cone/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/__init__.py b/plotly/graph_objs/contour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/__init__.py rename to plotly/graph_objs/contour/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_colorbar.py b/plotly/graph_objs/contour/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_colorbar.py rename to plotly/graph_objs/contour/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_contours.py b/plotly/graph_objs/contour/_contours.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_contours.py rename to plotly/graph_objs/contour/_contours.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_hoverlabel.py b/plotly/graph_objs/contour/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_hoverlabel.py rename to plotly/graph_objs/contour/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_legendgrouptitle.py b/plotly/graph_objs/contour/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_legendgrouptitle.py rename to plotly/graph_objs/contour/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_line.py b/plotly/graph_objs/contour/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_line.py rename to plotly/graph_objs/contour/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_stream.py b/plotly/graph_objs/contour/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_stream.py rename to plotly/graph_objs/contour/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/_textfont.py b/plotly/graph_objs/contour/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/_textfont.py rename to plotly/graph_objs/contour/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/__init__.py b/plotly/graph_objs/contour/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/colorbar/__init__.py rename to plotly/graph_objs/contour/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickfont.py b/plotly/graph_objs/contour/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickfont.py rename to plotly/graph_objs/contour/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickformatstop.py b/plotly/graph_objs/contour/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/colorbar/_tickformatstop.py rename to plotly/graph_objs/contour/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/_title.py b/plotly/graph_objs/contour/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/colorbar/_title.py rename to plotly/graph_objs/contour/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/title/__init__.py b/plotly/graph_objs/contour/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/colorbar/title/__init__.py rename to plotly/graph_objs/contour/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/colorbar/title/_font.py b/plotly/graph_objs/contour/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/colorbar/title/_font.py rename to plotly/graph_objs/contour/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/contours/__init__.py b/plotly/graph_objs/contour/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/contours/__init__.py rename to plotly/graph_objs/contour/contours/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/contours/_labelfont.py b/plotly/graph_objs/contour/contours/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/contours/_labelfont.py rename to plotly/graph_objs/contour/contours/_labelfont.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/hoverlabel/__init__.py b/plotly/graph_objs/contour/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/hoverlabel/__init__.py rename to plotly/graph_objs/contour/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/hoverlabel/_font.py b/plotly/graph_objs/contour/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/hoverlabel/_font.py rename to plotly/graph_objs/contour/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/__init__.py b/plotly/graph_objs/contour/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/__init__.py rename to plotly/graph_objs/contour/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/_font.py b/plotly/graph_objs/contour/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contour/legendgrouptitle/_font.py rename to plotly/graph_objs/contour/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/__init__.py b/plotly/graph_objs/contourcarpet/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/__init__.py rename to plotly/graph_objs/contourcarpet/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_colorbar.py b/plotly/graph_objs/contourcarpet/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/_colorbar.py rename to plotly/graph_objs/contourcarpet/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_contours.py b/plotly/graph_objs/contourcarpet/_contours.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/_contours.py rename to plotly/graph_objs/contourcarpet/_contours.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_legendgrouptitle.py b/plotly/graph_objs/contourcarpet/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/_legendgrouptitle.py rename to plotly/graph_objs/contourcarpet/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_line.py b/plotly/graph_objs/contourcarpet/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/_line.py rename to plotly/graph_objs/contourcarpet/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/_stream.py b/plotly/graph_objs/contourcarpet/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/_stream.py rename to plotly/graph_objs/contourcarpet/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/__init__.py b/plotly/graph_objs/contourcarpet/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/__init__.py rename to plotly/graph_objs/contourcarpet/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py b/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickfont.py rename to plotly/graph_objs/contourcarpet/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py b/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py rename to plotly/graph_objs/contourcarpet/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_title.py b/plotly/graph_objs/contourcarpet/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/_title.py rename to plotly/graph_objs/contourcarpet/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/__init__.py b/plotly/graph_objs/contourcarpet/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/__init__.py rename to plotly/graph_objs/contourcarpet/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/_font.py b/plotly/graph_objs/contourcarpet/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/colorbar/title/_font.py rename to plotly/graph_objs/contourcarpet/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/contours/__init__.py b/plotly/graph_objs/contourcarpet/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/contours/__init__.py rename to plotly/graph_objs/contourcarpet/contours/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/contours/_labelfont.py b/plotly/graph_objs/contourcarpet/contours/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/contours/_labelfont.py rename to plotly/graph_objs/contourcarpet/contours/_labelfont.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/__init__.py b/plotly/graph_objs/contourcarpet/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/__init__.py rename to plotly/graph_objs/contourcarpet/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py b/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py rename to plotly/graph_objs/contourcarpet/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/__init__.py b/plotly/graph_objs/densitymap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/__init__.py rename to plotly/graph_objs/densitymap/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_colorbar.py b/plotly/graph_objs/densitymap/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/_colorbar.py rename to plotly/graph_objs/densitymap/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_hoverlabel.py b/plotly/graph_objs/densitymap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/_hoverlabel.py rename to plotly/graph_objs/densitymap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_legendgrouptitle.py b/plotly/graph_objs/densitymap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/_legendgrouptitle.py rename to plotly/graph_objs/densitymap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/_stream.py b/plotly/graph_objs/densitymap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/_stream.py rename to plotly/graph_objs/densitymap/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/__init__.py b/plotly/graph_objs/densitymap/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/colorbar/__init__.py rename to plotly/graph_objs/densitymap/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickfont.py b/plotly/graph_objs/densitymap/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickfont.py rename to plotly/graph_objs/densitymap/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py b/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_tickformatstop.py rename to plotly/graph_objs/densitymap/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_title.py b/plotly/graph_objs/densitymap/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/colorbar/_title.py rename to plotly/graph_objs/densitymap/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/__init__.py b/plotly/graph_objs/densitymap/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/__init__.py rename to plotly/graph_objs/densitymap/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/_font.py b/plotly/graph_objs/densitymap/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/colorbar/title/_font.py rename to plotly/graph_objs/densitymap/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/__init__.py b/plotly/graph_objs/densitymap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/__init__.py rename to plotly/graph_objs/densitymap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/_font.py b/plotly/graph_objs/densitymap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/hoverlabel/_font.py rename to plotly/graph_objs/densitymap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/__init__.py b/plotly/graph_objs/densitymap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/__init__.py rename to plotly/graph_objs/densitymap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/_font.py b/plotly/graph_objs/densitymap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymap/legendgrouptitle/_font.py rename to plotly/graph_objs/densitymap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/__init__.py b/plotly/graph_objs/densitymapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/__init__.py rename to plotly/graph_objs/densitymapbox/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_colorbar.py b/plotly/graph_objs/densitymapbox/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/_colorbar.py rename to plotly/graph_objs/densitymapbox/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_hoverlabel.py b/plotly/graph_objs/densitymapbox/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/_hoverlabel.py rename to plotly/graph_objs/densitymapbox/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_legendgrouptitle.py b/plotly/graph_objs/densitymapbox/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/_legendgrouptitle.py rename to plotly/graph_objs/densitymapbox/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/_stream.py b/plotly/graph_objs/densitymapbox/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/_stream.py rename to plotly/graph_objs/densitymapbox/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/__init__.py b/plotly/graph_objs/densitymapbox/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/__init__.py rename to plotly/graph_objs/densitymapbox/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py b/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickfont.py rename to plotly/graph_objs/densitymapbox/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py b/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py rename to plotly/graph_objs/densitymapbox/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_title.py b/plotly/graph_objs/densitymapbox/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/_title.py rename to plotly/graph_objs/densitymapbox/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/__init__.py b/plotly/graph_objs/densitymapbox/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/__init__.py rename to plotly/graph_objs/densitymapbox/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/_font.py b/plotly/graph_objs/densitymapbox/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/colorbar/title/_font.py rename to plotly/graph_objs/densitymapbox/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/__init__.py b/plotly/graph_objs/densitymapbox/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/__init__.py rename to plotly/graph_objs/densitymapbox/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/_font.py b/plotly/graph_objs/densitymapbox/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/hoverlabel/_font.py rename to plotly/graph_objs/densitymapbox/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/__init__.py b/plotly/graph_objs/densitymapbox/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/__init__.py rename to plotly/graph_objs/densitymapbox/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py b/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py rename to plotly/graph_objs/densitymapbox/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/__init__.py b/plotly/graph_objs/funnel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/__init__.py rename to plotly/graph_objs/funnel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_connector.py b/plotly/graph_objs/funnel/_connector.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_connector.py rename to plotly/graph_objs/funnel/_connector.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_hoverlabel.py b/plotly/graph_objs/funnel/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_hoverlabel.py rename to plotly/graph_objs/funnel/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_insidetextfont.py b/plotly/graph_objs/funnel/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_insidetextfont.py rename to plotly/graph_objs/funnel/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_legendgrouptitle.py b/plotly/graph_objs/funnel/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_legendgrouptitle.py rename to plotly/graph_objs/funnel/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_marker.py b/plotly/graph_objs/funnel/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_marker.py rename to plotly/graph_objs/funnel/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_outsidetextfont.py b/plotly/graph_objs/funnel/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_outsidetextfont.py rename to plotly/graph_objs/funnel/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_stream.py b/plotly/graph_objs/funnel/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_stream.py rename to plotly/graph_objs/funnel/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/_textfont.py b/plotly/graph_objs/funnel/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/_textfont.py rename to plotly/graph_objs/funnel/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/connector/__init__.py b/plotly/graph_objs/funnel/connector/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/connector/__init__.py rename to plotly/graph_objs/funnel/connector/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/connector/_line.py b/plotly/graph_objs/funnel/connector/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/connector/_line.py rename to plotly/graph_objs/funnel/connector/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/__init__.py b/plotly/graph_objs/funnel/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/__init__.py rename to plotly/graph_objs/funnel/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/_font.py b/plotly/graph_objs/funnel/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/hoverlabel/_font.py rename to plotly/graph_objs/funnel/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/__init__.py b/plotly/graph_objs/funnel/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/__init__.py rename to plotly/graph_objs/funnel/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/_font.py b/plotly/graph_objs/funnel/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/legendgrouptitle/_font.py rename to plotly/graph_objs/funnel/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/__init__.py b/plotly/graph_objs/funnel/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/__init__.py rename to plotly/graph_objs/funnel/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/_colorbar.py b/plotly/graph_objs/funnel/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/_colorbar.py rename to plotly/graph_objs/funnel/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/_line.py b/plotly/graph_objs/funnel/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/_line.py rename to plotly/graph_objs/funnel/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/__init__.py b/plotly/graph_objs/funnel/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/__init__.py rename to plotly/graph_objs/funnel/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py b/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickfont.py rename to plotly/graph_objs/funnel/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/funnel/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_title.py b/plotly/graph_objs/funnel/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/_title.py rename to plotly/graph_objs/funnel/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/__init__.py b/plotly/graph_objs/funnel/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/__init__.py rename to plotly/graph_objs/funnel/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/_font.py b/plotly/graph_objs/funnel/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnel/marker/colorbar/title/_font.py rename to plotly/graph_objs/funnel/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/__init__.py b/plotly/graph_objs/funnelarea/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/__init__.py rename to plotly/graph_objs/funnelarea/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_domain.py b/plotly/graph_objs/funnelarea/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_domain.py rename to plotly/graph_objs/funnelarea/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_hoverlabel.py b/plotly/graph_objs/funnelarea/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_hoverlabel.py rename to plotly/graph_objs/funnelarea/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_insidetextfont.py b/plotly/graph_objs/funnelarea/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_insidetextfont.py rename to plotly/graph_objs/funnelarea/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_legendgrouptitle.py b/plotly/graph_objs/funnelarea/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_legendgrouptitle.py rename to plotly/graph_objs/funnelarea/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_marker.py b/plotly/graph_objs/funnelarea/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_marker.py rename to plotly/graph_objs/funnelarea/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_stream.py b/plotly/graph_objs/funnelarea/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_stream.py rename to plotly/graph_objs/funnelarea/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_textfont.py b/plotly/graph_objs/funnelarea/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_textfont.py rename to plotly/graph_objs/funnelarea/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/_title.py b/plotly/graph_objs/funnelarea/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/_title.py rename to plotly/graph_objs/funnelarea/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/__init__.py b/plotly/graph_objs/funnelarea/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/__init__.py rename to plotly/graph_objs/funnelarea/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/_font.py b/plotly/graph_objs/funnelarea/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/hoverlabel/_font.py rename to plotly/graph_objs/funnelarea/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/__init__.py b/plotly/graph_objs/funnelarea/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/__init__.py rename to plotly/graph_objs/funnelarea/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py b/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/legendgrouptitle/_font.py rename to plotly/graph_objs/funnelarea/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/__init__.py b/plotly/graph_objs/funnelarea/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/marker/__init__.py rename to plotly/graph_objs/funnelarea/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_line.py b/plotly/graph_objs/funnelarea/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/marker/_line.py rename to plotly/graph_objs/funnelarea/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/marker/_pattern.py b/plotly/graph_objs/funnelarea/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/marker/_pattern.py rename to plotly/graph_objs/funnelarea/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/title/__init__.py b/plotly/graph_objs/funnelarea/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/title/__init__.py rename to plotly/graph_objs/funnelarea/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/funnelarea/title/_font.py b/plotly/graph_objs/funnelarea/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/funnelarea/title/_font.py rename to plotly/graph_objs/funnelarea/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/graph_objs.py b/plotly/graph_objs/graph_objs.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/graph_objs.py rename to plotly/graph_objs/graph_objs.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/__init__.py b/plotly/graph_objs/heatmap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/__init__.py rename to plotly/graph_objs/heatmap/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_colorbar.py b/plotly/graph_objs/heatmap/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/_colorbar.py rename to plotly/graph_objs/heatmap/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_hoverlabel.py b/plotly/graph_objs/heatmap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/_hoverlabel.py rename to plotly/graph_objs/heatmap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_legendgrouptitle.py b/plotly/graph_objs/heatmap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/_legendgrouptitle.py rename to plotly/graph_objs/heatmap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_stream.py b/plotly/graph_objs/heatmap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/_stream.py rename to plotly/graph_objs/heatmap/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/_textfont.py b/plotly/graph_objs/heatmap/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/_textfont.py rename to plotly/graph_objs/heatmap/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/__init__.py b/plotly/graph_objs/heatmap/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/colorbar/__init__.py rename to plotly/graph_objs/heatmap/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickfont.py b/plotly/graph_objs/heatmap/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickfont.py rename to plotly/graph_objs/heatmap/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py b/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_tickformatstop.py rename to plotly/graph_objs/heatmap/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_title.py b/plotly/graph_objs/heatmap/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/colorbar/_title.py rename to plotly/graph_objs/heatmap/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/__init__.py b/plotly/graph_objs/heatmap/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/__init__.py rename to plotly/graph_objs/heatmap/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/_font.py b/plotly/graph_objs/heatmap/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/colorbar/title/_font.py rename to plotly/graph_objs/heatmap/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/__init__.py b/plotly/graph_objs/heatmap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/__init__.py rename to plotly/graph_objs/heatmap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/_font.py b/plotly/graph_objs/heatmap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/hoverlabel/_font.py rename to plotly/graph_objs/heatmap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/__init__.py b/plotly/graph_objs/heatmap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/__init__.py rename to plotly/graph_objs/heatmap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/_font.py b/plotly/graph_objs/heatmap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/heatmap/legendgrouptitle/_font.py rename to plotly/graph_objs/heatmap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/__init__.py b/plotly/graph_objs/histogram/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/__init__.py rename to plotly/graph_objs/histogram/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_cumulative.py b/plotly/graph_objs/histogram/_cumulative.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_cumulative.py rename to plotly/graph_objs/histogram/_cumulative.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_error_x.py b/plotly/graph_objs/histogram/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_error_x.py rename to plotly/graph_objs/histogram/_error_x.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_error_y.py b/plotly/graph_objs/histogram/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_error_y.py rename to plotly/graph_objs/histogram/_error_y.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_hoverlabel.py b/plotly/graph_objs/histogram/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_hoverlabel.py rename to plotly/graph_objs/histogram/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_insidetextfont.py b/plotly/graph_objs/histogram/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_insidetextfont.py rename to plotly/graph_objs/histogram/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_legendgrouptitle.py b/plotly/graph_objs/histogram/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_legendgrouptitle.py rename to plotly/graph_objs/histogram/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_marker.py b/plotly/graph_objs/histogram/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_marker.py rename to plotly/graph_objs/histogram/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_outsidetextfont.py b/plotly/graph_objs/histogram/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_outsidetextfont.py rename to plotly/graph_objs/histogram/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_selected.py b/plotly/graph_objs/histogram/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_selected.py rename to plotly/graph_objs/histogram/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_stream.py b/plotly/graph_objs/histogram/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_stream.py rename to plotly/graph_objs/histogram/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_textfont.py b/plotly/graph_objs/histogram/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_textfont.py rename to plotly/graph_objs/histogram/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_unselected.py b/plotly/graph_objs/histogram/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_unselected.py rename to plotly/graph_objs/histogram/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_xbins.py b/plotly/graph_objs/histogram/_xbins.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_xbins.py rename to plotly/graph_objs/histogram/_xbins.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/_ybins.py b/plotly/graph_objs/histogram/_ybins.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/_ybins.py rename to plotly/graph_objs/histogram/_ybins.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/__init__.py b/plotly/graph_objs/histogram/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/__init__.py rename to plotly/graph_objs/histogram/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/_font.py b/plotly/graph_objs/histogram/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/hoverlabel/_font.py rename to plotly/graph_objs/histogram/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/__init__.py b/plotly/graph_objs/histogram/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/__init__.py rename to plotly/graph_objs/histogram/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/_font.py b/plotly/graph_objs/histogram/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/legendgrouptitle/_font.py rename to plotly/graph_objs/histogram/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/__init__.py b/plotly/graph_objs/histogram/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/__init__.py rename to plotly/graph_objs/histogram/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/_colorbar.py b/plotly/graph_objs/histogram/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/_colorbar.py rename to plotly/graph_objs/histogram/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/_line.py b/plotly/graph_objs/histogram/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/_line.py rename to plotly/graph_objs/histogram/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/_pattern.py b/plotly/graph_objs/histogram/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/_pattern.py rename to plotly/graph_objs/histogram/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/__init__.py b/plotly/graph_objs/histogram/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/__init__.py rename to plotly/graph_objs/histogram/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py b/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickfont.py rename to plotly/graph_objs/histogram/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/histogram/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_title.py b/plotly/graph_objs/histogram/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/_title.py rename to plotly/graph_objs/histogram/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/__init__.py b/plotly/graph_objs/histogram/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/__init__.py rename to plotly/graph_objs/histogram/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/_font.py b/plotly/graph_objs/histogram/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/marker/colorbar/title/_font.py rename to plotly/graph_objs/histogram/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/selected/__init__.py b/plotly/graph_objs/histogram/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/selected/__init__.py rename to plotly/graph_objs/histogram/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/selected/_marker.py b/plotly/graph_objs/histogram/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/selected/_marker.py rename to plotly/graph_objs/histogram/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/selected/_textfont.py b/plotly/graph_objs/histogram/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/selected/_textfont.py rename to plotly/graph_objs/histogram/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/unselected/__init__.py b/plotly/graph_objs/histogram/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/unselected/__init__.py rename to plotly/graph_objs/histogram/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/unselected/_marker.py b/plotly/graph_objs/histogram/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/unselected/_marker.py rename to plotly/graph_objs/histogram/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram/unselected/_textfont.py b/plotly/graph_objs/histogram/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram/unselected/_textfont.py rename to plotly/graph_objs/histogram/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/__init__.py b/plotly/graph_objs/histogram2d/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/__init__.py rename to plotly/graph_objs/histogram2d/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_colorbar.py b/plotly/graph_objs/histogram2d/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_colorbar.py rename to plotly/graph_objs/histogram2d/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_hoverlabel.py b/plotly/graph_objs/histogram2d/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_hoverlabel.py rename to plotly/graph_objs/histogram2d/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_legendgrouptitle.py b/plotly/graph_objs/histogram2d/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_legendgrouptitle.py rename to plotly/graph_objs/histogram2d/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_marker.py b/plotly/graph_objs/histogram2d/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_marker.py rename to plotly/graph_objs/histogram2d/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_stream.py b/plotly/graph_objs/histogram2d/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_stream.py rename to plotly/graph_objs/histogram2d/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_textfont.py b/plotly/graph_objs/histogram2d/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_textfont.py rename to plotly/graph_objs/histogram2d/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_xbins.py b/plotly/graph_objs/histogram2d/_xbins.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_xbins.py rename to plotly/graph_objs/histogram2d/_xbins.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/_ybins.py b/plotly/graph_objs/histogram2d/_ybins.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/_ybins.py rename to plotly/graph_objs/histogram2d/_ybins.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/__init__.py b/plotly/graph_objs/histogram2d/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/__init__.py rename to plotly/graph_objs/histogram2d/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickfont.py b/plotly/graph_objs/histogram2d/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickfont.py rename to plotly/graph_objs/histogram2d/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py b/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py rename to plotly/graph_objs/histogram2d/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_title.py b/plotly/graph_objs/histogram2d/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/_title.py rename to plotly/graph_objs/histogram2d/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/__init__.py b/plotly/graph_objs/histogram2d/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/__init__.py rename to plotly/graph_objs/histogram2d/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/_font.py b/plotly/graph_objs/histogram2d/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/colorbar/title/_font.py rename to plotly/graph_objs/histogram2d/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/__init__.py b/plotly/graph_objs/histogram2d/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/__init__.py rename to plotly/graph_objs/histogram2d/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/_font.py b/plotly/graph_objs/histogram2d/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/hoverlabel/_font.py rename to plotly/graph_objs/histogram2d/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/__init__.py b/plotly/graph_objs/histogram2d/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/__init__.py rename to plotly/graph_objs/histogram2d/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py b/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2d/legendgrouptitle/_font.py rename to plotly/graph_objs/histogram2d/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/__init__.py b/plotly/graph_objs/histogram2dcontour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/__init__.py rename to plotly/graph_objs/histogram2dcontour/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_colorbar.py b/plotly/graph_objs/histogram2dcontour/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_colorbar.py rename to plotly/graph_objs/histogram2dcontour/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_contours.py b/plotly/graph_objs/histogram2dcontour/_contours.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_contours.py rename to plotly/graph_objs/histogram2dcontour/_contours.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_hoverlabel.py b/plotly/graph_objs/histogram2dcontour/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_hoverlabel.py rename to plotly/graph_objs/histogram2dcontour/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py b/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py rename to plotly/graph_objs/histogram2dcontour/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_line.py b/plotly/graph_objs/histogram2dcontour/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_line.py rename to plotly/graph_objs/histogram2dcontour/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_marker.py b/plotly/graph_objs/histogram2dcontour/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_marker.py rename to plotly/graph_objs/histogram2dcontour/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_stream.py b/plotly/graph_objs/histogram2dcontour/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_stream.py rename to plotly/graph_objs/histogram2dcontour/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_textfont.py b/plotly/graph_objs/histogram2dcontour/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_textfont.py rename to plotly/graph_objs/histogram2dcontour/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_xbins.py b/plotly/graph_objs/histogram2dcontour/_xbins.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_xbins.py rename to plotly/graph_objs/histogram2dcontour/_xbins.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/_ybins.py b/plotly/graph_objs/histogram2dcontour/_ybins.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/_ybins.py rename to plotly/graph_objs/histogram2dcontour/_ybins.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/__init__.py b/plotly/graph_objs/histogram2dcontour/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/__init__.py rename to plotly/graph_objs/histogram2dcontour/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py b/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py rename to plotly/graph_objs/histogram2dcontour/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py b/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py rename to plotly/graph_objs/histogram2dcontour/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_title.py b/plotly/graph_objs/histogram2dcontour/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/_title.py rename to plotly/graph_objs/histogram2dcontour/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/__init__.py b/plotly/graph_objs/histogram2dcontour/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/__init__.py rename to plotly/graph_objs/histogram2dcontour/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py b/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py rename to plotly/graph_objs/histogram2dcontour/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/__init__.py b/plotly/graph_objs/histogram2dcontour/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/__init__.py rename to plotly/graph_objs/histogram2dcontour/contours/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py b/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/contours/_labelfont.py rename to plotly/graph_objs/histogram2dcontour/contours/_labelfont.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/__init__.py b/plotly/graph_objs/histogram2dcontour/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/__init__.py rename to plotly/graph_objs/histogram2dcontour/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py b/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py rename to plotly/graph_objs/histogram2dcontour/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/__init__.py b/plotly/graph_objs/histogram2dcontour/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/__init__.py rename to plotly/graph_objs/histogram2dcontour/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py b/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py rename to plotly/graph_objs/histogram2dcontour/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/__init__.py b/plotly/graph_objs/icicle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/__init__.py rename to plotly/graph_objs/icicle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_domain.py b/plotly/graph_objs/icicle/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_domain.py rename to plotly/graph_objs/icicle/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_hoverlabel.py b/plotly/graph_objs/icicle/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_hoverlabel.py rename to plotly/graph_objs/icicle/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_insidetextfont.py b/plotly/graph_objs/icicle/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_insidetextfont.py rename to plotly/graph_objs/icicle/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_leaf.py b/plotly/graph_objs/icicle/_leaf.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_leaf.py rename to plotly/graph_objs/icicle/_leaf.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_legendgrouptitle.py b/plotly/graph_objs/icicle/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_legendgrouptitle.py rename to plotly/graph_objs/icicle/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_marker.py b/plotly/graph_objs/icicle/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_marker.py rename to plotly/graph_objs/icicle/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_outsidetextfont.py b/plotly/graph_objs/icicle/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_outsidetextfont.py rename to plotly/graph_objs/icicle/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_pathbar.py b/plotly/graph_objs/icicle/_pathbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_pathbar.py rename to plotly/graph_objs/icicle/_pathbar.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_root.py b/plotly/graph_objs/icicle/_root.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_root.py rename to plotly/graph_objs/icicle/_root.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_stream.py b/plotly/graph_objs/icicle/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_stream.py rename to plotly/graph_objs/icicle/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_textfont.py b/plotly/graph_objs/icicle/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_textfont.py rename to plotly/graph_objs/icicle/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/_tiling.py b/plotly/graph_objs/icicle/_tiling.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/_tiling.py rename to plotly/graph_objs/icicle/_tiling.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/__init__.py b/plotly/graph_objs/icicle/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/__init__.py rename to plotly/graph_objs/icicle/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/_font.py b/plotly/graph_objs/icicle/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/hoverlabel/_font.py rename to plotly/graph_objs/icicle/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/__init__.py b/plotly/graph_objs/icicle/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/__init__.py rename to plotly/graph_objs/icicle/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/_font.py b/plotly/graph_objs/icicle/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/legendgrouptitle/_font.py rename to plotly/graph_objs/icicle/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/__init__.py b/plotly/graph_objs/icicle/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/__init__.py rename to plotly/graph_objs/icicle/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/_colorbar.py b/plotly/graph_objs/icicle/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/_colorbar.py rename to plotly/graph_objs/icicle/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/_line.py b/plotly/graph_objs/icicle/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/_line.py rename to plotly/graph_objs/icicle/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/_pattern.py b/plotly/graph_objs/icicle/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/_pattern.py rename to plotly/graph_objs/icicle/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/__init__.py b/plotly/graph_objs/icicle/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/__init__.py rename to plotly/graph_objs/icicle/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py b/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickfont.py rename to plotly/graph_objs/icicle/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/icicle/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_title.py b/plotly/graph_objs/icicle/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/_title.py rename to plotly/graph_objs/icicle/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/__init__.py b/plotly/graph_objs/icicle/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/__init__.py rename to plotly/graph_objs/icicle/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/_font.py b/plotly/graph_objs/icicle/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/marker/colorbar/title/_font.py rename to plotly/graph_objs/icicle/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/pathbar/__init__.py b/plotly/graph_objs/icicle/pathbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/pathbar/__init__.py rename to plotly/graph_objs/icicle/pathbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/icicle/pathbar/_textfont.py b/plotly/graph_objs/icicle/pathbar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/icicle/pathbar/_textfont.py rename to plotly/graph_objs/icicle/pathbar/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/image/__init__.py b/plotly/graph_objs/image/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/__init__.py rename to plotly/graph_objs/image/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/image/_hoverlabel.py b/plotly/graph_objs/image/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/_hoverlabel.py rename to plotly/graph_objs/image/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/image/_legendgrouptitle.py b/plotly/graph_objs/image/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/_legendgrouptitle.py rename to plotly/graph_objs/image/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/image/_stream.py b/plotly/graph_objs/image/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/_stream.py rename to plotly/graph_objs/image/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/image/hoverlabel/__init__.py b/plotly/graph_objs/image/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/hoverlabel/__init__.py rename to plotly/graph_objs/image/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/image/hoverlabel/_font.py b/plotly/graph_objs/image/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/hoverlabel/_font.py rename to plotly/graph_objs/image/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/__init__.py b/plotly/graph_objs/image/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/__init__.py rename to plotly/graph_objs/image/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/_font.py b/plotly/graph_objs/image/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/image/legendgrouptitle/_font.py rename to plotly/graph_objs/image/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/__init__.py b/plotly/graph_objs/indicator/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/__init__.py rename to plotly/graph_objs/indicator/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_delta.py b/plotly/graph_objs/indicator/_delta.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_delta.py rename to plotly/graph_objs/indicator/_delta.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_domain.py b/plotly/graph_objs/indicator/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_domain.py rename to plotly/graph_objs/indicator/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_gauge.py b/plotly/graph_objs/indicator/_gauge.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_gauge.py rename to plotly/graph_objs/indicator/_gauge.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_legendgrouptitle.py b/plotly/graph_objs/indicator/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_legendgrouptitle.py rename to plotly/graph_objs/indicator/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_number.py b/plotly/graph_objs/indicator/_number.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_number.py rename to plotly/graph_objs/indicator/_number.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_stream.py b/plotly/graph_objs/indicator/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_stream.py rename to plotly/graph_objs/indicator/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/_title.py b/plotly/graph_objs/indicator/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/_title.py rename to plotly/graph_objs/indicator/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/__init__.py b/plotly/graph_objs/indicator/delta/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/delta/__init__.py rename to plotly/graph_objs/indicator/delta/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/_decreasing.py b/plotly/graph_objs/indicator/delta/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/delta/_decreasing.py rename to plotly/graph_objs/indicator/delta/_decreasing.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/_font.py b/plotly/graph_objs/indicator/delta/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/delta/_font.py rename to plotly/graph_objs/indicator/delta/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/delta/_increasing.py b/plotly/graph_objs/indicator/delta/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/delta/_increasing.py rename to plotly/graph_objs/indicator/delta/_increasing.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/__init__.py b/plotly/graph_objs/indicator/gauge/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/__init__.py rename to plotly/graph_objs/indicator/gauge/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_axis.py b/plotly/graph_objs/indicator/gauge/_axis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/_axis.py rename to plotly/graph_objs/indicator/gauge/_axis.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_bar.py b/plotly/graph_objs/indicator/gauge/_bar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/_bar.py rename to plotly/graph_objs/indicator/gauge/_bar.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_step.py b/plotly/graph_objs/indicator/gauge/_step.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/_step.py rename to plotly/graph_objs/indicator/gauge/_step.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/_threshold.py b/plotly/graph_objs/indicator/gauge/_threshold.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/_threshold.py rename to plotly/graph_objs/indicator/gauge/_threshold.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/__init__.py b/plotly/graph_objs/indicator/gauge/axis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/__init__.py rename to plotly/graph_objs/indicator/gauge/axis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickfont.py b/plotly/graph_objs/indicator/gauge/axis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickfont.py rename to plotly/graph_objs/indicator/gauge/axis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py b/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py rename to plotly/graph_objs/indicator/gauge/axis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/__init__.py b/plotly/graph_objs/indicator/gauge/bar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/__init__.py rename to plotly/graph_objs/indicator/gauge/bar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/_line.py b/plotly/graph_objs/indicator/gauge/bar/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/bar/_line.py rename to plotly/graph_objs/indicator/gauge/bar/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/step/__init__.py b/plotly/graph_objs/indicator/gauge/step/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/step/__init__.py rename to plotly/graph_objs/indicator/gauge/step/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/step/_line.py b/plotly/graph_objs/indicator/gauge/step/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/step/_line.py rename to plotly/graph_objs/indicator/gauge/step/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/__init__.py b/plotly/graph_objs/indicator/gauge/threshold/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/__init__.py rename to plotly/graph_objs/indicator/gauge/threshold/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/_line.py b/plotly/graph_objs/indicator/gauge/threshold/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/gauge/threshold/_line.py rename to plotly/graph_objs/indicator/gauge/threshold/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/__init__.py b/plotly/graph_objs/indicator/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/__init__.py rename to plotly/graph_objs/indicator/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/_font.py b/plotly/graph_objs/indicator/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/legendgrouptitle/_font.py rename to plotly/graph_objs/indicator/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/number/__init__.py b/plotly/graph_objs/indicator/number/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/number/__init__.py rename to plotly/graph_objs/indicator/number/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/number/_font.py b/plotly/graph_objs/indicator/number/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/number/_font.py rename to plotly/graph_objs/indicator/number/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/title/__init__.py b/plotly/graph_objs/indicator/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/title/__init__.py rename to plotly/graph_objs/indicator/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/indicator/title/_font.py b/plotly/graph_objs/indicator/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/indicator/title/_font.py rename to plotly/graph_objs/indicator/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/__init__.py b/plotly/graph_objs/isosurface/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/__init__.py rename to plotly/graph_objs/isosurface/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_caps.py b/plotly/graph_objs/isosurface/_caps.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_caps.py rename to plotly/graph_objs/isosurface/_caps.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_colorbar.py b/plotly/graph_objs/isosurface/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_colorbar.py rename to plotly/graph_objs/isosurface/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_contour.py b/plotly/graph_objs/isosurface/_contour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_contour.py rename to plotly/graph_objs/isosurface/_contour.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_hoverlabel.py b/plotly/graph_objs/isosurface/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_hoverlabel.py rename to plotly/graph_objs/isosurface/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_legendgrouptitle.py b/plotly/graph_objs/isosurface/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_legendgrouptitle.py rename to plotly/graph_objs/isosurface/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_lighting.py b/plotly/graph_objs/isosurface/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_lighting.py rename to plotly/graph_objs/isosurface/_lighting.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_lightposition.py b/plotly/graph_objs/isosurface/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_lightposition.py rename to plotly/graph_objs/isosurface/_lightposition.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_slices.py b/plotly/graph_objs/isosurface/_slices.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_slices.py rename to plotly/graph_objs/isosurface/_slices.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_spaceframe.py b/plotly/graph_objs/isosurface/_spaceframe.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_spaceframe.py rename to plotly/graph_objs/isosurface/_spaceframe.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_stream.py b/plotly/graph_objs/isosurface/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_stream.py rename to plotly/graph_objs/isosurface/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/_surface.py b/plotly/graph_objs/isosurface/_surface.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/_surface.py rename to plotly/graph_objs/isosurface/_surface.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/__init__.py b/plotly/graph_objs/isosurface/caps/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/caps/__init__.py rename to plotly/graph_objs/isosurface/caps/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_x.py b/plotly/graph_objs/isosurface/caps/_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/caps/_x.py rename to plotly/graph_objs/isosurface/caps/_x.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_y.py b/plotly/graph_objs/isosurface/caps/_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/caps/_y.py rename to plotly/graph_objs/isosurface/caps/_y.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/caps/_z.py b/plotly/graph_objs/isosurface/caps/_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/caps/_z.py rename to plotly/graph_objs/isosurface/caps/_z.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/__init__.py b/plotly/graph_objs/isosurface/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/colorbar/__init__.py rename to plotly/graph_objs/isosurface/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickfont.py b/plotly/graph_objs/isosurface/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickfont.py rename to plotly/graph_objs/isosurface/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py b/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_tickformatstop.py rename to plotly/graph_objs/isosurface/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_title.py b/plotly/graph_objs/isosurface/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/colorbar/_title.py rename to plotly/graph_objs/isosurface/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/__init__.py b/plotly/graph_objs/isosurface/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/__init__.py rename to plotly/graph_objs/isosurface/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/_font.py b/plotly/graph_objs/isosurface/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/colorbar/title/_font.py rename to plotly/graph_objs/isosurface/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/__init__.py b/plotly/graph_objs/isosurface/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/__init__.py rename to plotly/graph_objs/isosurface/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/_font.py b/plotly/graph_objs/isosurface/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/hoverlabel/_font.py rename to plotly/graph_objs/isosurface/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/__init__.py b/plotly/graph_objs/isosurface/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/__init__.py rename to plotly/graph_objs/isosurface/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/_font.py b/plotly/graph_objs/isosurface/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/legendgrouptitle/_font.py rename to plotly/graph_objs/isosurface/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/__init__.py b/plotly/graph_objs/isosurface/slices/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/slices/__init__.py rename to plotly/graph_objs/isosurface/slices/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_x.py b/plotly/graph_objs/isosurface/slices/_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/slices/_x.py rename to plotly/graph_objs/isosurface/slices/_x.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_y.py b/plotly/graph_objs/isosurface/slices/_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/slices/_y.py rename to plotly/graph_objs/isosurface/slices/_y.py diff --git a/packages/python/plotly/plotly/graph_objs/isosurface/slices/_z.py b/plotly/graph_objs/isosurface/slices/_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/isosurface/slices/_z.py rename to plotly/graph_objs/isosurface/slices/_z.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/__init__.py b/plotly/graph_objs/layout/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/__init__.py rename to plotly/graph_objs/layout/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_activeselection.py b/plotly/graph_objs/layout/_activeselection.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_activeselection.py rename to plotly/graph_objs/layout/_activeselection.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_activeshape.py b/plotly/graph_objs/layout/_activeshape.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_activeshape.py rename to plotly/graph_objs/layout/_activeshape.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_annotation.py b/plotly/graph_objs/layout/_annotation.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_annotation.py rename to plotly/graph_objs/layout/_annotation.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_coloraxis.py b/plotly/graph_objs/layout/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_coloraxis.py rename to plotly/graph_objs/layout/_coloraxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_colorscale.py b/plotly/graph_objs/layout/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_colorscale.py rename to plotly/graph_objs/layout/_colorscale.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_font.py b/plotly/graph_objs/layout/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_font.py rename to plotly/graph_objs/layout/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_geo.py b/plotly/graph_objs/layout/_geo.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_geo.py rename to plotly/graph_objs/layout/_geo.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_grid.py b/plotly/graph_objs/layout/_grid.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_grid.py rename to plotly/graph_objs/layout/_grid.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_hoverlabel.py b/plotly/graph_objs/layout/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_hoverlabel.py rename to plotly/graph_objs/layout/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_image.py b/plotly/graph_objs/layout/_image.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_image.py rename to plotly/graph_objs/layout/_image.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_legend.py b/plotly/graph_objs/layout/_legend.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_legend.py rename to plotly/graph_objs/layout/_legend.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_map.py b/plotly/graph_objs/layout/_map.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_map.py rename to plotly/graph_objs/layout/_map.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_mapbox.py b/plotly/graph_objs/layout/_mapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_mapbox.py rename to plotly/graph_objs/layout/_mapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_margin.py b/plotly/graph_objs/layout/_margin.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_margin.py rename to plotly/graph_objs/layout/_margin.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_modebar.py b/plotly/graph_objs/layout/_modebar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_modebar.py rename to plotly/graph_objs/layout/_modebar.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_newselection.py b/plotly/graph_objs/layout/_newselection.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_newselection.py rename to plotly/graph_objs/layout/_newselection.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_newshape.py b/plotly/graph_objs/layout/_newshape.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_newshape.py rename to plotly/graph_objs/layout/_newshape.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_polar.py b/plotly/graph_objs/layout/_polar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_polar.py rename to plotly/graph_objs/layout/_polar.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_scene.py b/plotly/graph_objs/layout/_scene.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_scene.py rename to plotly/graph_objs/layout/_scene.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_selection.py b/plotly/graph_objs/layout/_selection.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_selection.py rename to plotly/graph_objs/layout/_selection.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_shape.py b/plotly/graph_objs/layout/_shape.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_shape.py rename to plotly/graph_objs/layout/_shape.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_slider.py b/plotly/graph_objs/layout/_slider.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_slider.py rename to plotly/graph_objs/layout/_slider.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_smith.py b/plotly/graph_objs/layout/_smith.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_smith.py rename to plotly/graph_objs/layout/_smith.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_template.py b/plotly/graph_objs/layout/_template.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_template.py rename to plotly/graph_objs/layout/_template.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_ternary.py b/plotly/graph_objs/layout/_ternary.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_ternary.py rename to plotly/graph_objs/layout/_ternary.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_title.py b/plotly/graph_objs/layout/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_title.py rename to plotly/graph_objs/layout/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_transition.py b/plotly/graph_objs/layout/_transition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_transition.py rename to plotly/graph_objs/layout/_transition.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_uniformtext.py b/plotly/graph_objs/layout/_uniformtext.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_uniformtext.py rename to plotly/graph_objs/layout/_uniformtext.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_updatemenu.py b/plotly/graph_objs/layout/_updatemenu.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_updatemenu.py rename to plotly/graph_objs/layout/_updatemenu.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_xaxis.py b/plotly/graph_objs/layout/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_xaxis.py rename to plotly/graph_objs/layout/_xaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/_yaxis.py b/plotly/graph_objs/layout/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/_yaxis.py rename to plotly/graph_objs/layout/_yaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/__init__.py b/plotly/graph_objs/layout/annotation/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/annotation/__init__.py rename to plotly/graph_objs/layout/annotation/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/_font.py b/plotly/graph_objs/layout/annotation/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/annotation/_font.py rename to plotly/graph_objs/layout/annotation/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/_hoverlabel.py b/plotly/graph_objs/layout/annotation/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/annotation/_hoverlabel.py rename to plotly/graph_objs/layout/annotation/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/__init__.py b/plotly/graph_objs/layout/annotation/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/__init__.py rename to plotly/graph_objs/layout/annotation/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/_font.py b/plotly/graph_objs/layout/annotation/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/annotation/hoverlabel/_font.py rename to plotly/graph_objs/layout/annotation/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/__init__.py b/plotly/graph_objs/layout/coloraxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/__init__.py rename to plotly/graph_objs/layout/coloraxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/_colorbar.py b/plotly/graph_objs/layout/coloraxis/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/_colorbar.py rename to plotly/graph_objs/layout/coloraxis/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/__init__.py b/plotly/graph_objs/layout/coloraxis/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/__init__.py rename to plotly/graph_objs/layout/coloraxis/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py b/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py rename to plotly/graph_objs/layout/coloraxis/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py b/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py rename to plotly/graph_objs/layout/coloraxis/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_title.py b/plotly/graph_objs/layout/coloraxis/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/_title.py rename to plotly/graph_objs/layout/coloraxis/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/__init__.py b/plotly/graph_objs/layout/coloraxis/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/__init__.py rename to plotly/graph_objs/layout/coloraxis/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py b/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py rename to plotly/graph_objs/layout/coloraxis/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/__init__.py b/plotly/graph_objs/layout/geo/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/__init__.py rename to plotly/graph_objs/layout/geo/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_center.py b/plotly/graph_objs/layout/geo/_center.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/_center.py rename to plotly/graph_objs/layout/geo/_center.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_domain.py b/plotly/graph_objs/layout/geo/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/_domain.py rename to plotly/graph_objs/layout/geo/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_lataxis.py b/plotly/graph_objs/layout/geo/_lataxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/_lataxis.py rename to plotly/graph_objs/layout/geo/_lataxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_lonaxis.py b/plotly/graph_objs/layout/geo/_lonaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/_lonaxis.py rename to plotly/graph_objs/layout/geo/_lonaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/_projection.py b/plotly/graph_objs/layout/geo/_projection.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/_projection.py rename to plotly/graph_objs/layout/geo/_projection.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/projection/__init__.py b/plotly/graph_objs/layout/geo/projection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/projection/__init__.py rename to plotly/graph_objs/layout/geo/projection/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/geo/projection/_rotation.py b/plotly/graph_objs/layout/geo/projection/_rotation.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/geo/projection/_rotation.py rename to plotly/graph_objs/layout/geo/projection/_rotation.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/grid/__init__.py b/plotly/graph_objs/layout/grid/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/grid/__init__.py rename to plotly/graph_objs/layout/grid/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/grid/_domain.py b/plotly/graph_objs/layout/grid/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/grid/_domain.py rename to plotly/graph_objs/layout/grid/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/__init__.py b/plotly/graph_objs/layout/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/hoverlabel/__init__.py rename to plotly/graph_objs/layout/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_font.py b/plotly/graph_objs/layout/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_font.py rename to plotly/graph_objs/layout/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py b/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py rename to plotly/graph_objs/layout/hoverlabel/_grouptitlefont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/__init__.py b/plotly/graph_objs/layout/legend/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/legend/__init__.py rename to plotly/graph_objs/layout/legend/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/_font.py b/plotly/graph_objs/layout/legend/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/legend/_font.py rename to plotly/graph_objs/layout/legend/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/_grouptitlefont.py b/plotly/graph_objs/layout/legend/_grouptitlefont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/legend/_grouptitlefont.py rename to plotly/graph_objs/layout/legend/_grouptitlefont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/_title.py b/plotly/graph_objs/layout/legend/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/legend/_title.py rename to plotly/graph_objs/layout/legend/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/title/__init__.py b/plotly/graph_objs/layout/legend/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/legend/title/__init__.py rename to plotly/graph_objs/layout/legend/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/legend/title/_font.py b/plotly/graph_objs/layout/legend/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/legend/title/_font.py rename to plotly/graph_objs/layout/legend/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/__init__.py b/plotly/graph_objs/layout/map/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/__init__.py rename to plotly/graph_objs/layout/map/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_bounds.py b/plotly/graph_objs/layout/map/_bounds.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/_bounds.py rename to plotly/graph_objs/layout/map/_bounds.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_center.py b/plotly/graph_objs/layout/map/_center.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/_center.py rename to plotly/graph_objs/layout/map/_center.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_domain.py b/plotly/graph_objs/layout/map/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/_domain.py rename to plotly/graph_objs/layout/map/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/_layer.py b/plotly/graph_objs/layout/map/_layer.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/_layer.py rename to plotly/graph_objs/layout/map/_layer.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/__init__.py b/plotly/graph_objs/layout/map/layer/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/__init__.py rename to plotly/graph_objs/layout/map/layer/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_circle.py b/plotly/graph_objs/layout/map/layer/_circle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/_circle.py rename to plotly/graph_objs/layout/map/layer/_circle.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_fill.py b/plotly/graph_objs/layout/map/layer/_fill.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/_fill.py rename to plotly/graph_objs/layout/map/layer/_fill.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_line.py b/plotly/graph_objs/layout/map/layer/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/_line.py rename to plotly/graph_objs/layout/map/layer/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/_symbol.py b/plotly/graph_objs/layout/map/layer/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/_symbol.py rename to plotly/graph_objs/layout/map/layer/_symbol.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/__init__.py b/plotly/graph_objs/layout/map/layer/symbol/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/__init__.py rename to plotly/graph_objs/layout/map/layer/symbol/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/_textfont.py b/plotly/graph_objs/layout/map/layer/symbol/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/map/layer/symbol/_textfont.py rename to plotly/graph_objs/layout/map/layer/symbol/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/__init__.py b/plotly/graph_objs/layout/mapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/__init__.py rename to plotly/graph_objs/layout/mapbox/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_bounds.py b/plotly/graph_objs/layout/mapbox/_bounds.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/_bounds.py rename to plotly/graph_objs/layout/mapbox/_bounds.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_center.py b/plotly/graph_objs/layout/mapbox/_center.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/_center.py rename to plotly/graph_objs/layout/mapbox/_center.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_domain.py b/plotly/graph_objs/layout/mapbox/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/_domain.py rename to plotly/graph_objs/layout/mapbox/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/_layer.py b/plotly/graph_objs/layout/mapbox/_layer.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/_layer.py rename to plotly/graph_objs/layout/mapbox/_layer.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/__init__.py b/plotly/graph_objs/layout/mapbox/layer/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/__init__.py rename to plotly/graph_objs/layout/mapbox/layer/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_circle.py b/plotly/graph_objs/layout/mapbox/layer/_circle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_circle.py rename to plotly/graph_objs/layout/mapbox/layer/_circle.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_fill.py b/plotly/graph_objs/layout/mapbox/layer/_fill.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_fill.py rename to plotly/graph_objs/layout/mapbox/layer/_fill.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_line.py b/plotly/graph_objs/layout/mapbox/layer/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_line.py rename to plotly/graph_objs/layout/mapbox/layer/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_symbol.py b/plotly/graph_objs/layout/mapbox/layer/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/_symbol.py rename to plotly/graph_objs/layout/mapbox/layer/_symbol.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/__init__.py b/plotly/graph_objs/layout/mapbox/layer/symbol/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/__init__.py rename to plotly/graph_objs/layout/mapbox/layer/symbol/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py b/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py rename to plotly/graph_objs/layout/mapbox/layer/symbol/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newselection/__init__.py b/plotly/graph_objs/layout/newselection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newselection/__init__.py rename to plotly/graph_objs/layout/newselection/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newselection/_line.py b/plotly/graph_objs/layout/newselection/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newselection/_line.py rename to plotly/graph_objs/layout/newselection/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/__init__.py b/plotly/graph_objs/layout/newshape/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/__init__.py rename to plotly/graph_objs/layout/newshape/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/_label.py b/plotly/graph_objs/layout/newshape/_label.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/_label.py rename to plotly/graph_objs/layout/newshape/_label.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/_legendgrouptitle.py b/plotly/graph_objs/layout/newshape/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/_legendgrouptitle.py rename to plotly/graph_objs/layout/newshape/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/_line.py b/plotly/graph_objs/layout/newshape/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/_line.py rename to plotly/graph_objs/layout/newshape/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/label/__init__.py b/plotly/graph_objs/layout/newshape/label/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/label/__init__.py rename to plotly/graph_objs/layout/newshape/label/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/label/_font.py b/plotly/graph_objs/layout/newshape/label/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/label/_font.py rename to plotly/graph_objs/layout/newshape/label/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/__init__.py b/plotly/graph_objs/layout/newshape/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/__init__.py rename to plotly/graph_objs/layout/newshape/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py b/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py rename to plotly/graph_objs/layout/newshape/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/__init__.py b/plotly/graph_objs/layout/polar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/__init__.py rename to plotly/graph_objs/layout/polar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/_angularaxis.py b/plotly/graph_objs/layout/polar/_angularaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/_angularaxis.py rename to plotly/graph_objs/layout/polar/_angularaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/_domain.py b/plotly/graph_objs/layout/polar/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/_domain.py rename to plotly/graph_objs/layout/polar/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/_radialaxis.py b/plotly/graph_objs/layout/polar/_radialaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/_radialaxis.py rename to plotly/graph_objs/layout/polar/_radialaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/__init__.py b/plotly/graph_objs/layout/polar/angularaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/__init__.py rename to plotly/graph_objs/layout/polar/angularaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py b/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickfont.py rename to plotly/graph_objs/layout/polar/angularaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py b/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py rename to plotly/graph_objs/layout/polar/angularaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/__init__.py b/plotly/graph_objs/layout/polar/radialaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/__init__.py rename to plotly/graph_objs/layout/polar/radialaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py b/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py rename to plotly/graph_objs/layout/polar/radialaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py b/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickfont.py rename to plotly/graph_objs/layout/polar/radialaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py b/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py rename to plotly/graph_objs/layout/polar/radialaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_title.py b/plotly/graph_objs/layout/polar/radialaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/_title.py rename to plotly/graph_objs/layout/polar/radialaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/__init__.py b/plotly/graph_objs/layout/polar/radialaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/__init__.py rename to plotly/graph_objs/layout/polar/radialaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/_font.py b/plotly/graph_objs/layout/polar/radialaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/polar/radialaxis/title/_font.py rename to plotly/graph_objs/layout/polar/radialaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/__init__.py b/plotly/graph_objs/layout/scene/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/__init__.py rename to plotly/graph_objs/layout/scene/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_annotation.py b/plotly/graph_objs/layout/scene/_annotation.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_annotation.py rename to plotly/graph_objs/layout/scene/_annotation.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_aspectratio.py b/plotly/graph_objs/layout/scene/_aspectratio.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_aspectratio.py rename to plotly/graph_objs/layout/scene/_aspectratio.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_camera.py b/plotly/graph_objs/layout/scene/_camera.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_camera.py rename to plotly/graph_objs/layout/scene/_camera.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_domain.py b/plotly/graph_objs/layout/scene/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_domain.py rename to plotly/graph_objs/layout/scene/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_xaxis.py b/plotly/graph_objs/layout/scene/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_xaxis.py rename to plotly/graph_objs/layout/scene/_xaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_yaxis.py b/plotly/graph_objs/layout/scene/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_yaxis.py rename to plotly/graph_objs/layout/scene/_yaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/_zaxis.py b/plotly/graph_objs/layout/scene/_zaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/_zaxis.py rename to plotly/graph_objs/layout/scene/_zaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/__init__.py b/plotly/graph_objs/layout/scene/annotation/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/annotation/__init__.py rename to plotly/graph_objs/layout/scene/annotation/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_font.py b/plotly/graph_objs/layout/scene/annotation/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_font.py rename to plotly/graph_objs/layout/scene/annotation/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py b/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/annotation/_hoverlabel.py rename to plotly/graph_objs/layout/scene/annotation/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/__init__.py b/plotly/graph_objs/layout/scene/annotation/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/__init__.py rename to plotly/graph_objs/layout/scene/annotation/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py b/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py rename to plotly/graph_objs/layout/scene/annotation/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/__init__.py b/plotly/graph_objs/layout/scene/camera/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/camera/__init__.py rename to plotly/graph_objs/layout/scene/camera/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_center.py b/plotly/graph_objs/layout/scene/camera/_center.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/camera/_center.py rename to plotly/graph_objs/layout/scene/camera/_center.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_eye.py b/plotly/graph_objs/layout/scene/camera/_eye.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/camera/_eye.py rename to plotly/graph_objs/layout/scene/camera/_eye.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_projection.py b/plotly/graph_objs/layout/scene/camera/_projection.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/camera/_projection.py rename to plotly/graph_objs/layout/scene/camera/_projection.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/camera/_up.py b/plotly/graph_objs/layout/scene/camera/_up.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/camera/_up.py rename to plotly/graph_objs/layout/scene/camera/_up.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/__init__.py b/plotly/graph_objs/layout/scene/xaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/__init__.py rename to plotly/graph_objs/layout/scene/xaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py b/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py rename to plotly/graph_objs/layout/scene/xaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickfont.py b/plotly/graph_objs/layout/scene/xaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickfont.py rename to plotly/graph_objs/layout/scene/xaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py b/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py rename to plotly/graph_objs/layout/scene/xaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_title.py b/plotly/graph_objs/layout/scene/xaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/_title.py rename to plotly/graph_objs/layout/scene/xaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/__init__.py b/plotly/graph_objs/layout/scene/xaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/__init__.py rename to plotly/graph_objs/layout/scene/xaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/_font.py b/plotly/graph_objs/layout/scene/xaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/xaxis/title/_font.py rename to plotly/graph_objs/layout/scene/xaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/__init__.py b/plotly/graph_objs/layout/scene/yaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/__init__.py rename to plotly/graph_objs/layout/scene/yaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py b/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py rename to plotly/graph_objs/layout/scene/yaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickfont.py b/plotly/graph_objs/layout/scene/yaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickfont.py rename to plotly/graph_objs/layout/scene/yaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py b/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py rename to plotly/graph_objs/layout/scene/yaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_title.py b/plotly/graph_objs/layout/scene/yaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/_title.py rename to plotly/graph_objs/layout/scene/yaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/__init__.py b/plotly/graph_objs/layout/scene/yaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/__init__.py rename to plotly/graph_objs/layout/scene/yaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/_font.py b/plotly/graph_objs/layout/scene/yaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/yaxis/title/_font.py rename to plotly/graph_objs/layout/scene/yaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/__init__.py b/plotly/graph_objs/layout/scene/zaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/__init__.py rename to plotly/graph_objs/layout/scene/zaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py b/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py rename to plotly/graph_objs/layout/scene/zaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickfont.py b/plotly/graph_objs/layout/scene/zaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickfont.py rename to plotly/graph_objs/layout/scene/zaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py b/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py rename to plotly/graph_objs/layout/scene/zaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_title.py b/plotly/graph_objs/layout/scene/zaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/_title.py rename to plotly/graph_objs/layout/scene/zaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/__init__.py b/plotly/graph_objs/layout/scene/zaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/__init__.py rename to plotly/graph_objs/layout/scene/zaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/_font.py b/plotly/graph_objs/layout/scene/zaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/scene/zaxis/title/_font.py rename to plotly/graph_objs/layout/scene/zaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/selection/__init__.py b/plotly/graph_objs/layout/selection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/selection/__init__.py rename to plotly/graph_objs/layout/selection/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/selection/_line.py b/plotly/graph_objs/layout/selection/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/selection/_line.py rename to plotly/graph_objs/layout/selection/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/__init__.py b/plotly/graph_objs/layout/shape/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/__init__.py rename to plotly/graph_objs/layout/shape/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/_label.py b/plotly/graph_objs/layout/shape/_label.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/_label.py rename to plotly/graph_objs/layout/shape/_label.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/_legendgrouptitle.py b/plotly/graph_objs/layout/shape/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/_legendgrouptitle.py rename to plotly/graph_objs/layout/shape/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/_line.py b/plotly/graph_objs/layout/shape/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/_line.py rename to plotly/graph_objs/layout/shape/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/label/__init__.py b/plotly/graph_objs/layout/shape/label/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/label/__init__.py rename to plotly/graph_objs/layout/shape/label/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/label/_font.py b/plotly/graph_objs/layout/shape/label/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/label/_font.py rename to plotly/graph_objs/layout/shape/label/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/__init__.py b/plotly/graph_objs/layout/shape/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/__init__.py rename to plotly/graph_objs/layout/shape/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py b/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/shape/legendgrouptitle/_font.py rename to plotly/graph_objs/layout/shape/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/__init__.py b/plotly/graph_objs/layout/slider/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/__init__.py rename to plotly/graph_objs/layout/slider/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_currentvalue.py b/plotly/graph_objs/layout/slider/_currentvalue.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/_currentvalue.py rename to plotly/graph_objs/layout/slider/_currentvalue.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_font.py b/plotly/graph_objs/layout/slider/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/_font.py rename to plotly/graph_objs/layout/slider/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_pad.py b/plotly/graph_objs/layout/slider/_pad.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/_pad.py rename to plotly/graph_objs/layout/slider/_pad.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_step.py b/plotly/graph_objs/layout/slider/_step.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/_step.py rename to plotly/graph_objs/layout/slider/_step.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/_transition.py b/plotly/graph_objs/layout/slider/_transition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/_transition.py rename to plotly/graph_objs/layout/slider/_transition.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/__init__.py b/plotly/graph_objs/layout/slider/currentvalue/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/__init__.py rename to plotly/graph_objs/layout/slider/currentvalue/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/_font.py b/plotly/graph_objs/layout/slider/currentvalue/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/slider/currentvalue/_font.py rename to plotly/graph_objs/layout/slider/currentvalue/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/__init__.py b/plotly/graph_objs/layout/smith/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/__init__.py rename to plotly/graph_objs/layout/smith/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/_domain.py b/plotly/graph_objs/layout/smith/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/_domain.py rename to plotly/graph_objs/layout/smith/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/_imaginaryaxis.py b/plotly/graph_objs/layout/smith/_imaginaryaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/_imaginaryaxis.py rename to plotly/graph_objs/layout/smith/_imaginaryaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/_realaxis.py b/plotly/graph_objs/layout/smith/_realaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/_realaxis.py rename to plotly/graph_objs/layout/smith/_realaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/__init__.py b/plotly/graph_objs/layout/smith/imaginaryaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/__init__.py rename to plotly/graph_objs/layout/smith/imaginaryaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py b/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py rename to plotly/graph_objs/layout/smith/imaginaryaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/__init__.py b/plotly/graph_objs/layout/smith/realaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/__init__.py rename to plotly/graph_objs/layout/smith/realaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/_tickfont.py b/plotly/graph_objs/layout/smith/realaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/smith/realaxis/_tickfont.py rename to plotly/graph_objs/layout/smith/realaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/__init__.py b/plotly/graph_objs/layout/template/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/__init__.py rename to plotly/graph_objs/layout/template/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/_data.py b/plotly/graph_objs/layout/template/_data.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/_data.py rename to plotly/graph_objs/layout/template/_data.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/_layout.py b/plotly/graph_objs/layout/template/_layout.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/_layout.py rename to plotly/graph_objs/layout/template/_layout.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/__init__.py b/plotly/graph_objs/layout/template/data/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/__init__.py rename to plotly/graph_objs/layout/template/data/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_bar.py b/plotly/graph_objs/layout/template/data/_bar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_bar.py rename to plotly/graph_objs/layout/template/data/_bar.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_barpolar.py b/plotly/graph_objs/layout/template/data/_barpolar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_barpolar.py rename to plotly/graph_objs/layout/template/data/_barpolar.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_box.py b/plotly/graph_objs/layout/template/data/_box.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_box.py rename to plotly/graph_objs/layout/template/data/_box.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_candlestick.py b/plotly/graph_objs/layout/template/data/_candlestick.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_candlestick.py rename to plotly/graph_objs/layout/template/data/_candlestick.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_carpet.py b/plotly/graph_objs/layout/template/data/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_carpet.py rename to plotly/graph_objs/layout/template/data/_carpet.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_choropleth.py b/plotly/graph_objs/layout/template/data/_choropleth.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_choropleth.py rename to plotly/graph_objs/layout/template/data/_choropleth.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_choroplethmap.py b/plotly/graph_objs/layout/template/data/_choroplethmap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_choroplethmap.py rename to plotly/graph_objs/layout/template/data/_choroplethmap.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_choroplethmapbox.py b/plotly/graph_objs/layout/template/data/_choroplethmapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_choroplethmapbox.py rename to plotly/graph_objs/layout/template/data/_choroplethmapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_cone.py b/plotly/graph_objs/layout/template/data/_cone.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_cone.py rename to plotly/graph_objs/layout/template/data/_cone.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_contour.py b/plotly/graph_objs/layout/template/data/_contour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_contour.py rename to plotly/graph_objs/layout/template/data/_contour.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_contourcarpet.py b/plotly/graph_objs/layout/template/data/_contourcarpet.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_contourcarpet.py rename to plotly/graph_objs/layout/template/data/_contourcarpet.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_densitymap.py b/plotly/graph_objs/layout/template/data/_densitymap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_densitymap.py rename to plotly/graph_objs/layout/template/data/_densitymap.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_densitymapbox.py b/plotly/graph_objs/layout/template/data/_densitymapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_densitymapbox.py rename to plotly/graph_objs/layout/template/data/_densitymapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_funnel.py b/plotly/graph_objs/layout/template/data/_funnel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_funnel.py rename to plotly/graph_objs/layout/template/data/_funnel.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_funnelarea.py b/plotly/graph_objs/layout/template/data/_funnelarea.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_funnelarea.py rename to plotly/graph_objs/layout/template/data/_funnelarea.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_heatmap.py b/plotly/graph_objs/layout/template/data/_heatmap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_heatmap.py rename to plotly/graph_objs/layout/template/data/_heatmap.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_histogram.py b/plotly/graph_objs/layout/template/data/_histogram.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_histogram.py rename to plotly/graph_objs/layout/template/data/_histogram.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_histogram2d.py b/plotly/graph_objs/layout/template/data/_histogram2d.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_histogram2d.py rename to plotly/graph_objs/layout/template/data/_histogram2d.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_histogram2dcontour.py b/plotly/graph_objs/layout/template/data/_histogram2dcontour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_histogram2dcontour.py rename to plotly/graph_objs/layout/template/data/_histogram2dcontour.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_icicle.py b/plotly/graph_objs/layout/template/data/_icicle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_icicle.py rename to plotly/graph_objs/layout/template/data/_icicle.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_image.py b/plotly/graph_objs/layout/template/data/_image.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_image.py rename to plotly/graph_objs/layout/template/data/_image.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_indicator.py b/plotly/graph_objs/layout/template/data/_indicator.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_indicator.py rename to plotly/graph_objs/layout/template/data/_indicator.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_isosurface.py b/plotly/graph_objs/layout/template/data/_isosurface.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_isosurface.py rename to plotly/graph_objs/layout/template/data/_isosurface.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_mesh3d.py b/plotly/graph_objs/layout/template/data/_mesh3d.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_mesh3d.py rename to plotly/graph_objs/layout/template/data/_mesh3d.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_ohlc.py b/plotly/graph_objs/layout/template/data/_ohlc.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_ohlc.py rename to plotly/graph_objs/layout/template/data/_ohlc.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_parcats.py b/plotly/graph_objs/layout/template/data/_parcats.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_parcats.py rename to plotly/graph_objs/layout/template/data/_parcats.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_parcoords.py b/plotly/graph_objs/layout/template/data/_parcoords.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_parcoords.py rename to plotly/graph_objs/layout/template/data/_parcoords.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_pie.py b/plotly/graph_objs/layout/template/data/_pie.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_pie.py rename to plotly/graph_objs/layout/template/data/_pie.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_sankey.py b/plotly/graph_objs/layout/template/data/_sankey.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_sankey.py rename to plotly/graph_objs/layout/template/data/_sankey.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scatter.py b/plotly/graph_objs/layout/template/data/_scatter.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scatter.py rename to plotly/graph_objs/layout/template/data/_scatter.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scatter3d.py b/plotly/graph_objs/layout/template/data/_scatter3d.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scatter3d.py rename to plotly/graph_objs/layout/template/data/_scatter3d.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scattercarpet.py b/plotly/graph_objs/layout/template/data/_scattercarpet.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scattercarpet.py rename to plotly/graph_objs/layout/template/data/_scattercarpet.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scattergeo.py b/plotly/graph_objs/layout/template/data/_scattergeo.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scattergeo.py rename to plotly/graph_objs/layout/template/data/_scattergeo.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scattergl.py b/plotly/graph_objs/layout/template/data/_scattergl.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scattergl.py rename to plotly/graph_objs/layout/template/data/_scattergl.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scattermap.py b/plotly/graph_objs/layout/template/data/_scattermap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scattermap.py rename to plotly/graph_objs/layout/template/data/_scattermap.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scattermapbox.py b/plotly/graph_objs/layout/template/data/_scattermapbox.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scattermapbox.py rename to plotly/graph_objs/layout/template/data/_scattermapbox.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scatterpolar.py b/plotly/graph_objs/layout/template/data/_scatterpolar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scatterpolar.py rename to plotly/graph_objs/layout/template/data/_scatterpolar.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scatterpolargl.py b/plotly/graph_objs/layout/template/data/_scatterpolargl.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scatterpolargl.py rename to plotly/graph_objs/layout/template/data/_scatterpolargl.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scattersmith.py b/plotly/graph_objs/layout/template/data/_scattersmith.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scattersmith.py rename to plotly/graph_objs/layout/template/data/_scattersmith.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_scatterternary.py b/plotly/graph_objs/layout/template/data/_scatterternary.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_scatterternary.py rename to plotly/graph_objs/layout/template/data/_scatterternary.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_splom.py b/plotly/graph_objs/layout/template/data/_splom.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_splom.py rename to plotly/graph_objs/layout/template/data/_splom.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_streamtube.py b/plotly/graph_objs/layout/template/data/_streamtube.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_streamtube.py rename to plotly/graph_objs/layout/template/data/_streamtube.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_sunburst.py b/plotly/graph_objs/layout/template/data/_sunburst.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_sunburst.py rename to plotly/graph_objs/layout/template/data/_sunburst.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_surface.py b/plotly/graph_objs/layout/template/data/_surface.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_surface.py rename to plotly/graph_objs/layout/template/data/_surface.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_table.py b/plotly/graph_objs/layout/template/data/_table.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_table.py rename to plotly/graph_objs/layout/template/data/_table.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_treemap.py b/plotly/graph_objs/layout/template/data/_treemap.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_treemap.py rename to plotly/graph_objs/layout/template/data/_treemap.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_violin.py b/plotly/graph_objs/layout/template/data/_violin.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_violin.py rename to plotly/graph_objs/layout/template/data/_violin.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_volume.py b/plotly/graph_objs/layout/template/data/_volume.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_volume.py rename to plotly/graph_objs/layout/template/data/_volume.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/template/data/_waterfall.py b/plotly/graph_objs/layout/template/data/_waterfall.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/template/data/_waterfall.py rename to plotly/graph_objs/layout/template/data/_waterfall.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/__init__.py b/plotly/graph_objs/layout/ternary/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/__init__.py rename to plotly/graph_objs/layout/ternary/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_aaxis.py b/plotly/graph_objs/layout/ternary/_aaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/_aaxis.py rename to plotly/graph_objs/layout/ternary/_aaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_baxis.py b/plotly/graph_objs/layout/ternary/_baxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/_baxis.py rename to plotly/graph_objs/layout/ternary/_baxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_caxis.py b/plotly/graph_objs/layout/ternary/_caxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/_caxis.py rename to plotly/graph_objs/layout/ternary/_caxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/_domain.py b/plotly/graph_objs/layout/ternary/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/_domain.py rename to plotly/graph_objs/layout/ternary/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/__init__.py b/plotly/graph_objs/layout/ternary/aaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/__init__.py rename to plotly/graph_objs/layout/ternary/aaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py b/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickfont.py rename to plotly/graph_objs/layout/ternary/aaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py b/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py rename to plotly/graph_objs/layout/ternary/aaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_title.py b/plotly/graph_objs/layout/ternary/aaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/_title.py rename to plotly/graph_objs/layout/ternary/aaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/__init__.py b/plotly/graph_objs/layout/ternary/aaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/__init__.py rename to plotly/graph_objs/layout/ternary/aaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/_font.py b/plotly/graph_objs/layout/ternary/aaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/aaxis/title/_font.py rename to plotly/graph_objs/layout/ternary/aaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/__init__.py b/plotly/graph_objs/layout/ternary/baxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/__init__.py rename to plotly/graph_objs/layout/ternary/baxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickfont.py b/plotly/graph_objs/layout/ternary/baxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickfont.py rename to plotly/graph_objs/layout/ternary/baxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py b/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py rename to plotly/graph_objs/layout/ternary/baxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_title.py b/plotly/graph_objs/layout/ternary/baxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/_title.py rename to plotly/graph_objs/layout/ternary/baxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/__init__.py b/plotly/graph_objs/layout/ternary/baxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/__init__.py rename to plotly/graph_objs/layout/ternary/baxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/_font.py b/plotly/graph_objs/layout/ternary/baxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/baxis/title/_font.py rename to plotly/graph_objs/layout/ternary/baxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/__init__.py b/plotly/graph_objs/layout/ternary/caxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/__init__.py rename to plotly/graph_objs/layout/ternary/caxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickfont.py b/plotly/graph_objs/layout/ternary/caxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickfont.py rename to plotly/graph_objs/layout/ternary/caxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py b/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py rename to plotly/graph_objs/layout/ternary/caxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_title.py b/plotly/graph_objs/layout/ternary/caxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/_title.py rename to plotly/graph_objs/layout/ternary/caxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/__init__.py b/plotly/graph_objs/layout/ternary/caxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/__init__.py rename to plotly/graph_objs/layout/ternary/caxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/_font.py b/plotly/graph_objs/layout/ternary/caxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/ternary/caxis/title/_font.py rename to plotly/graph_objs/layout/ternary/caxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/__init__.py b/plotly/graph_objs/layout/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/title/__init__.py rename to plotly/graph_objs/layout/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/_font.py b/plotly/graph_objs/layout/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/title/_font.py rename to plotly/graph_objs/layout/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/_pad.py b/plotly/graph_objs/layout/title/_pad.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/title/_pad.py rename to plotly/graph_objs/layout/title/_pad.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/_subtitle.py b/plotly/graph_objs/layout/title/_subtitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/title/_subtitle.py rename to plotly/graph_objs/layout/title/_subtitle.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/subtitle/__init__.py b/plotly/graph_objs/layout/title/subtitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/title/subtitle/__init__.py rename to plotly/graph_objs/layout/title/subtitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/title/subtitle/_font.py b/plotly/graph_objs/layout/title/subtitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/title/subtitle/_font.py rename to plotly/graph_objs/layout/title/subtitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/__init__.py b/plotly/graph_objs/layout/updatemenu/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/updatemenu/__init__.py rename to plotly/graph_objs/layout/updatemenu/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_button.py b/plotly/graph_objs/layout/updatemenu/_button.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/updatemenu/_button.py rename to plotly/graph_objs/layout/updatemenu/_button.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_font.py b/plotly/graph_objs/layout/updatemenu/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/updatemenu/_font.py rename to plotly/graph_objs/layout/updatemenu/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/updatemenu/_pad.py b/plotly/graph_objs/layout/updatemenu/_pad.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/updatemenu/_pad.py rename to plotly/graph_objs/layout/updatemenu/_pad.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/__init__.py b/plotly/graph_objs/layout/xaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/__init__.py rename to plotly/graph_objs/layout/xaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_autorangeoptions.py b/plotly/graph_objs/layout/xaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_autorangeoptions.py rename to plotly/graph_objs/layout/xaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_minor.py b/plotly/graph_objs/layout/xaxis/_minor.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_minor.py rename to plotly/graph_objs/layout/xaxis/_minor.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangebreak.py b/plotly/graph_objs/layout/xaxis/_rangebreak.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangebreak.py rename to plotly/graph_objs/layout/xaxis/_rangebreak.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeselector.py b/plotly/graph_objs/layout/xaxis/_rangeselector.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeselector.py rename to plotly/graph_objs/layout/xaxis/_rangeselector.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeslider.py b/plotly/graph_objs/layout/xaxis/_rangeslider.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_rangeslider.py rename to plotly/graph_objs/layout/xaxis/_rangeslider.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickfont.py b/plotly/graph_objs/layout/xaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickfont.py rename to plotly/graph_objs/layout/xaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickformatstop.py b/plotly/graph_objs/layout/xaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_tickformatstop.py rename to plotly/graph_objs/layout/xaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/_title.py b/plotly/graph_objs/layout/xaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/_title.py rename to plotly/graph_objs/layout/xaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/__init__.py b/plotly/graph_objs/layout/xaxis/rangeselector/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/__init__.py rename to plotly/graph_objs/layout/xaxis/rangeselector/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_button.py b/plotly/graph_objs/layout/xaxis/rangeselector/_button.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_button.py rename to plotly/graph_objs/layout/xaxis/rangeselector/_button.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_font.py b/plotly/graph_objs/layout/xaxis/rangeselector/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeselector/_font.py rename to plotly/graph_objs/layout/xaxis/rangeselector/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/__init__.py b/plotly/graph_objs/layout/xaxis/rangeslider/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/__init__.py rename to plotly/graph_objs/layout/xaxis/rangeslider/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py b/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py rename to plotly/graph_objs/layout/xaxis/rangeslider/_yaxis.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/title/__init__.py b/plotly/graph_objs/layout/xaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/title/__init__.py rename to plotly/graph_objs/layout/xaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/xaxis/title/_font.py b/plotly/graph_objs/layout/xaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/xaxis/title/_font.py rename to plotly/graph_objs/layout/xaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/__init__.py b/plotly/graph_objs/layout/yaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/__init__.py rename to plotly/graph_objs/layout/yaxis/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_autorangeoptions.py b/plotly/graph_objs/layout/yaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/_autorangeoptions.py rename to plotly/graph_objs/layout/yaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_minor.py b/plotly/graph_objs/layout/yaxis/_minor.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/_minor.py rename to plotly/graph_objs/layout/yaxis/_minor.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_rangebreak.py b/plotly/graph_objs/layout/yaxis/_rangebreak.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/_rangebreak.py rename to plotly/graph_objs/layout/yaxis/_rangebreak.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickfont.py b/plotly/graph_objs/layout/yaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickfont.py rename to plotly/graph_objs/layout/yaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickformatstop.py b/plotly/graph_objs/layout/yaxis/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/_tickformatstop.py rename to plotly/graph_objs/layout/yaxis/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/_title.py b/plotly/graph_objs/layout/yaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/_title.py rename to plotly/graph_objs/layout/yaxis/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/title/__init__.py b/plotly/graph_objs/layout/yaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/title/__init__.py rename to plotly/graph_objs/layout/yaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/layout/yaxis/title/_font.py b/plotly/graph_objs/layout/yaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/layout/yaxis/title/_font.py rename to plotly/graph_objs/layout/yaxis/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/__init__.py b/plotly/graph_objs/mesh3d/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/__init__.py rename to plotly/graph_objs/mesh3d/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_colorbar.py b/plotly/graph_objs/mesh3d/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_colorbar.py rename to plotly/graph_objs/mesh3d/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_contour.py b/plotly/graph_objs/mesh3d/_contour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_contour.py rename to plotly/graph_objs/mesh3d/_contour.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_hoverlabel.py b/plotly/graph_objs/mesh3d/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_hoverlabel.py rename to plotly/graph_objs/mesh3d/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_legendgrouptitle.py b/plotly/graph_objs/mesh3d/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_legendgrouptitle.py rename to plotly/graph_objs/mesh3d/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_lighting.py b/plotly/graph_objs/mesh3d/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_lighting.py rename to plotly/graph_objs/mesh3d/_lighting.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_lightposition.py b/plotly/graph_objs/mesh3d/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_lightposition.py rename to plotly/graph_objs/mesh3d/_lightposition.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/_stream.py b/plotly/graph_objs/mesh3d/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/_stream.py rename to plotly/graph_objs/mesh3d/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/__init__.py b/plotly/graph_objs/mesh3d/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/__init__.py rename to plotly/graph_objs/mesh3d/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickfont.py b/plotly/graph_objs/mesh3d/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickfont.py rename to plotly/graph_objs/mesh3d/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py b/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py rename to plotly/graph_objs/mesh3d/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_title.py b/plotly/graph_objs/mesh3d/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/_title.py rename to plotly/graph_objs/mesh3d/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/__init__.py b/plotly/graph_objs/mesh3d/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/__init__.py rename to plotly/graph_objs/mesh3d/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/_font.py b/plotly/graph_objs/mesh3d/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/colorbar/title/_font.py rename to plotly/graph_objs/mesh3d/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/__init__.py b/plotly/graph_objs/mesh3d/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/__init__.py rename to plotly/graph_objs/mesh3d/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/_font.py b/plotly/graph_objs/mesh3d/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/hoverlabel/_font.py rename to plotly/graph_objs/mesh3d/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/__init__.py b/plotly/graph_objs/mesh3d/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/__init__.py rename to plotly/graph_objs/mesh3d/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py b/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/mesh3d/legendgrouptitle/_font.py rename to plotly/graph_objs/mesh3d/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/__init__.py b/plotly/graph_objs/ohlc/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/__init__.py rename to plotly/graph_objs/ohlc/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_decreasing.py b/plotly/graph_objs/ohlc/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/_decreasing.py rename to plotly/graph_objs/ohlc/_decreasing.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_hoverlabel.py b/plotly/graph_objs/ohlc/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/_hoverlabel.py rename to plotly/graph_objs/ohlc/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_increasing.py b/plotly/graph_objs/ohlc/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/_increasing.py rename to plotly/graph_objs/ohlc/_increasing.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_legendgrouptitle.py b/plotly/graph_objs/ohlc/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/_legendgrouptitle.py rename to plotly/graph_objs/ohlc/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_line.py b/plotly/graph_objs/ohlc/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/_line.py rename to plotly/graph_objs/ohlc/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/_stream.py b/plotly/graph_objs/ohlc/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/_stream.py rename to plotly/graph_objs/ohlc/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/decreasing/__init__.py b/plotly/graph_objs/ohlc/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/decreasing/__init__.py rename to plotly/graph_objs/ohlc/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/decreasing/_line.py b/plotly/graph_objs/ohlc/decreasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/decreasing/_line.py rename to plotly/graph_objs/ohlc/decreasing/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/__init__.py b/plotly/graph_objs/ohlc/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/__init__.py rename to plotly/graph_objs/ohlc/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/_font.py b/plotly/graph_objs/ohlc/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/hoverlabel/_font.py rename to plotly/graph_objs/ohlc/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/increasing/__init__.py b/plotly/graph_objs/ohlc/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/increasing/__init__.py rename to plotly/graph_objs/ohlc/increasing/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/increasing/_line.py b/plotly/graph_objs/ohlc/increasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/increasing/_line.py rename to plotly/graph_objs/ohlc/increasing/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/__init__.py b/plotly/graph_objs/ohlc/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/__init__.py rename to plotly/graph_objs/ohlc/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/_font.py b/plotly/graph_objs/ohlc/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/ohlc/legendgrouptitle/_font.py rename to plotly/graph_objs/ohlc/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/__init__.py b/plotly/graph_objs/parcats/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/__init__.py rename to plotly/graph_objs/parcats/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_dimension.py b/plotly/graph_objs/parcats/_dimension.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_dimension.py rename to plotly/graph_objs/parcats/_dimension.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_domain.py b/plotly/graph_objs/parcats/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_domain.py rename to plotly/graph_objs/parcats/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_labelfont.py b/plotly/graph_objs/parcats/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_labelfont.py rename to plotly/graph_objs/parcats/_labelfont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_legendgrouptitle.py b/plotly/graph_objs/parcats/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_legendgrouptitle.py rename to plotly/graph_objs/parcats/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_line.py b/plotly/graph_objs/parcats/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_line.py rename to plotly/graph_objs/parcats/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_stream.py b/plotly/graph_objs/parcats/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_stream.py rename to plotly/graph_objs/parcats/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/_tickfont.py b/plotly/graph_objs/parcats/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/_tickfont.py rename to plotly/graph_objs/parcats/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/__init__.py b/plotly/graph_objs/parcats/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/__init__.py rename to plotly/graph_objs/parcats/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/_font.py b/plotly/graph_objs/parcats/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/legendgrouptitle/_font.py rename to plotly/graph_objs/parcats/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/__init__.py b/plotly/graph_objs/parcats/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/__init__.py rename to plotly/graph_objs/parcats/line/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/_colorbar.py b/plotly/graph_objs/parcats/line/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/_colorbar.py rename to plotly/graph_objs/parcats/line/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/__init__.py b/plotly/graph_objs/parcats/line/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/__init__.py rename to plotly/graph_objs/parcats/line/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickfont.py b/plotly/graph_objs/parcats/line/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickfont.py rename to plotly/graph_objs/parcats/line/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py b/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py rename to plotly/graph_objs/parcats/line/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_title.py b/plotly/graph_objs/parcats/line/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/_title.py rename to plotly/graph_objs/parcats/line/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/__init__.py b/plotly/graph_objs/parcats/line/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/__init__.py rename to plotly/graph_objs/parcats/line/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/_font.py b/plotly/graph_objs/parcats/line/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcats/line/colorbar/title/_font.py rename to plotly/graph_objs/parcats/line/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/__init__.py b/plotly/graph_objs/parcoords/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/__init__.py rename to plotly/graph_objs/parcoords/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_dimension.py b/plotly/graph_objs/parcoords/_dimension.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_dimension.py rename to plotly/graph_objs/parcoords/_dimension.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_domain.py b/plotly/graph_objs/parcoords/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_domain.py rename to plotly/graph_objs/parcoords/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_labelfont.py b/plotly/graph_objs/parcoords/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_labelfont.py rename to plotly/graph_objs/parcoords/_labelfont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_legendgrouptitle.py b/plotly/graph_objs/parcoords/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_legendgrouptitle.py rename to plotly/graph_objs/parcoords/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_line.py b/plotly/graph_objs/parcoords/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_line.py rename to plotly/graph_objs/parcoords/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_rangefont.py b/plotly/graph_objs/parcoords/_rangefont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_rangefont.py rename to plotly/graph_objs/parcoords/_rangefont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_stream.py b/plotly/graph_objs/parcoords/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_stream.py rename to plotly/graph_objs/parcoords/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_tickfont.py b/plotly/graph_objs/parcoords/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_tickfont.py rename to plotly/graph_objs/parcoords/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/_unselected.py b/plotly/graph_objs/parcoords/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/_unselected.py rename to plotly/graph_objs/parcoords/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/__init__.py b/plotly/graph_objs/parcoords/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/__init__.py rename to plotly/graph_objs/parcoords/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/_font.py b/plotly/graph_objs/parcoords/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/legendgrouptitle/_font.py rename to plotly/graph_objs/parcoords/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/__init__.py b/plotly/graph_objs/parcoords/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/__init__.py rename to plotly/graph_objs/parcoords/line/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/_colorbar.py b/plotly/graph_objs/parcoords/line/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/_colorbar.py rename to plotly/graph_objs/parcoords/line/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/__init__.py b/plotly/graph_objs/parcoords/line/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/__init__.py rename to plotly/graph_objs/parcoords/line/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py b/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickfont.py rename to plotly/graph_objs/parcoords/line/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py b/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py rename to plotly/graph_objs/parcoords/line/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_title.py b/plotly/graph_objs/parcoords/line/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/_title.py rename to plotly/graph_objs/parcoords/line/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/__init__.py b/plotly/graph_objs/parcoords/line/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/__init__.py rename to plotly/graph_objs/parcoords/line/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/_font.py b/plotly/graph_objs/parcoords/line/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/line/colorbar/title/_font.py rename to plotly/graph_objs/parcoords/line/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/unselected/__init__.py b/plotly/graph_objs/parcoords/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/unselected/__init__.py rename to plotly/graph_objs/parcoords/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/parcoords/unselected/_line.py b/plotly/graph_objs/parcoords/unselected/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/parcoords/unselected/_line.py rename to plotly/graph_objs/parcoords/unselected/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/__init__.py b/plotly/graph_objs/pie/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/__init__.py rename to plotly/graph_objs/pie/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_domain.py b/plotly/graph_objs/pie/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_domain.py rename to plotly/graph_objs/pie/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_hoverlabel.py b/plotly/graph_objs/pie/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_hoverlabel.py rename to plotly/graph_objs/pie/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_insidetextfont.py b/plotly/graph_objs/pie/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_insidetextfont.py rename to plotly/graph_objs/pie/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_legendgrouptitle.py b/plotly/graph_objs/pie/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_legendgrouptitle.py rename to plotly/graph_objs/pie/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_marker.py b/plotly/graph_objs/pie/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_marker.py rename to plotly/graph_objs/pie/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_outsidetextfont.py b/plotly/graph_objs/pie/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_outsidetextfont.py rename to plotly/graph_objs/pie/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_stream.py b/plotly/graph_objs/pie/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_stream.py rename to plotly/graph_objs/pie/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_textfont.py b/plotly/graph_objs/pie/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_textfont.py rename to plotly/graph_objs/pie/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/_title.py b/plotly/graph_objs/pie/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/_title.py rename to plotly/graph_objs/pie/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/hoverlabel/__init__.py b/plotly/graph_objs/pie/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/hoverlabel/__init__.py rename to plotly/graph_objs/pie/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/hoverlabel/_font.py b/plotly/graph_objs/pie/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/hoverlabel/_font.py rename to plotly/graph_objs/pie/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/__init__.py b/plotly/graph_objs/pie/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/__init__.py rename to plotly/graph_objs/pie/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/_font.py b/plotly/graph_objs/pie/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/legendgrouptitle/_font.py rename to plotly/graph_objs/pie/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/marker/__init__.py b/plotly/graph_objs/pie/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/marker/__init__.py rename to plotly/graph_objs/pie/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/marker/_line.py b/plotly/graph_objs/pie/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/marker/_line.py rename to plotly/graph_objs/pie/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/marker/_pattern.py b/plotly/graph_objs/pie/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/marker/_pattern.py rename to plotly/graph_objs/pie/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/title/__init__.py b/plotly/graph_objs/pie/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/title/__init__.py rename to plotly/graph_objs/pie/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/pie/title/_font.py b/plotly/graph_objs/pie/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/pie/title/_font.py rename to plotly/graph_objs/pie/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/__init__.py b/plotly/graph_objs/sankey/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/__init__.py rename to plotly/graph_objs/sankey/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_domain.py b/plotly/graph_objs/sankey/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_domain.py rename to plotly/graph_objs/sankey/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_hoverlabel.py b/plotly/graph_objs/sankey/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_hoverlabel.py rename to plotly/graph_objs/sankey/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_legendgrouptitle.py b/plotly/graph_objs/sankey/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_legendgrouptitle.py rename to plotly/graph_objs/sankey/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_link.py b/plotly/graph_objs/sankey/_link.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_link.py rename to plotly/graph_objs/sankey/_link.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_node.py b/plotly/graph_objs/sankey/_node.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_node.py rename to plotly/graph_objs/sankey/_node.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_stream.py b/plotly/graph_objs/sankey/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_stream.py rename to plotly/graph_objs/sankey/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/_textfont.py b/plotly/graph_objs/sankey/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/_textfont.py rename to plotly/graph_objs/sankey/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/__init__.py b/plotly/graph_objs/sankey/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/__init__.py rename to plotly/graph_objs/sankey/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/_font.py b/plotly/graph_objs/sankey/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/hoverlabel/_font.py rename to plotly/graph_objs/sankey/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/__init__.py b/plotly/graph_objs/sankey/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/__init__.py rename to plotly/graph_objs/sankey/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/_font.py b/plotly/graph_objs/sankey/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/legendgrouptitle/_font.py rename to plotly/graph_objs/sankey/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/__init__.py b/plotly/graph_objs/sankey/link/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/link/__init__.py rename to plotly/graph_objs/sankey/link/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/_colorscale.py b/plotly/graph_objs/sankey/link/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/link/_colorscale.py rename to plotly/graph_objs/sankey/link/_colorscale.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/_hoverlabel.py b/plotly/graph_objs/sankey/link/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/link/_hoverlabel.py rename to plotly/graph_objs/sankey/link/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/_line.py b/plotly/graph_objs/sankey/link/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/link/_line.py rename to plotly/graph_objs/sankey/link/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/__init__.py b/plotly/graph_objs/sankey/link/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/__init__.py rename to plotly/graph_objs/sankey/link/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/_font.py b/plotly/graph_objs/sankey/link/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/link/hoverlabel/_font.py rename to plotly/graph_objs/sankey/link/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/__init__.py b/plotly/graph_objs/sankey/node/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/node/__init__.py rename to plotly/graph_objs/sankey/node/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/_hoverlabel.py b/plotly/graph_objs/sankey/node/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/node/_hoverlabel.py rename to plotly/graph_objs/sankey/node/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/_line.py b/plotly/graph_objs/sankey/node/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/node/_line.py rename to plotly/graph_objs/sankey/node/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/__init__.py b/plotly/graph_objs/sankey/node/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/__init__.py rename to plotly/graph_objs/sankey/node/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/_font.py b/plotly/graph_objs/sankey/node/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sankey/node/hoverlabel/_font.py rename to plotly/graph_objs/sankey/node/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/__init__.py b/plotly/graph_objs/scatter/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/__init__.py rename to plotly/graph_objs/scatter/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_error_x.py b/plotly/graph_objs/scatter/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_error_x.py rename to plotly/graph_objs/scatter/_error_x.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_error_y.py b/plotly/graph_objs/scatter/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_error_y.py rename to plotly/graph_objs/scatter/_error_y.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_fillgradient.py b/plotly/graph_objs/scatter/_fillgradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_fillgradient.py rename to plotly/graph_objs/scatter/_fillgradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_fillpattern.py b/plotly/graph_objs/scatter/_fillpattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_fillpattern.py rename to plotly/graph_objs/scatter/_fillpattern.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_hoverlabel.py b/plotly/graph_objs/scatter/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_hoverlabel.py rename to plotly/graph_objs/scatter/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_legendgrouptitle.py b/plotly/graph_objs/scatter/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_legendgrouptitle.py rename to plotly/graph_objs/scatter/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_line.py b/plotly/graph_objs/scatter/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_line.py rename to plotly/graph_objs/scatter/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_marker.py b/plotly/graph_objs/scatter/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_marker.py rename to plotly/graph_objs/scatter/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_selected.py b/plotly/graph_objs/scatter/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_selected.py rename to plotly/graph_objs/scatter/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_stream.py b/plotly/graph_objs/scatter/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_stream.py rename to plotly/graph_objs/scatter/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_textfont.py b/plotly/graph_objs/scatter/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_textfont.py rename to plotly/graph_objs/scatter/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/_unselected.py b/plotly/graph_objs/scatter/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/_unselected.py rename to plotly/graph_objs/scatter/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/__init__.py b/plotly/graph_objs/scatter/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/__init__.py rename to plotly/graph_objs/scatter/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/_font.py b/plotly/graph_objs/scatter/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/hoverlabel/_font.py rename to plotly/graph_objs/scatter/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/__init__.py b/plotly/graph_objs/scatter/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/__init__.py rename to plotly/graph_objs/scatter/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/_font.py b/plotly/graph_objs/scatter/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/legendgrouptitle/_font.py rename to plotly/graph_objs/scatter/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/__init__.py b/plotly/graph_objs/scatter/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/__init__.py rename to plotly/graph_objs/scatter/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/_colorbar.py b/plotly/graph_objs/scatter/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/_colorbar.py rename to plotly/graph_objs/scatter/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/_gradient.py b/plotly/graph_objs/scatter/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/_gradient.py rename to plotly/graph_objs/scatter/marker/_gradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/_line.py b/plotly/graph_objs/scatter/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/_line.py rename to plotly/graph_objs/scatter/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/__init__.py b/plotly/graph_objs/scatter/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/__init__.py rename to plotly/graph_objs/scatter/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scatter/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scatter/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_title.py b/plotly/graph_objs/scatter/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/_title.py rename to plotly/graph_objs/scatter/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/__init__.py b/plotly/graph_objs/scatter/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scatter/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/_font.py b/plotly/graph_objs/scatter/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/marker/colorbar/title/_font.py rename to plotly/graph_objs/scatter/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/selected/__init__.py b/plotly/graph_objs/scatter/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/selected/__init__.py rename to plotly/graph_objs/scatter/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/selected/_marker.py b/plotly/graph_objs/scatter/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/selected/_marker.py rename to plotly/graph_objs/scatter/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/selected/_textfont.py b/plotly/graph_objs/scatter/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/selected/_textfont.py rename to plotly/graph_objs/scatter/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/unselected/__init__.py b/plotly/graph_objs/scatter/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/unselected/__init__.py rename to plotly/graph_objs/scatter/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/unselected/_marker.py b/plotly/graph_objs/scatter/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/unselected/_marker.py rename to plotly/graph_objs/scatter/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter/unselected/_textfont.py b/plotly/graph_objs/scatter/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter/unselected/_textfont.py rename to plotly/graph_objs/scatter/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/__init__.py b/plotly/graph_objs/scatter3d/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/__init__.py rename to plotly/graph_objs/scatter3d/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_x.py b/plotly/graph_objs/scatter3d/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_error_x.py rename to plotly/graph_objs/scatter3d/_error_x.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_y.py b/plotly/graph_objs/scatter3d/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_error_y.py rename to plotly/graph_objs/scatter3d/_error_y.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_error_z.py b/plotly/graph_objs/scatter3d/_error_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_error_z.py rename to plotly/graph_objs/scatter3d/_error_z.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_hoverlabel.py b/plotly/graph_objs/scatter3d/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_hoverlabel.py rename to plotly/graph_objs/scatter3d/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_legendgrouptitle.py b/plotly/graph_objs/scatter3d/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_legendgrouptitle.py rename to plotly/graph_objs/scatter3d/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_line.py b/plotly/graph_objs/scatter3d/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_line.py rename to plotly/graph_objs/scatter3d/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_marker.py b/plotly/graph_objs/scatter3d/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_marker.py rename to plotly/graph_objs/scatter3d/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_projection.py b/plotly/graph_objs/scatter3d/_projection.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_projection.py rename to plotly/graph_objs/scatter3d/_projection.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_stream.py b/plotly/graph_objs/scatter3d/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_stream.py rename to plotly/graph_objs/scatter3d/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/_textfont.py b/plotly/graph_objs/scatter3d/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/_textfont.py rename to plotly/graph_objs/scatter3d/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/__init__.py b/plotly/graph_objs/scatter3d/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/__init__.py rename to plotly/graph_objs/scatter3d/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/_font.py b/plotly/graph_objs/scatter3d/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/hoverlabel/_font.py rename to plotly/graph_objs/scatter3d/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/__init__.py b/plotly/graph_objs/scatter3d/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/__init__.py rename to plotly/graph_objs/scatter3d/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py b/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/legendgrouptitle/_font.py rename to plotly/graph_objs/scatter3d/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/__init__.py b/plotly/graph_objs/scatter3d/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/__init__.py rename to plotly/graph_objs/scatter3d/line/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/_colorbar.py b/plotly/graph_objs/scatter3d/line/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/_colorbar.py rename to plotly/graph_objs/scatter3d/line/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/__init__.py b/plotly/graph_objs/scatter3d/line/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/__init__.py rename to plotly/graph_objs/scatter3d/line/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py b/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py rename to plotly/graph_objs/scatter3d/line/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py b/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py rename to plotly/graph_objs/scatter3d/line/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_title.py b/plotly/graph_objs/scatter3d/line/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/_title.py rename to plotly/graph_objs/scatter3d/line/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/__init__.py b/plotly/graph_objs/scatter3d/line/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/__init__.py rename to plotly/graph_objs/scatter3d/line/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py b/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/line/colorbar/title/_font.py rename to plotly/graph_objs/scatter3d/line/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/__init__.py b/plotly/graph_objs/scatter3d/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/__init__.py rename to plotly/graph_objs/scatter3d/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_colorbar.py b/plotly/graph_objs/scatter3d/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/_colorbar.py rename to plotly/graph_objs/scatter3d/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/_line.py b/plotly/graph_objs/scatter3d/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/_line.py rename to plotly/graph_objs/scatter3d/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/__init__.py b/plotly/graph_objs/scatter3d/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/__init__.py rename to plotly/graph_objs/scatter3d/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scatter3d/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scatter3d/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_title.py b/plotly/graph_objs/scatter3d/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/_title.py rename to plotly/graph_objs/scatter3d/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/__init__.py b/plotly/graph_objs/scatter3d/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scatter3d/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py b/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py rename to plotly/graph_objs/scatter3d/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/__init__.py b/plotly/graph_objs/scatter3d/projection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/projection/__init__.py rename to plotly/graph_objs/scatter3d/projection/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_x.py b/plotly/graph_objs/scatter3d/projection/_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/projection/_x.py rename to plotly/graph_objs/scatter3d/projection/_x.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_y.py b/plotly/graph_objs/scatter3d/projection/_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/projection/_y.py rename to plotly/graph_objs/scatter3d/projection/_y.py diff --git a/packages/python/plotly/plotly/graph_objs/scatter3d/projection/_z.py b/plotly/graph_objs/scatter3d/projection/_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatter3d/projection/_z.py rename to plotly/graph_objs/scatter3d/projection/_z.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/__init__.py b/plotly/graph_objs/scattercarpet/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/__init__.py rename to plotly/graph_objs/scattercarpet/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_hoverlabel.py b/plotly/graph_objs/scattercarpet/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_hoverlabel.py rename to plotly/graph_objs/scattercarpet/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_legendgrouptitle.py b/plotly/graph_objs/scattercarpet/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_legendgrouptitle.py rename to plotly/graph_objs/scattercarpet/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_line.py b/plotly/graph_objs/scattercarpet/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_line.py rename to plotly/graph_objs/scattercarpet/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_marker.py b/plotly/graph_objs/scattercarpet/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_marker.py rename to plotly/graph_objs/scattercarpet/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_selected.py b/plotly/graph_objs/scattercarpet/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_selected.py rename to plotly/graph_objs/scattercarpet/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_stream.py b/plotly/graph_objs/scattercarpet/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_stream.py rename to plotly/graph_objs/scattercarpet/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_textfont.py b/plotly/graph_objs/scattercarpet/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_textfont.py rename to plotly/graph_objs/scattercarpet/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/_unselected.py b/plotly/graph_objs/scattercarpet/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/_unselected.py rename to plotly/graph_objs/scattercarpet/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/__init__.py b/plotly/graph_objs/scattercarpet/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/__init__.py rename to plotly/graph_objs/scattercarpet/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/_font.py b/plotly/graph_objs/scattercarpet/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/hoverlabel/_font.py rename to plotly/graph_objs/scattercarpet/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/__init__.py b/plotly/graph_objs/scattercarpet/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/__init__.py rename to plotly/graph_objs/scattercarpet/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py b/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py rename to plotly/graph_objs/scattercarpet/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/__init__.py b/plotly/graph_objs/scattercarpet/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/__init__.py rename to plotly/graph_objs/scattercarpet/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_colorbar.py b/plotly/graph_objs/scattercarpet/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_colorbar.py rename to plotly/graph_objs/scattercarpet/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_gradient.py b/plotly/graph_objs/scattercarpet/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_gradient.py rename to plotly/graph_objs/scattercarpet/marker/_gradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_line.py b/plotly/graph_objs/scattercarpet/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/_line.py rename to plotly/graph_objs/scattercarpet/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/__init__.py b/plotly/graph_objs/scattercarpet/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/__init__.py rename to plotly/graph_objs/scattercarpet/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scattercarpet/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scattercarpet/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py b/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/_title.py rename to plotly/graph_objs/scattercarpet/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/__init__.py b/plotly/graph_objs/scattercarpet/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scattercarpet/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py b/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py rename to plotly/graph_objs/scattercarpet/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/__init__.py b/plotly/graph_objs/scattercarpet/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/selected/__init__.py rename to plotly/graph_objs/scattercarpet/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_marker.py b/plotly/graph_objs/scattercarpet/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_marker.py rename to plotly/graph_objs/scattercarpet/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_textfont.py b/plotly/graph_objs/scattercarpet/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/selected/_textfont.py rename to plotly/graph_objs/scattercarpet/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/__init__.py b/plotly/graph_objs/scattercarpet/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/__init__.py rename to plotly/graph_objs/scattercarpet/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_marker.py b/plotly/graph_objs/scattercarpet/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_marker.py rename to plotly/graph_objs/scattercarpet/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_textfont.py b/plotly/graph_objs/scattercarpet/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattercarpet/unselected/_textfont.py rename to plotly/graph_objs/scattercarpet/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/__init__.py b/plotly/graph_objs/scattergeo/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/__init__.py rename to plotly/graph_objs/scattergeo/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_hoverlabel.py b/plotly/graph_objs/scattergeo/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_hoverlabel.py rename to plotly/graph_objs/scattergeo/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_legendgrouptitle.py b/plotly/graph_objs/scattergeo/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_legendgrouptitle.py rename to plotly/graph_objs/scattergeo/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_line.py b/plotly/graph_objs/scattergeo/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_line.py rename to plotly/graph_objs/scattergeo/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_marker.py b/plotly/graph_objs/scattergeo/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_marker.py rename to plotly/graph_objs/scattergeo/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_selected.py b/plotly/graph_objs/scattergeo/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_selected.py rename to plotly/graph_objs/scattergeo/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_stream.py b/plotly/graph_objs/scattergeo/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_stream.py rename to plotly/graph_objs/scattergeo/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_textfont.py b/plotly/graph_objs/scattergeo/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_textfont.py rename to plotly/graph_objs/scattergeo/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/_unselected.py b/plotly/graph_objs/scattergeo/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/_unselected.py rename to plotly/graph_objs/scattergeo/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/__init__.py b/plotly/graph_objs/scattergeo/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/__init__.py rename to plotly/graph_objs/scattergeo/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/_font.py b/plotly/graph_objs/scattergeo/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/hoverlabel/_font.py rename to plotly/graph_objs/scattergeo/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/__init__.py b/plotly/graph_objs/scattergeo/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/__init__.py rename to plotly/graph_objs/scattergeo/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py b/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/legendgrouptitle/_font.py rename to plotly/graph_objs/scattergeo/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/__init__.py b/plotly/graph_objs/scattergeo/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/__init__.py rename to plotly/graph_objs/scattergeo/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_colorbar.py b/plotly/graph_objs/scattergeo/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/_colorbar.py rename to plotly/graph_objs/scattergeo/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_gradient.py b/plotly/graph_objs/scattergeo/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/_gradient.py rename to plotly/graph_objs/scattergeo/marker/_gradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/_line.py b/plotly/graph_objs/scattergeo/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/_line.py rename to plotly/graph_objs/scattergeo/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/__init__.py b/plotly/graph_objs/scattergeo/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/__init__.py rename to plotly/graph_objs/scattergeo/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scattergeo/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scattergeo/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_title.py b/plotly/graph_objs/scattergeo/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/_title.py rename to plotly/graph_objs/scattergeo/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/__init__.py b/plotly/graph_objs/scattergeo/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scattergeo/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py b/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py rename to plotly/graph_objs/scattergeo/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/__init__.py b/plotly/graph_objs/scattergeo/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/selected/__init__.py rename to plotly/graph_objs/scattergeo/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_marker.py b/plotly/graph_objs/scattergeo/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/selected/_marker.py rename to plotly/graph_objs/scattergeo/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/selected/_textfont.py b/plotly/graph_objs/scattergeo/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/selected/_textfont.py rename to plotly/graph_objs/scattergeo/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/__init__.py b/plotly/graph_objs/scattergeo/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/unselected/__init__.py rename to plotly/graph_objs/scattergeo/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_marker.py b/plotly/graph_objs/scattergeo/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_marker.py rename to plotly/graph_objs/scattergeo/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_textfont.py b/plotly/graph_objs/scattergeo/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergeo/unselected/_textfont.py rename to plotly/graph_objs/scattergeo/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/__init__.py b/plotly/graph_objs/scattergl/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/__init__.py rename to plotly/graph_objs/scattergl/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_error_x.py b/plotly/graph_objs/scattergl/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_error_x.py rename to plotly/graph_objs/scattergl/_error_x.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_error_y.py b/plotly/graph_objs/scattergl/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_error_y.py rename to plotly/graph_objs/scattergl/_error_y.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_hoverlabel.py b/plotly/graph_objs/scattergl/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_hoverlabel.py rename to plotly/graph_objs/scattergl/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_legendgrouptitle.py b/plotly/graph_objs/scattergl/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_legendgrouptitle.py rename to plotly/graph_objs/scattergl/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_line.py b/plotly/graph_objs/scattergl/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_line.py rename to plotly/graph_objs/scattergl/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_marker.py b/plotly/graph_objs/scattergl/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_marker.py rename to plotly/graph_objs/scattergl/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_selected.py b/plotly/graph_objs/scattergl/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_selected.py rename to plotly/graph_objs/scattergl/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_stream.py b/plotly/graph_objs/scattergl/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_stream.py rename to plotly/graph_objs/scattergl/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_textfont.py b/plotly/graph_objs/scattergl/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_textfont.py rename to plotly/graph_objs/scattergl/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/_unselected.py b/plotly/graph_objs/scattergl/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/_unselected.py rename to plotly/graph_objs/scattergl/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/__init__.py b/plotly/graph_objs/scattergl/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/__init__.py rename to plotly/graph_objs/scattergl/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/_font.py b/plotly/graph_objs/scattergl/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/hoverlabel/_font.py rename to plotly/graph_objs/scattergl/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/__init__.py b/plotly/graph_objs/scattergl/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/__init__.py rename to plotly/graph_objs/scattergl/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/_font.py b/plotly/graph_objs/scattergl/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/legendgrouptitle/_font.py rename to plotly/graph_objs/scattergl/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/__init__.py b/plotly/graph_objs/scattergl/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/__init__.py rename to plotly/graph_objs/scattergl/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/_colorbar.py b/plotly/graph_objs/scattergl/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/_colorbar.py rename to plotly/graph_objs/scattergl/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/_line.py b/plotly/graph_objs/scattergl/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/_line.py rename to plotly/graph_objs/scattergl/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/__init__.py b/plotly/graph_objs/scattergl/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/__init__.py rename to plotly/graph_objs/scattergl/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scattergl/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scattergl/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_title.py b/plotly/graph_objs/scattergl/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/_title.py rename to plotly/graph_objs/scattergl/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/__init__.py b/plotly/graph_objs/scattergl/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scattergl/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py b/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/marker/colorbar/title/_font.py rename to plotly/graph_objs/scattergl/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/selected/__init__.py b/plotly/graph_objs/scattergl/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/selected/__init__.py rename to plotly/graph_objs/scattergl/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/selected/_marker.py b/plotly/graph_objs/scattergl/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/selected/_marker.py rename to plotly/graph_objs/scattergl/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/selected/_textfont.py b/plotly/graph_objs/scattergl/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/selected/_textfont.py rename to plotly/graph_objs/scattergl/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/__init__.py b/plotly/graph_objs/scattergl/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/unselected/__init__.py rename to plotly/graph_objs/scattergl/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_marker.py b/plotly/graph_objs/scattergl/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/unselected/_marker.py rename to plotly/graph_objs/scattergl/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattergl/unselected/_textfont.py b/plotly/graph_objs/scattergl/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattergl/unselected/_textfont.py rename to plotly/graph_objs/scattergl/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/__init__.py b/plotly/graph_objs/scattermap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/__init__.py rename to plotly/graph_objs/scattermap/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_cluster.py b/plotly/graph_objs/scattermap/_cluster.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_cluster.py rename to plotly/graph_objs/scattermap/_cluster.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_hoverlabel.py b/plotly/graph_objs/scattermap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_hoverlabel.py rename to plotly/graph_objs/scattermap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_legendgrouptitle.py b/plotly/graph_objs/scattermap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_legendgrouptitle.py rename to plotly/graph_objs/scattermap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_line.py b/plotly/graph_objs/scattermap/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_line.py rename to plotly/graph_objs/scattermap/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_marker.py b/plotly/graph_objs/scattermap/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_marker.py rename to plotly/graph_objs/scattermap/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_selected.py b/plotly/graph_objs/scattermap/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_selected.py rename to plotly/graph_objs/scattermap/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_stream.py b/plotly/graph_objs/scattermap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_stream.py rename to plotly/graph_objs/scattermap/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_textfont.py b/plotly/graph_objs/scattermap/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_textfont.py rename to plotly/graph_objs/scattermap/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/_unselected.py b/plotly/graph_objs/scattermap/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/_unselected.py rename to plotly/graph_objs/scattermap/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/__init__.py b/plotly/graph_objs/scattermap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/__init__.py rename to plotly/graph_objs/scattermap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/_font.py b/plotly/graph_objs/scattermap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/hoverlabel/_font.py rename to plotly/graph_objs/scattermap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/__init__.py b/plotly/graph_objs/scattermap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/__init__.py rename to plotly/graph_objs/scattermap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/_font.py b/plotly/graph_objs/scattermap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/legendgrouptitle/_font.py rename to plotly/graph_objs/scattermap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/__init__.py b/plotly/graph_objs/scattermap/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/__init__.py rename to plotly/graph_objs/scattermap/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/_colorbar.py b/plotly/graph_objs/scattermap/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/_colorbar.py rename to plotly/graph_objs/scattermap/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/__init__.py b/plotly/graph_objs/scattermap/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/__init__.py rename to plotly/graph_objs/scattermap/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scattermap/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scattermap/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_title.py b/plotly/graph_objs/scattermap/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/_title.py rename to plotly/graph_objs/scattermap/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/__init__.py b/plotly/graph_objs/scattermap/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scattermap/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py b/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/marker/colorbar/title/_font.py rename to plotly/graph_objs/scattermap/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/selected/__init__.py b/plotly/graph_objs/scattermap/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/selected/__init__.py rename to plotly/graph_objs/scattermap/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/selected/_marker.py b/plotly/graph_objs/scattermap/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/selected/_marker.py rename to plotly/graph_objs/scattermap/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/unselected/__init__.py b/plotly/graph_objs/scattermap/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/unselected/__init__.py rename to plotly/graph_objs/scattermap/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermap/unselected/_marker.py b/plotly/graph_objs/scattermap/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermap/unselected/_marker.py rename to plotly/graph_objs/scattermap/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/__init__.py b/plotly/graph_objs/scattermapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/__init__.py rename to plotly/graph_objs/scattermapbox/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_cluster.py b/plotly/graph_objs/scattermapbox/_cluster.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_cluster.py rename to plotly/graph_objs/scattermapbox/_cluster.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_hoverlabel.py b/plotly/graph_objs/scattermapbox/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_hoverlabel.py rename to plotly/graph_objs/scattermapbox/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_legendgrouptitle.py b/plotly/graph_objs/scattermapbox/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_legendgrouptitle.py rename to plotly/graph_objs/scattermapbox/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_line.py b/plotly/graph_objs/scattermapbox/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_line.py rename to plotly/graph_objs/scattermapbox/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_marker.py b/plotly/graph_objs/scattermapbox/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_marker.py rename to plotly/graph_objs/scattermapbox/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_selected.py b/plotly/graph_objs/scattermapbox/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_selected.py rename to plotly/graph_objs/scattermapbox/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_stream.py b/plotly/graph_objs/scattermapbox/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_stream.py rename to plotly/graph_objs/scattermapbox/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_textfont.py b/plotly/graph_objs/scattermapbox/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_textfont.py rename to plotly/graph_objs/scattermapbox/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/_unselected.py b/plotly/graph_objs/scattermapbox/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/_unselected.py rename to plotly/graph_objs/scattermapbox/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/__init__.py b/plotly/graph_objs/scattermapbox/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/__init__.py rename to plotly/graph_objs/scattermapbox/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/_font.py b/plotly/graph_objs/scattermapbox/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/hoverlabel/_font.py rename to plotly/graph_objs/scattermapbox/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/__init__.py b/plotly/graph_objs/scattermapbox/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/__init__.py rename to plotly/graph_objs/scattermapbox/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py b/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py rename to plotly/graph_objs/scattermapbox/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/__init__.py b/plotly/graph_objs/scattermapbox/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/__init__.py rename to plotly/graph_objs/scattermapbox/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/_colorbar.py b/plotly/graph_objs/scattermapbox/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/_colorbar.py rename to plotly/graph_objs/scattermapbox/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/__init__.py b/plotly/graph_objs/scattermapbox/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/__init__.py rename to plotly/graph_objs/scattermapbox/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scattermapbox/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scattermapbox/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py b/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/_title.py rename to plotly/graph_objs/scattermapbox/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/__init__.py b/plotly/graph_objs/scattermapbox/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scattermapbox/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py b/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py rename to plotly/graph_objs/scattermapbox/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/selected/__init__.py b/plotly/graph_objs/scattermapbox/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/selected/__init__.py rename to plotly/graph_objs/scattermapbox/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/selected/_marker.py b/plotly/graph_objs/scattermapbox/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/selected/_marker.py rename to plotly/graph_objs/scattermapbox/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/__init__.py b/plotly/graph_objs/scattermapbox/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/__init__.py rename to plotly/graph_objs/scattermapbox/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/_marker.py b/plotly/graph_objs/scattermapbox/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattermapbox/unselected/_marker.py rename to plotly/graph_objs/scattermapbox/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/__init__.py b/plotly/graph_objs/scatterpolar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/__init__.py rename to plotly/graph_objs/scatterpolar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_hoverlabel.py b/plotly/graph_objs/scatterpolar/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_hoverlabel.py rename to plotly/graph_objs/scatterpolar/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_legendgrouptitle.py b/plotly/graph_objs/scatterpolar/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_legendgrouptitle.py rename to plotly/graph_objs/scatterpolar/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_line.py b/plotly/graph_objs/scatterpolar/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_line.py rename to plotly/graph_objs/scatterpolar/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_marker.py b/plotly/graph_objs/scatterpolar/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_marker.py rename to plotly/graph_objs/scatterpolar/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_selected.py b/plotly/graph_objs/scatterpolar/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_selected.py rename to plotly/graph_objs/scatterpolar/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_stream.py b/plotly/graph_objs/scatterpolar/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_stream.py rename to plotly/graph_objs/scatterpolar/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_textfont.py b/plotly/graph_objs/scatterpolar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_textfont.py rename to plotly/graph_objs/scatterpolar/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/_unselected.py b/plotly/graph_objs/scatterpolar/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/_unselected.py rename to plotly/graph_objs/scatterpolar/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/__init__.py b/plotly/graph_objs/scatterpolar/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/__init__.py rename to plotly/graph_objs/scatterpolar/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/_font.py b/plotly/graph_objs/scatterpolar/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/hoverlabel/_font.py rename to plotly/graph_objs/scatterpolar/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/__init__.py b/plotly/graph_objs/scatterpolar/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/__init__.py rename to plotly/graph_objs/scatterpolar/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py b/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py rename to plotly/graph_objs/scatterpolar/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/__init__.py b/plotly/graph_objs/scatterpolar/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/__init__.py rename to plotly/graph_objs/scatterpolar/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_colorbar.py b/plotly/graph_objs/scatterpolar/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_colorbar.py rename to plotly/graph_objs/scatterpolar/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_gradient.py b/plotly/graph_objs/scatterpolar/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_gradient.py rename to plotly/graph_objs/scatterpolar/marker/_gradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_line.py b/plotly/graph_objs/scatterpolar/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/_line.py rename to plotly/graph_objs/scatterpolar/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/__init__.py b/plotly/graph_objs/scatterpolar/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/__init__.py rename to plotly/graph_objs/scatterpolar/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scatterpolar/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scatterpolar/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py b/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/_title.py rename to plotly/graph_objs/scatterpolar/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/__init__.py b/plotly/graph_objs/scatterpolar/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scatterpolar/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py b/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py rename to plotly/graph_objs/scatterpolar/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/__init__.py b/plotly/graph_objs/scatterpolar/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/selected/__init__.py rename to plotly/graph_objs/scatterpolar/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_marker.py b/plotly/graph_objs/scatterpolar/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_marker.py rename to plotly/graph_objs/scatterpolar/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_textfont.py b/plotly/graph_objs/scatterpolar/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/selected/_textfont.py rename to plotly/graph_objs/scatterpolar/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/__init__.py b/plotly/graph_objs/scatterpolar/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/__init__.py rename to plotly/graph_objs/scatterpolar/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_marker.py b/plotly/graph_objs/scatterpolar/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_marker.py rename to plotly/graph_objs/scatterpolar/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_textfont.py b/plotly/graph_objs/scatterpolar/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolar/unselected/_textfont.py rename to plotly/graph_objs/scatterpolar/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/__init__.py b/plotly/graph_objs/scatterpolargl/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/__init__.py rename to plotly/graph_objs/scatterpolargl/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_hoverlabel.py b/plotly/graph_objs/scatterpolargl/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_hoverlabel.py rename to plotly/graph_objs/scatterpolargl/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py b/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_legendgrouptitle.py rename to plotly/graph_objs/scatterpolargl/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_line.py b/plotly/graph_objs/scatterpolargl/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_line.py rename to plotly/graph_objs/scatterpolargl/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_marker.py b/plotly/graph_objs/scatterpolargl/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_marker.py rename to plotly/graph_objs/scatterpolargl/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_selected.py b/plotly/graph_objs/scatterpolargl/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_selected.py rename to plotly/graph_objs/scatterpolargl/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_stream.py b/plotly/graph_objs/scatterpolargl/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_stream.py rename to plotly/graph_objs/scatterpolargl/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_textfont.py b/plotly/graph_objs/scatterpolargl/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_textfont.py rename to plotly/graph_objs/scatterpolargl/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/_unselected.py b/plotly/graph_objs/scatterpolargl/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/_unselected.py rename to plotly/graph_objs/scatterpolargl/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/__init__.py b/plotly/graph_objs/scatterpolargl/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/__init__.py rename to plotly/graph_objs/scatterpolargl/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py b/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/hoverlabel/_font.py rename to plotly/graph_objs/scatterpolargl/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/__init__.py b/plotly/graph_objs/scatterpolargl/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/__init__.py rename to plotly/graph_objs/scatterpolargl/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py b/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py rename to plotly/graph_objs/scatterpolargl/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/__init__.py b/plotly/graph_objs/scatterpolargl/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/__init__.py rename to plotly/graph_objs/scatterpolargl/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_colorbar.py b/plotly/graph_objs/scatterpolargl/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_colorbar.py rename to plotly/graph_objs/scatterpolargl/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_line.py b/plotly/graph_objs/scatterpolargl/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/_line.py rename to plotly/graph_objs/scatterpolargl/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/__init__.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/__init__.py rename to plotly/graph_objs/scatterpolargl/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scatterpolargl/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scatterpolargl/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py rename to plotly/graph_objs/scatterpolargl/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/__init__.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scatterpolargl/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py b/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py rename to plotly/graph_objs/scatterpolargl/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/__init__.py b/plotly/graph_objs/scatterpolargl/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/__init__.py rename to plotly/graph_objs/scatterpolargl/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_marker.py b/plotly/graph_objs/scatterpolargl/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_marker.py rename to plotly/graph_objs/scatterpolargl/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_textfont.py b/plotly/graph_objs/scatterpolargl/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/selected/_textfont.py rename to plotly/graph_objs/scatterpolargl/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/__init__.py b/plotly/graph_objs/scatterpolargl/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/__init__.py rename to plotly/graph_objs/scatterpolargl/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_marker.py b/plotly/graph_objs/scatterpolargl/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_marker.py rename to plotly/graph_objs/scatterpolargl/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_textfont.py b/plotly/graph_objs/scatterpolargl/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterpolargl/unselected/_textfont.py rename to plotly/graph_objs/scatterpolargl/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/__init__.py b/plotly/graph_objs/scattersmith/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/__init__.py rename to plotly/graph_objs/scattersmith/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_hoverlabel.py b/plotly/graph_objs/scattersmith/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_hoverlabel.py rename to plotly/graph_objs/scattersmith/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_legendgrouptitle.py b/plotly/graph_objs/scattersmith/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_legendgrouptitle.py rename to plotly/graph_objs/scattersmith/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_line.py b/plotly/graph_objs/scattersmith/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_line.py rename to plotly/graph_objs/scattersmith/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_marker.py b/plotly/graph_objs/scattersmith/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_marker.py rename to plotly/graph_objs/scattersmith/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_selected.py b/plotly/graph_objs/scattersmith/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_selected.py rename to plotly/graph_objs/scattersmith/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_stream.py b/plotly/graph_objs/scattersmith/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_stream.py rename to plotly/graph_objs/scattersmith/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_textfont.py b/plotly/graph_objs/scattersmith/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_textfont.py rename to plotly/graph_objs/scattersmith/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/_unselected.py b/plotly/graph_objs/scattersmith/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/_unselected.py rename to plotly/graph_objs/scattersmith/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/__init__.py b/plotly/graph_objs/scattersmith/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/__init__.py rename to plotly/graph_objs/scattersmith/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/_font.py b/plotly/graph_objs/scattersmith/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/hoverlabel/_font.py rename to plotly/graph_objs/scattersmith/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/__init__.py b/plotly/graph_objs/scattersmith/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/__init__.py rename to plotly/graph_objs/scattersmith/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py b/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/legendgrouptitle/_font.py rename to plotly/graph_objs/scattersmith/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/__init__.py b/plotly/graph_objs/scattersmith/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/__init__.py rename to plotly/graph_objs/scattersmith/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_colorbar.py b/plotly/graph_objs/scattersmith/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/_colorbar.py rename to plotly/graph_objs/scattersmith/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_gradient.py b/plotly/graph_objs/scattersmith/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/_gradient.py rename to plotly/graph_objs/scattersmith/marker/_gradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/_line.py b/plotly/graph_objs/scattersmith/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/_line.py rename to plotly/graph_objs/scattersmith/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/__init__.py b/plotly/graph_objs/scattersmith/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/__init__.py rename to plotly/graph_objs/scattersmith/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py b/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scattersmith/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scattersmith/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_title.py b/plotly/graph_objs/scattersmith/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/_title.py rename to plotly/graph_objs/scattersmith/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/__init__.py b/plotly/graph_objs/scattersmith/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scattersmith/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py b/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py rename to plotly/graph_objs/scattersmith/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/__init__.py b/plotly/graph_objs/scattersmith/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/selected/__init__.py rename to plotly/graph_objs/scattersmith/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_marker.py b/plotly/graph_objs/scattersmith/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/selected/_marker.py rename to plotly/graph_objs/scattersmith/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/selected/_textfont.py b/plotly/graph_objs/scattersmith/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/selected/_textfont.py rename to plotly/graph_objs/scattersmith/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/__init__.py b/plotly/graph_objs/scattersmith/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/unselected/__init__.py rename to plotly/graph_objs/scattersmith/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_marker.py b/plotly/graph_objs/scattersmith/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_marker.py rename to plotly/graph_objs/scattersmith/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_textfont.py b/plotly/graph_objs/scattersmith/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scattersmith/unselected/_textfont.py rename to plotly/graph_objs/scattersmith/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/__init__.py b/plotly/graph_objs/scatterternary/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/__init__.py rename to plotly/graph_objs/scatterternary/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_hoverlabel.py b/plotly/graph_objs/scatterternary/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_hoverlabel.py rename to plotly/graph_objs/scatterternary/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_legendgrouptitle.py b/plotly/graph_objs/scatterternary/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_legendgrouptitle.py rename to plotly/graph_objs/scatterternary/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_line.py b/plotly/graph_objs/scatterternary/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_line.py rename to plotly/graph_objs/scatterternary/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_marker.py b/plotly/graph_objs/scatterternary/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_marker.py rename to plotly/graph_objs/scatterternary/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_selected.py b/plotly/graph_objs/scatterternary/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_selected.py rename to plotly/graph_objs/scatterternary/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_stream.py b/plotly/graph_objs/scatterternary/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_stream.py rename to plotly/graph_objs/scatterternary/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_textfont.py b/plotly/graph_objs/scatterternary/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_textfont.py rename to plotly/graph_objs/scatterternary/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/_unselected.py b/plotly/graph_objs/scatterternary/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/_unselected.py rename to plotly/graph_objs/scatterternary/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/__init__.py b/plotly/graph_objs/scatterternary/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/__init__.py rename to plotly/graph_objs/scatterternary/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/_font.py b/plotly/graph_objs/scatterternary/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/hoverlabel/_font.py rename to plotly/graph_objs/scatterternary/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/__init__.py b/plotly/graph_objs/scatterternary/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/__init__.py rename to plotly/graph_objs/scatterternary/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py b/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/legendgrouptitle/_font.py rename to plotly/graph_objs/scatterternary/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/__init__.py b/plotly/graph_objs/scatterternary/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/__init__.py rename to plotly/graph_objs/scatterternary/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_colorbar.py b/plotly/graph_objs/scatterternary/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/_colorbar.py rename to plotly/graph_objs/scatterternary/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_gradient.py b/plotly/graph_objs/scatterternary/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/_gradient.py rename to plotly/graph_objs/scatterternary/marker/_gradient.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/_line.py b/plotly/graph_objs/scatterternary/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/_line.py rename to plotly/graph_objs/scatterternary/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/__init__.py b/plotly/graph_objs/scatterternary/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/__init__.py rename to plotly/graph_objs/scatterternary/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py b/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py rename to plotly/graph_objs/scatterternary/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/scatterternary/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_title.py b/plotly/graph_objs/scatterternary/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/_title.py rename to plotly/graph_objs/scatterternary/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/__init__.py b/plotly/graph_objs/scatterternary/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/__init__.py rename to plotly/graph_objs/scatterternary/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py b/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py rename to plotly/graph_objs/scatterternary/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/__init__.py b/plotly/graph_objs/scatterternary/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/selected/__init__.py rename to plotly/graph_objs/scatterternary/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_marker.py b/plotly/graph_objs/scatterternary/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/selected/_marker.py rename to plotly/graph_objs/scatterternary/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/selected/_textfont.py b/plotly/graph_objs/scatterternary/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/selected/_textfont.py rename to plotly/graph_objs/scatterternary/selected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/__init__.py b/plotly/graph_objs/scatterternary/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/unselected/__init__.py rename to plotly/graph_objs/scatterternary/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_marker.py b/plotly/graph_objs/scatterternary/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_marker.py rename to plotly/graph_objs/scatterternary/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_textfont.py b/plotly/graph_objs/scatterternary/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/scatterternary/unselected/_textfont.py rename to plotly/graph_objs/scatterternary/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/__init__.py b/plotly/graph_objs/splom/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/__init__.py rename to plotly/graph_objs/splom/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_diagonal.py b/plotly/graph_objs/splom/_diagonal.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_diagonal.py rename to plotly/graph_objs/splom/_diagonal.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_dimension.py b/plotly/graph_objs/splom/_dimension.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_dimension.py rename to plotly/graph_objs/splom/_dimension.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_hoverlabel.py b/plotly/graph_objs/splom/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_hoverlabel.py rename to plotly/graph_objs/splom/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_legendgrouptitle.py b/plotly/graph_objs/splom/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_legendgrouptitle.py rename to plotly/graph_objs/splom/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_marker.py b/plotly/graph_objs/splom/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_marker.py rename to plotly/graph_objs/splom/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_selected.py b/plotly/graph_objs/splom/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_selected.py rename to plotly/graph_objs/splom/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_stream.py b/plotly/graph_objs/splom/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_stream.py rename to plotly/graph_objs/splom/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/_unselected.py b/plotly/graph_objs/splom/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/_unselected.py rename to plotly/graph_objs/splom/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/dimension/__init__.py b/plotly/graph_objs/splom/dimension/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/dimension/__init__.py rename to plotly/graph_objs/splom/dimension/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/dimension/_axis.py b/plotly/graph_objs/splom/dimension/_axis.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/dimension/_axis.py rename to plotly/graph_objs/splom/dimension/_axis.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/hoverlabel/__init__.py b/plotly/graph_objs/splom/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/hoverlabel/__init__.py rename to plotly/graph_objs/splom/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/hoverlabel/_font.py b/plotly/graph_objs/splom/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/hoverlabel/_font.py rename to plotly/graph_objs/splom/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/__init__.py b/plotly/graph_objs/splom/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/__init__.py rename to plotly/graph_objs/splom/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/_font.py b/plotly/graph_objs/splom/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/legendgrouptitle/_font.py rename to plotly/graph_objs/splom/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/__init__.py b/plotly/graph_objs/splom/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/__init__.py rename to plotly/graph_objs/splom/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/_colorbar.py b/plotly/graph_objs/splom/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/_colorbar.py rename to plotly/graph_objs/splom/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/_line.py b/plotly/graph_objs/splom/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/_line.py rename to plotly/graph_objs/splom/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/__init__.py b/plotly/graph_objs/splom/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/__init__.py rename to plotly/graph_objs/splom/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickfont.py b/plotly/graph_objs/splom/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickfont.py rename to plotly/graph_objs/splom/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/splom/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_title.py b/plotly/graph_objs/splom/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/_title.py rename to plotly/graph_objs/splom/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/__init__.py b/plotly/graph_objs/splom/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/__init__.py rename to plotly/graph_objs/splom/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/_font.py b/plotly/graph_objs/splom/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/marker/colorbar/title/_font.py rename to plotly/graph_objs/splom/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/selected/__init__.py b/plotly/graph_objs/splom/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/selected/__init__.py rename to plotly/graph_objs/splom/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/selected/_marker.py b/plotly/graph_objs/splom/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/selected/_marker.py rename to plotly/graph_objs/splom/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/unselected/__init__.py b/plotly/graph_objs/splom/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/unselected/__init__.py rename to plotly/graph_objs/splom/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/splom/unselected/_marker.py b/plotly/graph_objs/splom/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/splom/unselected/_marker.py rename to plotly/graph_objs/splom/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/__init__.py b/plotly/graph_objs/streamtube/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/__init__.py rename to plotly/graph_objs/streamtube/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_colorbar.py b/plotly/graph_objs/streamtube/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_colorbar.py rename to plotly/graph_objs/streamtube/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_hoverlabel.py b/plotly/graph_objs/streamtube/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_hoverlabel.py rename to plotly/graph_objs/streamtube/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_legendgrouptitle.py b/plotly/graph_objs/streamtube/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_legendgrouptitle.py rename to plotly/graph_objs/streamtube/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_lighting.py b/plotly/graph_objs/streamtube/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_lighting.py rename to plotly/graph_objs/streamtube/_lighting.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_lightposition.py b/plotly/graph_objs/streamtube/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_lightposition.py rename to plotly/graph_objs/streamtube/_lightposition.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_starts.py b/plotly/graph_objs/streamtube/_starts.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_starts.py rename to plotly/graph_objs/streamtube/_starts.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/_stream.py b/plotly/graph_objs/streamtube/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/_stream.py rename to plotly/graph_objs/streamtube/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/__init__.py b/plotly/graph_objs/streamtube/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/colorbar/__init__.py rename to plotly/graph_objs/streamtube/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickfont.py b/plotly/graph_objs/streamtube/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickfont.py rename to plotly/graph_objs/streamtube/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py b/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_tickformatstop.py rename to plotly/graph_objs/streamtube/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_title.py b/plotly/graph_objs/streamtube/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/colorbar/_title.py rename to plotly/graph_objs/streamtube/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/__init__.py b/plotly/graph_objs/streamtube/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/__init__.py rename to plotly/graph_objs/streamtube/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/_font.py b/plotly/graph_objs/streamtube/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/colorbar/title/_font.py rename to plotly/graph_objs/streamtube/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/__init__.py b/plotly/graph_objs/streamtube/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/__init__.py rename to plotly/graph_objs/streamtube/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/_font.py b/plotly/graph_objs/streamtube/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/hoverlabel/_font.py rename to plotly/graph_objs/streamtube/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/__init__.py b/plotly/graph_objs/streamtube/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/__init__.py rename to plotly/graph_objs/streamtube/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/_font.py b/plotly/graph_objs/streamtube/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/streamtube/legendgrouptitle/_font.py rename to plotly/graph_objs/streamtube/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/__init__.py b/plotly/graph_objs/sunburst/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/__init__.py rename to plotly/graph_objs/sunburst/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_domain.py b/plotly/graph_objs/sunburst/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_domain.py rename to plotly/graph_objs/sunburst/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_hoverlabel.py b/plotly/graph_objs/sunburst/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_hoverlabel.py rename to plotly/graph_objs/sunburst/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_insidetextfont.py b/plotly/graph_objs/sunburst/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_insidetextfont.py rename to plotly/graph_objs/sunburst/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_leaf.py b/plotly/graph_objs/sunburst/_leaf.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_leaf.py rename to plotly/graph_objs/sunburst/_leaf.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_legendgrouptitle.py b/plotly/graph_objs/sunburst/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_legendgrouptitle.py rename to plotly/graph_objs/sunburst/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_marker.py b/plotly/graph_objs/sunburst/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_marker.py rename to plotly/graph_objs/sunburst/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_outsidetextfont.py b/plotly/graph_objs/sunburst/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_outsidetextfont.py rename to plotly/graph_objs/sunburst/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_root.py b/plotly/graph_objs/sunburst/_root.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_root.py rename to plotly/graph_objs/sunburst/_root.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_stream.py b/plotly/graph_objs/sunburst/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_stream.py rename to plotly/graph_objs/sunburst/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/_textfont.py b/plotly/graph_objs/sunburst/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/_textfont.py rename to plotly/graph_objs/sunburst/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/__init__.py b/plotly/graph_objs/sunburst/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/__init__.py rename to plotly/graph_objs/sunburst/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/_font.py b/plotly/graph_objs/sunburst/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/hoverlabel/_font.py rename to plotly/graph_objs/sunburst/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/__init__.py b/plotly/graph_objs/sunburst/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/__init__.py rename to plotly/graph_objs/sunburst/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/_font.py b/plotly/graph_objs/sunburst/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/legendgrouptitle/_font.py rename to plotly/graph_objs/sunburst/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/__init__.py b/plotly/graph_objs/sunburst/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/__init__.py rename to plotly/graph_objs/sunburst/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_colorbar.py b/plotly/graph_objs/sunburst/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/_colorbar.py rename to plotly/graph_objs/sunburst/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_line.py b/plotly/graph_objs/sunburst/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/_line.py rename to plotly/graph_objs/sunburst/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/_pattern.py b/plotly/graph_objs/sunburst/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/_pattern.py rename to plotly/graph_objs/sunburst/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/__init__.py b/plotly/graph_objs/sunburst/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/__init__.py rename to plotly/graph_objs/sunburst/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py b/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py rename to plotly/graph_objs/sunburst/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/sunburst/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_title.py b/plotly/graph_objs/sunburst/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/_title.py rename to plotly/graph_objs/sunburst/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/__init__.py b/plotly/graph_objs/sunburst/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/__init__.py rename to plotly/graph_objs/sunburst/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py b/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/sunburst/marker/colorbar/title/_font.py rename to plotly/graph_objs/sunburst/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/__init__.py b/plotly/graph_objs/surface/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/__init__.py rename to plotly/graph_objs/surface/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_colorbar.py b/plotly/graph_objs/surface/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_colorbar.py rename to plotly/graph_objs/surface/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_contours.py b/plotly/graph_objs/surface/_contours.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_contours.py rename to plotly/graph_objs/surface/_contours.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_hoverlabel.py b/plotly/graph_objs/surface/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_hoverlabel.py rename to plotly/graph_objs/surface/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_legendgrouptitle.py b/plotly/graph_objs/surface/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_legendgrouptitle.py rename to plotly/graph_objs/surface/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_lighting.py b/plotly/graph_objs/surface/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_lighting.py rename to plotly/graph_objs/surface/_lighting.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_lightposition.py b/plotly/graph_objs/surface/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_lightposition.py rename to plotly/graph_objs/surface/_lightposition.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/_stream.py b/plotly/graph_objs/surface/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/_stream.py rename to plotly/graph_objs/surface/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/__init__.py b/plotly/graph_objs/surface/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/colorbar/__init__.py rename to plotly/graph_objs/surface/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickfont.py b/plotly/graph_objs/surface/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickfont.py rename to plotly/graph_objs/surface/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickformatstop.py b/plotly/graph_objs/surface/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/colorbar/_tickformatstop.py rename to plotly/graph_objs/surface/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/_title.py b/plotly/graph_objs/surface/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/colorbar/_title.py rename to plotly/graph_objs/surface/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/title/__init__.py b/plotly/graph_objs/surface/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/colorbar/title/__init__.py rename to plotly/graph_objs/surface/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/colorbar/title/_font.py b/plotly/graph_objs/surface/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/colorbar/title/_font.py rename to plotly/graph_objs/surface/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/__init__.py b/plotly/graph_objs/surface/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/__init__.py rename to plotly/graph_objs/surface/contours/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/_x.py b/plotly/graph_objs/surface/contours/_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/_x.py rename to plotly/graph_objs/surface/contours/_x.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/_y.py b/plotly/graph_objs/surface/contours/_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/_y.py rename to plotly/graph_objs/surface/contours/_y.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/_z.py b/plotly/graph_objs/surface/contours/_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/_z.py rename to plotly/graph_objs/surface/contours/_z.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/x/__init__.py b/plotly/graph_objs/surface/contours/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/x/__init__.py rename to plotly/graph_objs/surface/contours/x/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/x/_project.py b/plotly/graph_objs/surface/contours/x/_project.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/x/_project.py rename to plotly/graph_objs/surface/contours/x/_project.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/y/__init__.py b/plotly/graph_objs/surface/contours/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/y/__init__.py rename to plotly/graph_objs/surface/contours/y/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/y/_project.py b/plotly/graph_objs/surface/contours/y/_project.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/y/_project.py rename to plotly/graph_objs/surface/contours/y/_project.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/z/__init__.py b/plotly/graph_objs/surface/contours/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/z/__init__.py rename to plotly/graph_objs/surface/contours/z/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/contours/z/_project.py b/plotly/graph_objs/surface/contours/z/_project.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/contours/z/_project.py rename to plotly/graph_objs/surface/contours/z/_project.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/hoverlabel/__init__.py b/plotly/graph_objs/surface/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/hoverlabel/__init__.py rename to plotly/graph_objs/surface/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/hoverlabel/_font.py b/plotly/graph_objs/surface/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/hoverlabel/_font.py rename to plotly/graph_objs/surface/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/__init__.py b/plotly/graph_objs/surface/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/__init__.py rename to plotly/graph_objs/surface/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/_font.py b/plotly/graph_objs/surface/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/surface/legendgrouptitle/_font.py rename to plotly/graph_objs/surface/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/table/__init__.py b/plotly/graph_objs/table/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/__init__.py rename to plotly/graph_objs/table/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/table/_cells.py b/plotly/graph_objs/table/_cells.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/_cells.py rename to plotly/graph_objs/table/_cells.py diff --git a/packages/python/plotly/plotly/graph_objs/table/_domain.py b/plotly/graph_objs/table/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/_domain.py rename to plotly/graph_objs/table/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/table/_header.py b/plotly/graph_objs/table/_header.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/_header.py rename to plotly/graph_objs/table/_header.py diff --git a/packages/python/plotly/plotly/graph_objs/table/_hoverlabel.py b/plotly/graph_objs/table/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/_hoverlabel.py rename to plotly/graph_objs/table/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/table/_legendgrouptitle.py b/plotly/graph_objs/table/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/_legendgrouptitle.py rename to plotly/graph_objs/table/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/table/_stream.py b/plotly/graph_objs/table/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/_stream.py rename to plotly/graph_objs/table/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/__init__.py b/plotly/graph_objs/table/cells/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/cells/__init__.py rename to plotly/graph_objs/table/cells/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/_fill.py b/plotly/graph_objs/table/cells/_fill.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/cells/_fill.py rename to plotly/graph_objs/table/cells/_fill.py diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/_font.py b/plotly/graph_objs/table/cells/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/cells/_font.py rename to plotly/graph_objs/table/cells/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/table/cells/_line.py b/plotly/graph_objs/table/cells/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/cells/_line.py rename to plotly/graph_objs/table/cells/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/table/header/__init__.py b/plotly/graph_objs/table/header/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/header/__init__.py rename to plotly/graph_objs/table/header/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/table/header/_fill.py b/plotly/graph_objs/table/header/_fill.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/header/_fill.py rename to plotly/graph_objs/table/header/_fill.py diff --git a/packages/python/plotly/plotly/graph_objs/table/header/_font.py b/plotly/graph_objs/table/header/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/header/_font.py rename to plotly/graph_objs/table/header/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/table/header/_line.py b/plotly/graph_objs/table/header/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/header/_line.py rename to plotly/graph_objs/table/header/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/table/hoverlabel/__init__.py b/plotly/graph_objs/table/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/hoverlabel/__init__.py rename to plotly/graph_objs/table/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/table/hoverlabel/_font.py b/plotly/graph_objs/table/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/hoverlabel/_font.py rename to plotly/graph_objs/table/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/__init__.py b/plotly/graph_objs/table/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/__init__.py rename to plotly/graph_objs/table/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/_font.py b/plotly/graph_objs/table/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/table/legendgrouptitle/_font.py rename to plotly/graph_objs/table/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/__init__.py b/plotly/graph_objs/treemap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/__init__.py rename to plotly/graph_objs/treemap/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_domain.py b/plotly/graph_objs/treemap/_domain.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_domain.py rename to plotly/graph_objs/treemap/_domain.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_hoverlabel.py b/plotly/graph_objs/treemap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_hoverlabel.py rename to plotly/graph_objs/treemap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_insidetextfont.py b/plotly/graph_objs/treemap/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_insidetextfont.py rename to plotly/graph_objs/treemap/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_legendgrouptitle.py b/plotly/graph_objs/treemap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_legendgrouptitle.py rename to plotly/graph_objs/treemap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_marker.py b/plotly/graph_objs/treemap/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_marker.py rename to plotly/graph_objs/treemap/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_outsidetextfont.py b/plotly/graph_objs/treemap/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_outsidetextfont.py rename to plotly/graph_objs/treemap/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_pathbar.py b/plotly/graph_objs/treemap/_pathbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_pathbar.py rename to plotly/graph_objs/treemap/_pathbar.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_root.py b/plotly/graph_objs/treemap/_root.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_root.py rename to plotly/graph_objs/treemap/_root.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_stream.py b/plotly/graph_objs/treemap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_stream.py rename to plotly/graph_objs/treemap/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_textfont.py b/plotly/graph_objs/treemap/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_textfont.py rename to plotly/graph_objs/treemap/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/_tiling.py b/plotly/graph_objs/treemap/_tiling.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/_tiling.py rename to plotly/graph_objs/treemap/_tiling.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/__init__.py b/plotly/graph_objs/treemap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/__init__.py rename to plotly/graph_objs/treemap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/_font.py b/plotly/graph_objs/treemap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/hoverlabel/_font.py rename to plotly/graph_objs/treemap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/__init__.py b/plotly/graph_objs/treemap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/__init__.py rename to plotly/graph_objs/treemap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/_font.py b/plotly/graph_objs/treemap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/legendgrouptitle/_font.py rename to plotly/graph_objs/treemap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/__init__.py b/plotly/graph_objs/treemap/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/__init__.py rename to plotly/graph_objs/treemap/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_colorbar.py b/plotly/graph_objs/treemap/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/_colorbar.py rename to plotly/graph_objs/treemap/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_line.py b/plotly/graph_objs/treemap/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/_line.py rename to plotly/graph_objs/treemap/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_pad.py b/plotly/graph_objs/treemap/marker/_pad.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/_pad.py rename to plotly/graph_objs/treemap/marker/_pad.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/_pattern.py b/plotly/graph_objs/treemap/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/_pattern.py rename to plotly/graph_objs/treemap/marker/_pattern.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/__init__.py b/plotly/graph_objs/treemap/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/__init__.py rename to plotly/graph_objs/treemap/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py b/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickfont.py rename to plotly/graph_objs/treemap/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py b/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py rename to plotly/graph_objs/treemap/marker/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_title.py b/plotly/graph_objs/treemap/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/_title.py rename to plotly/graph_objs/treemap/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/__init__.py b/plotly/graph_objs/treemap/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/__init__.py rename to plotly/graph_objs/treemap/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/_font.py b/plotly/graph_objs/treemap/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/marker/colorbar/title/_font.py rename to plotly/graph_objs/treemap/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/pathbar/__init__.py b/plotly/graph_objs/treemap/pathbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/pathbar/__init__.py rename to plotly/graph_objs/treemap/pathbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/treemap/pathbar/_textfont.py b/plotly/graph_objs/treemap/pathbar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/treemap/pathbar/_textfont.py rename to plotly/graph_objs/treemap/pathbar/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/__init__.py b/plotly/graph_objs/violin/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/__init__.py rename to plotly/graph_objs/violin/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_box.py b/plotly/graph_objs/violin/_box.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_box.py rename to plotly/graph_objs/violin/_box.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_hoverlabel.py b/plotly/graph_objs/violin/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_hoverlabel.py rename to plotly/graph_objs/violin/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_legendgrouptitle.py b/plotly/graph_objs/violin/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_legendgrouptitle.py rename to plotly/graph_objs/violin/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_line.py b/plotly/graph_objs/violin/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_line.py rename to plotly/graph_objs/violin/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_marker.py b/plotly/graph_objs/violin/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_marker.py rename to plotly/graph_objs/violin/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_meanline.py b/plotly/graph_objs/violin/_meanline.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_meanline.py rename to plotly/graph_objs/violin/_meanline.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_selected.py b/plotly/graph_objs/violin/_selected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_selected.py rename to plotly/graph_objs/violin/_selected.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_stream.py b/plotly/graph_objs/violin/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_stream.py rename to plotly/graph_objs/violin/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/_unselected.py b/plotly/graph_objs/violin/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/_unselected.py rename to plotly/graph_objs/violin/_unselected.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/box/__init__.py b/plotly/graph_objs/violin/box/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/box/__init__.py rename to plotly/graph_objs/violin/box/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/box/_line.py b/plotly/graph_objs/violin/box/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/box/_line.py rename to plotly/graph_objs/violin/box/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/hoverlabel/__init__.py b/plotly/graph_objs/violin/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/hoverlabel/__init__.py rename to plotly/graph_objs/violin/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/hoverlabel/_font.py b/plotly/graph_objs/violin/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/hoverlabel/_font.py rename to plotly/graph_objs/violin/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/__init__.py b/plotly/graph_objs/violin/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/__init__.py rename to plotly/graph_objs/violin/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/_font.py b/plotly/graph_objs/violin/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/legendgrouptitle/_font.py rename to plotly/graph_objs/violin/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/marker/__init__.py b/plotly/graph_objs/violin/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/marker/__init__.py rename to plotly/graph_objs/violin/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/marker/_line.py b/plotly/graph_objs/violin/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/marker/_line.py rename to plotly/graph_objs/violin/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/selected/__init__.py b/plotly/graph_objs/violin/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/selected/__init__.py rename to plotly/graph_objs/violin/selected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/selected/_marker.py b/plotly/graph_objs/violin/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/selected/_marker.py rename to plotly/graph_objs/violin/selected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/unselected/__init__.py b/plotly/graph_objs/violin/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/unselected/__init__.py rename to plotly/graph_objs/violin/unselected/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/violin/unselected/_marker.py b/plotly/graph_objs/violin/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/violin/unselected/_marker.py rename to plotly/graph_objs/violin/unselected/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/__init__.py b/plotly/graph_objs/volume/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/__init__.py rename to plotly/graph_objs/volume/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_caps.py b/plotly/graph_objs/volume/_caps.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_caps.py rename to plotly/graph_objs/volume/_caps.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_colorbar.py b/plotly/graph_objs/volume/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_colorbar.py rename to plotly/graph_objs/volume/_colorbar.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_contour.py b/plotly/graph_objs/volume/_contour.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_contour.py rename to plotly/graph_objs/volume/_contour.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_hoverlabel.py b/plotly/graph_objs/volume/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_hoverlabel.py rename to plotly/graph_objs/volume/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_legendgrouptitle.py b/plotly/graph_objs/volume/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_legendgrouptitle.py rename to plotly/graph_objs/volume/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_lighting.py b/plotly/graph_objs/volume/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_lighting.py rename to plotly/graph_objs/volume/_lighting.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_lightposition.py b/plotly/graph_objs/volume/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_lightposition.py rename to plotly/graph_objs/volume/_lightposition.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_slices.py b/plotly/graph_objs/volume/_slices.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_slices.py rename to plotly/graph_objs/volume/_slices.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_spaceframe.py b/plotly/graph_objs/volume/_spaceframe.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_spaceframe.py rename to plotly/graph_objs/volume/_spaceframe.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_stream.py b/plotly/graph_objs/volume/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_stream.py rename to plotly/graph_objs/volume/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/_surface.py b/plotly/graph_objs/volume/_surface.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/_surface.py rename to plotly/graph_objs/volume/_surface.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/__init__.py b/plotly/graph_objs/volume/caps/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/caps/__init__.py rename to plotly/graph_objs/volume/caps/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/_x.py b/plotly/graph_objs/volume/caps/_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/caps/_x.py rename to plotly/graph_objs/volume/caps/_x.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/_y.py b/plotly/graph_objs/volume/caps/_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/caps/_y.py rename to plotly/graph_objs/volume/caps/_y.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/caps/_z.py b/plotly/graph_objs/volume/caps/_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/caps/_z.py rename to plotly/graph_objs/volume/caps/_z.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/__init__.py b/plotly/graph_objs/volume/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/colorbar/__init__.py rename to plotly/graph_objs/volume/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickfont.py b/plotly/graph_objs/volume/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickfont.py rename to plotly/graph_objs/volume/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickformatstop.py b/plotly/graph_objs/volume/colorbar/_tickformatstop.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/colorbar/_tickformatstop.py rename to plotly/graph_objs/volume/colorbar/_tickformatstop.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/_title.py b/plotly/graph_objs/volume/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/colorbar/_title.py rename to plotly/graph_objs/volume/colorbar/_title.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/title/__init__.py b/plotly/graph_objs/volume/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/colorbar/title/__init__.py rename to plotly/graph_objs/volume/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/colorbar/title/_font.py b/plotly/graph_objs/volume/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/colorbar/title/_font.py rename to plotly/graph_objs/volume/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/hoverlabel/__init__.py b/plotly/graph_objs/volume/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/hoverlabel/__init__.py rename to plotly/graph_objs/volume/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/hoverlabel/_font.py b/plotly/graph_objs/volume/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/hoverlabel/_font.py rename to plotly/graph_objs/volume/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/__init__.py b/plotly/graph_objs/volume/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/__init__.py rename to plotly/graph_objs/volume/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/_font.py b/plotly/graph_objs/volume/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/legendgrouptitle/_font.py rename to plotly/graph_objs/volume/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/__init__.py b/plotly/graph_objs/volume/slices/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/slices/__init__.py rename to plotly/graph_objs/volume/slices/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/_x.py b/plotly/graph_objs/volume/slices/_x.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/slices/_x.py rename to plotly/graph_objs/volume/slices/_x.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/_y.py b/plotly/graph_objs/volume/slices/_y.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/slices/_y.py rename to plotly/graph_objs/volume/slices/_y.py diff --git a/packages/python/plotly/plotly/graph_objs/volume/slices/_z.py b/plotly/graph_objs/volume/slices/_z.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/volume/slices/_z.py rename to plotly/graph_objs/volume/slices/_z.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/__init__.py b/plotly/graph_objs/waterfall/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/__init__.py rename to plotly/graph_objs/waterfall/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_connector.py b/plotly/graph_objs/waterfall/_connector.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_connector.py rename to plotly/graph_objs/waterfall/_connector.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_decreasing.py b/plotly/graph_objs/waterfall/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_decreasing.py rename to plotly/graph_objs/waterfall/_decreasing.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_hoverlabel.py b/plotly/graph_objs/waterfall/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_hoverlabel.py rename to plotly/graph_objs/waterfall/_hoverlabel.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_increasing.py b/plotly/graph_objs/waterfall/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_increasing.py rename to plotly/graph_objs/waterfall/_increasing.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_insidetextfont.py b/plotly/graph_objs/waterfall/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_insidetextfont.py rename to plotly/graph_objs/waterfall/_insidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_legendgrouptitle.py b/plotly/graph_objs/waterfall/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_legendgrouptitle.py rename to plotly/graph_objs/waterfall/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_outsidetextfont.py b/plotly/graph_objs/waterfall/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_outsidetextfont.py rename to plotly/graph_objs/waterfall/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_stream.py b/plotly/graph_objs/waterfall/_stream.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_stream.py rename to plotly/graph_objs/waterfall/_stream.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_textfont.py b/plotly/graph_objs/waterfall/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_textfont.py rename to plotly/graph_objs/waterfall/_textfont.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/_totals.py b/plotly/graph_objs/waterfall/_totals.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/_totals.py rename to plotly/graph_objs/waterfall/_totals.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/connector/__init__.py b/plotly/graph_objs/waterfall/connector/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/connector/__init__.py rename to plotly/graph_objs/waterfall/connector/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/connector/_line.py b/plotly/graph_objs/waterfall/connector/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/connector/_line.py rename to plotly/graph_objs/waterfall/connector/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/__init__.py b/plotly/graph_objs/waterfall/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/decreasing/__init__.py rename to plotly/graph_objs/waterfall/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/_marker.py b/plotly/graph_objs/waterfall/decreasing/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/decreasing/_marker.py rename to plotly/graph_objs/waterfall/decreasing/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/__init__.py b/plotly/graph_objs/waterfall/decreasing/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/__init__.py rename to plotly/graph_objs/waterfall/decreasing/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/_line.py b/plotly/graph_objs/waterfall/decreasing/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/decreasing/marker/_line.py rename to plotly/graph_objs/waterfall/decreasing/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/__init__.py b/plotly/graph_objs/waterfall/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/__init__.py rename to plotly/graph_objs/waterfall/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/_font.py b/plotly/graph_objs/waterfall/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/hoverlabel/_font.py rename to plotly/graph_objs/waterfall/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/__init__.py b/plotly/graph_objs/waterfall/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/increasing/__init__.py rename to plotly/graph_objs/waterfall/increasing/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/_marker.py b/plotly/graph_objs/waterfall/increasing/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/increasing/_marker.py rename to plotly/graph_objs/waterfall/increasing/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/__init__.py b/plotly/graph_objs/waterfall/increasing/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/__init__.py rename to plotly/graph_objs/waterfall/increasing/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/_line.py b/plotly/graph_objs/waterfall/increasing/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/increasing/marker/_line.py rename to plotly/graph_objs/waterfall/increasing/marker/_line.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/__init__.py b/plotly/graph_objs/waterfall/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/__init__.py rename to plotly/graph_objs/waterfall/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/_font.py b/plotly/graph_objs/waterfall/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/legendgrouptitle/_font.py rename to plotly/graph_objs/waterfall/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/totals/__init__.py b/plotly/graph_objs/waterfall/totals/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/totals/__init__.py rename to plotly/graph_objs/waterfall/totals/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/totals/_marker.py b/plotly/graph_objs/waterfall/totals/_marker.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/totals/_marker.py rename to plotly/graph_objs/waterfall/totals/_marker.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/__init__.py b/plotly/graph_objs/waterfall/totals/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/__init__.py rename to plotly/graph_objs/waterfall/totals/marker/__init__.py diff --git a/packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/_line.py b/plotly/graph_objs/waterfall/totals/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/graph_objs/waterfall/totals/marker/_line.py rename to plotly/graph_objs/waterfall/totals/marker/_line.py diff --git a/packages/python/plotly/plotly/grid_objs.py b/plotly/grid_objs.py similarity index 100% rename from packages/python/plotly/plotly/grid_objs.py rename to plotly/grid_objs.py diff --git a/packages/python/plotly/plotly/io/__init__.py b/plotly/io/__init__.py similarity index 100% rename from packages/python/plotly/plotly/io/__init__.py rename to plotly/io/__init__.py diff --git a/packages/python/plotly/plotly/io/_base_renderers.py b/plotly/io/_base_renderers.py similarity index 100% rename from packages/python/plotly/plotly/io/_base_renderers.py rename to plotly/io/_base_renderers.py diff --git a/packages/python/plotly/plotly/io/_html.py b/plotly/io/_html.py similarity index 100% rename from packages/python/plotly/plotly/io/_html.py rename to plotly/io/_html.py diff --git a/packages/python/plotly/plotly/io/_json.py b/plotly/io/_json.py similarity index 100% rename from packages/python/plotly/plotly/io/_json.py rename to plotly/io/_json.py diff --git a/packages/python/plotly/plotly/io/_kaleido.py b/plotly/io/_kaleido.py similarity index 100% rename from packages/python/plotly/plotly/io/_kaleido.py rename to plotly/io/_kaleido.py diff --git a/packages/python/plotly/plotly/io/_orca.py b/plotly/io/_orca.py similarity index 100% rename from packages/python/plotly/plotly/io/_orca.py rename to plotly/io/_orca.py diff --git a/packages/python/plotly/plotly/io/_renderers.py b/plotly/io/_renderers.py similarity index 100% rename from packages/python/plotly/plotly/io/_renderers.py rename to plotly/io/_renderers.py diff --git a/packages/python/plotly/plotly/io/_sg_scraper.py b/plotly/io/_sg_scraper.py similarity index 100% rename from packages/python/plotly/plotly/io/_sg_scraper.py rename to plotly/io/_sg_scraper.py diff --git a/packages/python/plotly/plotly/io/_templates.py b/plotly/io/_templates.py similarity index 100% rename from packages/python/plotly/plotly/io/_templates.py rename to plotly/io/_templates.py diff --git a/packages/python/plotly/plotly/io/_utils.py b/plotly/io/_utils.py similarity index 100% rename from packages/python/plotly/plotly/io/_utils.py rename to plotly/io/_utils.py diff --git a/packages/python/plotly/plotly/io/base_renderers.py b/plotly/io/base_renderers.py similarity index 100% rename from packages/python/plotly/plotly/io/base_renderers.py rename to plotly/io/base_renderers.py diff --git a/packages/python/plotly/plotly/io/json.py b/plotly/io/json.py similarity index 100% rename from packages/python/plotly/plotly/io/json.py rename to plotly/io/json.py diff --git a/packages/python/plotly/plotly/io/kaleido.py b/plotly/io/kaleido.py similarity index 100% rename from packages/python/plotly/plotly/io/kaleido.py rename to plotly/io/kaleido.py diff --git a/packages/python/plotly/plotly/io/orca.py b/plotly/io/orca.py similarity index 100% rename from packages/python/plotly/plotly/io/orca.py rename to plotly/io/orca.py diff --git a/packages/python/plotly/plotly/matplotlylib/__init__.py b/plotly/matplotlylib/__init__.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/__init__.py rename to plotly/matplotlylib/__init__.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/__init__.py b/plotly/matplotlylib/mplexporter/__init__.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/__init__.py rename to plotly/matplotlylib/mplexporter/__init__.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/exporter.py b/plotly/matplotlylib/mplexporter/exporter.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/exporter.py rename to plotly/matplotlylib/mplexporter/exporter.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/__init__.py b/plotly/matplotlylib/mplexporter/renderers/__init__.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/__init__.py rename to plotly/matplotlylib/mplexporter/renderers/__init__.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/base.py b/plotly/matplotlylib/mplexporter/renderers/base.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/base.py rename to plotly/matplotlylib/mplexporter/renderers/base.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/fake_renderer.py b/plotly/matplotlylib/mplexporter/renderers/fake_renderer.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/fake_renderer.py rename to plotly/matplotlylib/mplexporter/renderers/fake_renderer.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/vega_renderer.py b/plotly/matplotlylib/mplexporter/renderers/vega_renderer.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/vega_renderer.py rename to plotly/matplotlylib/mplexporter/renderers/vega_renderer.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/vincent_renderer.py b/plotly/matplotlylib/mplexporter/renderers/vincent_renderer.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/renderers/vincent_renderer.py rename to plotly/matplotlylib/mplexporter/renderers/vincent_renderer.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/tests/__init__.py b/plotly/matplotlylib/mplexporter/tests/__init__.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/tests/__init__.py rename to plotly/matplotlylib/mplexporter/tests/__init__.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/tests/test_basic.py b/plotly/matplotlylib/mplexporter/tests/test_basic.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/tests/test_basic.py rename to plotly/matplotlylib/mplexporter/tests/test_basic.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/tests/test_utils.py b/plotly/matplotlylib/mplexporter/tests/test_utils.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/tests/test_utils.py rename to plotly/matplotlylib/mplexporter/tests/test_utils.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/tools.py b/plotly/matplotlylib/mplexporter/tools.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/tools.py rename to plotly/matplotlylib/mplexporter/tools.py diff --git a/packages/python/plotly/plotly/matplotlylib/mplexporter/utils.py b/plotly/matplotlylib/mplexporter/utils.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mplexporter/utils.py rename to plotly/matplotlylib/mplexporter/utils.py diff --git a/packages/python/plotly/plotly/matplotlylib/mpltools.py b/plotly/matplotlylib/mpltools.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/mpltools.py rename to plotly/matplotlylib/mpltools.py diff --git a/packages/python/plotly/plotly/matplotlylib/renderer.py b/plotly/matplotlylib/renderer.py similarity index 100% rename from packages/python/plotly/plotly/matplotlylib/renderer.py rename to plotly/matplotlylib/renderer.py diff --git a/packages/python/plotly/plotly/missing_anywidget.py b/plotly/missing_anywidget.py similarity index 100% rename from packages/python/plotly/plotly/missing_anywidget.py rename to plotly/missing_anywidget.py diff --git a/packages/python/plotly/plotly/offline/__init__.py b/plotly/offline/__init__.py similarity index 100% rename from packages/python/plotly/plotly/offline/__init__.py rename to plotly/offline/__init__.py diff --git a/packages/python/plotly/plotly/offline/_plotlyjs_version.py b/plotly/offline/_plotlyjs_version.py similarity index 100% rename from packages/python/plotly/plotly/offline/_plotlyjs_version.py rename to plotly/offline/_plotlyjs_version.py diff --git a/packages/python/plotly/plotly/offline/offline.py b/plotly/offline/offline.py similarity index 100% rename from packages/python/plotly/plotly/offline/offline.py rename to plotly/offline/offline.py diff --git a/packages/python/plotly/plotly/optional_imports.py b/plotly/optional_imports.py similarity index 100% rename from packages/python/plotly/plotly/optional_imports.py rename to plotly/optional_imports.py diff --git a/packages/python/plotly/plotly/package_data/datasets/carshare.csv.gz b/plotly/package_data/datasets/carshare.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/carshare.csv.gz rename to plotly/package_data/datasets/carshare.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/election.csv.gz b/plotly/package_data/datasets/election.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/election.csv.gz rename to plotly/package_data/datasets/election.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/election.geojson.gz b/plotly/package_data/datasets/election.geojson.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/election.geojson.gz rename to plotly/package_data/datasets/election.geojson.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/experiment.csv.gz b/plotly/package_data/datasets/experiment.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/experiment.csv.gz rename to plotly/package_data/datasets/experiment.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/gapminder.csv.gz b/plotly/package_data/datasets/gapminder.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/gapminder.csv.gz rename to plotly/package_data/datasets/gapminder.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/iris.csv.gz b/plotly/package_data/datasets/iris.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/iris.csv.gz rename to plotly/package_data/datasets/iris.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/medals.csv.gz b/plotly/package_data/datasets/medals.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/medals.csv.gz rename to plotly/package_data/datasets/medals.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/stocks.csv.gz b/plotly/package_data/datasets/stocks.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/stocks.csv.gz rename to plotly/package_data/datasets/stocks.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/tips.csv.gz b/plotly/package_data/datasets/tips.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/tips.csv.gz rename to plotly/package_data/datasets/tips.csv.gz diff --git a/packages/python/plotly/plotly/package_data/datasets/wind.csv.gz b/plotly/package_data/datasets/wind.csv.gz similarity index 100% rename from packages/python/plotly/plotly/package_data/datasets/wind.csv.gz rename to plotly/package_data/datasets/wind.csv.gz diff --git a/packages/python/plotly/plotly/package_data/plotly.min.js b/plotly/package_data/plotly.min.js similarity index 100% rename from packages/python/plotly/plotly/package_data/plotly.min.js rename to plotly/package_data/plotly.min.js diff --git a/packages/python/plotly/plotly/package_data/templates/ggplot2.json b/plotly/package_data/templates/ggplot2.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/ggplot2.json rename to plotly/package_data/templates/ggplot2.json diff --git a/packages/python/plotly/plotly/package_data/templates/gridon.json b/plotly/package_data/templates/gridon.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/gridon.json rename to plotly/package_data/templates/gridon.json diff --git a/packages/python/plotly/plotly/package_data/templates/plotly.json b/plotly/package_data/templates/plotly.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/plotly.json rename to plotly/package_data/templates/plotly.json diff --git a/packages/python/plotly/plotly/package_data/templates/plotly_dark.json b/plotly/package_data/templates/plotly_dark.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/plotly_dark.json rename to plotly/package_data/templates/plotly_dark.json diff --git a/packages/python/plotly/plotly/package_data/templates/plotly_white.json b/plotly/package_data/templates/plotly_white.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/plotly_white.json rename to plotly/package_data/templates/plotly_white.json diff --git a/packages/python/plotly/plotly/package_data/templates/presentation.json b/plotly/package_data/templates/presentation.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/presentation.json rename to plotly/package_data/templates/presentation.json diff --git a/packages/python/plotly/plotly/package_data/templates/seaborn.json b/plotly/package_data/templates/seaborn.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/seaborn.json rename to plotly/package_data/templates/seaborn.json diff --git a/packages/python/plotly/plotly/package_data/templates/simple_white.json b/plotly/package_data/templates/simple_white.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/simple_white.json rename to plotly/package_data/templates/simple_white.json diff --git a/packages/python/plotly/plotly/package_data/templates/xgridoff.json b/plotly/package_data/templates/xgridoff.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/xgridoff.json rename to plotly/package_data/templates/xgridoff.json diff --git a/packages/python/plotly/plotly/package_data/templates/ygridoff.json b/plotly/package_data/templates/ygridoff.json similarity index 100% rename from packages/python/plotly/plotly/package_data/templates/ygridoff.json rename to plotly/package_data/templates/ygridoff.json diff --git a/packages/python/plotly/plotly/plotly/__init__.py b/plotly/plotly/__init__.py similarity index 100% rename from packages/python/plotly/plotly/plotly/__init__.py rename to plotly/plotly/__init__.py diff --git a/packages/python/plotly/plotly/plotly/chunked_requests.py b/plotly/plotly/chunked_requests.py similarity index 100% rename from packages/python/plotly/plotly/plotly/chunked_requests.py rename to plotly/plotly/chunked_requests.py diff --git a/packages/python/plotly/plotly/presentation_objs.py b/plotly/presentation_objs.py similarity index 100% rename from packages/python/plotly/plotly/presentation_objs.py rename to plotly/presentation_objs.py diff --git a/packages/python/plotly/plotly/serializers.py b/plotly/serializers.py similarity index 100% rename from packages/python/plotly/plotly/serializers.py rename to plotly/serializers.py diff --git a/packages/python/plotly/plotly/session.py b/plotly/session.py similarity index 100% rename from packages/python/plotly/plotly/session.py rename to plotly/session.py diff --git a/packages/python/plotly/plotly/shapeannotation.py b/plotly/shapeannotation.py similarity index 100% rename from packages/python/plotly/plotly/shapeannotation.py rename to plotly/shapeannotation.py diff --git a/packages/python/plotly/plotly/subplots.py b/plotly/subplots.py similarity index 100% rename from packages/python/plotly/plotly/subplots.py rename to plotly/subplots.py diff --git a/packages/python/plotly/plotly/tests/__init__.py b/plotly/tests/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/__init__.py rename to plotly/tests/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/__init__.py b/plotly/tests/test_core/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/__init__.py rename to plotly/tests/test_core/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_colors/__init__.py b/plotly/tests/test_core/test_colors/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_colors/__init__.py rename to plotly/tests/test_core/test_colors/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_colors/test_colors.py b/plotly/tests/test_core/test_colors/test_colors.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_colors/test_colors.py rename to plotly/tests/test_core/test_colors/test_colors.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_errors/test_dict_path_errors.py b/plotly/tests/test_core/test_errors/test_dict_path_errors.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_errors/test_dict_path_errors.py rename to plotly/tests/test_core/test_errors/test_dict_path_errors.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/__init__.py b/plotly/tests/test_core/test_figure_messages/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/__init__.py rename to plotly/tests/test_core/test_figure_messages/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_add_traces.py b/plotly/tests/test_core/test_figure_messages/test_add_traces.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_add_traces.py rename to plotly/tests/test_core/test_figure_messages/test_add_traces.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_batch_animate.py b/plotly/tests/test_core/test_figure_messages/test_batch_animate.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_batch_animate.py rename to plotly/tests/test_core/test_figure_messages/test_batch_animate.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_move_delete_traces.py b/plotly/tests/test_core/test_figure_messages/test_move_delete_traces.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_move_delete_traces.py rename to plotly/tests/test_core/test_figure_messages/test_move_delete_traces.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_on_change.py b/plotly/tests/test_core/test_figure_messages/test_on_change.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_on_change.py rename to plotly/tests/test_core/test_figure_messages/test_on_change.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py b/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py rename to plotly/tests/test_core/test_figure_messages/test_plotly_relayout.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_plotly_restyle.py b/plotly/tests/test_core/test_figure_messages/test_plotly_restyle.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_plotly_restyle.py rename to plotly/tests/test_core/test_figure_messages/test_plotly_restyle.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_plotly_update.py b/plotly/tests/test_core/test_figure_messages/test_plotly_update.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_messages/test_plotly_update.py rename to plotly/tests/test_core/test_figure_messages/test_plotly_update.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_widget_backend/__init__.py b/plotly/tests/test_core/test_figure_widget_backend/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_widget_backend/__init__.py rename to plotly/tests/test_core/test_figure_widget_backend/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_widget_backend/test_missing_anywidget.py b/plotly/tests/test_core/test_figure_widget_backend/test_missing_anywidget.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_widget_backend/test_missing_anywidget.py rename to plotly/tests/test_core/test_figure_widget_backend/test_missing_anywidget.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_figure_widget_backend/test_validate_no_frames.py b/plotly/tests/test_core/test_figure_widget_backend/test_validate_no_frames.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_figure_widget_backend/test_validate_no_frames.py rename to plotly/tests/test_core/test_figure_widget_backend/test_validate_no_frames.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/__init__.py b/plotly/tests/test_core/test_graph_objs/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/__init__.py rename to plotly/tests/test_core/test_graph_objs/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_annotations.py b/plotly/tests/test_core/test_graph_objs/test_annotations.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_annotations.py rename to plotly/tests/test_core/test_graph_objs/test_annotations.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_append_trace.py b/plotly/tests/test_core/test_graph_objs/test_append_trace.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_append_trace.py rename to plotly/tests/test_core/test_graph_objs/test_append_trace.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_constructor.py b/plotly/tests/test_core/test_graph_objs/test_constructor.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_constructor.py rename to plotly/tests/test_core/test_graph_objs/test_constructor.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_data.py b/plotly/tests/test_core/test_graph_objs/test_data.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_data.py rename to plotly/tests/test_core/test_graph_objs/test_data.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_error_bars.py b/plotly/tests/test_core/test_graph_objs/test_error_bars.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_error_bars.py rename to plotly/tests/test_core/test_graph_objs/test_error_bars.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_figure.py b/plotly/tests/test_core/test_graph_objs/test_figure.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_figure.py rename to plotly/tests/test_core/test_graph_objs/test_figure.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_figure_properties.py b/plotly/tests/test_core/test_graph_objs/test_figure_properties.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_figure_properties.py rename to plotly/tests/test_core/test_graph_objs/test_figure_properties.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_frames.py b/plotly/tests/test_core/test_graph_objs/test_frames.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_frames.py rename to plotly/tests/test_core/test_graph_objs/test_frames.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_graph_objs.py b/plotly/tests/test_core/test_graph_objs/test_graph_objs.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_graph_objs.py rename to plotly/tests/test_core/test_graph_objs/test_graph_objs.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_instantiate_hierarchy.py b/plotly/tests/test_core/test_graph_objs/test_instantiate_hierarchy.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_instantiate_hierarchy.py rename to plotly/tests/test_core/test_graph_objs/test_instantiate_hierarchy.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_layout_subplots.py b/plotly/tests/test_core/test_graph_objs/test_layout_subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_layout_subplots.py rename to plotly/tests/test_core/test_graph_objs/test_layout_subplots.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_properties_validated.py b/plotly/tests/test_core/test_graph_objs/test_properties_validated.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_properties_validated.py rename to plotly/tests/test_core/test_graph_objs/test_properties_validated.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_property_assignment.py b/plotly/tests/test_core/test_graph_objs/test_property_assignment.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_property_assignment.py rename to plotly/tests/test_core/test_graph_objs/test_property_assignment.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_repr.py b/plotly/tests/test_core/test_graph_objs/test_repr.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_repr.py rename to plotly/tests/test_core/test_graph_objs/test_repr.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_scatter.py b/plotly/tests/test_core/test_graph_objs/test_scatter.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_scatter.py rename to plotly/tests/test_core/test_graph_objs/test_scatter.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_template.py b/plotly/tests/test_core/test_graph_objs/test_template.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_template.py rename to plotly/tests/test_core/test_graph_objs/test_template.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_to_ordered_dict.py b/plotly/tests/test_core/test_graph_objs/test_to_ordered_dict.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_to_ordered_dict.py rename to plotly/tests/test_core/test_graph_objs/test_to_ordered_dict.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_update.py b/plotly/tests/test_core/test_graph_objs/test_update.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_update.py rename to plotly/tests/test_core/test_graph_objs/test_update.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_validate.py b/plotly/tests/test_core/test_graph_objs/test_validate.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_graph_objs/test_validate.py rename to plotly/tests/test_core/test_graph_objs/test_validate.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_offline/test_offline.py b/plotly/tests/test_core/test_offline/test_offline.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_offline/test_offline.py rename to plotly/tests/test_core/test_offline/test_offline.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_optional_imports/__init__.py b/plotly/tests/test_core/test_optional_imports/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_optional_imports/__init__.py rename to plotly/tests/test_core/test_optional_imports/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_optional_imports/exploding_module.py b/plotly/tests/test_core/test_optional_imports/exploding_module.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_optional_imports/exploding_module.py rename to plotly/tests/test_core/test_optional_imports/exploding_module.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_optional_imports/test_optional_imports.py b/plotly/tests/test_core/test_optional_imports/test_optional_imports.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_optional_imports/test_optional_imports.py rename to plotly/tests/test_core/test_optional_imports/test_optional_imports.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_subplots/__init__.py b/plotly/tests/test_core/test_subplots/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_subplots/__init__.py rename to plotly/tests/test_core/test_subplots/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_subplots/test_find_nonempty_subplots.py b/plotly/tests/test_core/test_subplots/test_find_nonempty_subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_subplots/test_find_nonempty_subplots.py rename to plotly/tests/test_core/test_subplots/test_find_nonempty_subplots.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_subplots/test_get_subplot.py b/plotly/tests/test_core/test_subplots/test_get_subplot.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_subplots/test_get_subplot.py rename to plotly/tests/test_core/test_subplots/test_get_subplot.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_subplots/test_make_subplots.py b/plotly/tests/test_core/test_subplots/test_make_subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_subplots/test_make_subplots.py rename to plotly/tests/test_core/test_subplots/test_make_subplots.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/__init__.py b/plotly/tests/test_core/test_update_objects/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/__init__.py rename to plotly/tests/test_core/test_update_objects/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/test_row_col_subplot_addressing.py b/plotly/tests/test_core/test_update_objects/test_row_col_subplot_addressing.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/test_row_col_subplot_addressing.py rename to plotly/tests/test_core/test_update_objects/test_row_col_subplot_addressing.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/test_selector_matches.py b/plotly/tests/test_core/test_update_objects/test_selector_matches.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/test_selector_matches.py rename to plotly/tests/test_core/test_update_objects/test_selector_matches.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_annotations.py b/plotly/tests/test_core/test_update_objects/test_update_annotations.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_annotations.py rename to plotly/tests/test_core/test_update_objects/test_update_annotations.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_layout.py b/plotly/tests/test_core/test_update_objects/test_update_layout.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_layout.py rename to plotly/tests/test_core/test_update_objects/test_update_layout.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_subplots.py b/plotly/tests/test_core/test_update_objects/test_update_subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_subplots.py rename to plotly/tests/test_core/test_update_objects/test_update_subplots.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_traces.py b/plotly/tests/test_core/test_update_objects/test_update_traces.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_update_objects/test_update_traces.py rename to plotly/tests/test_core/test_update_objects/test_update_traces.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_utils/__init__.py b/plotly/tests/test_core/test_utils/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_utils/__init__.py rename to plotly/tests/test_core/test_utils/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_core/test_utils/test_utils.py b/plotly/tests/test_core/test_utils/test_utils.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_core/test_utils/test_utils.py rename to plotly/tests/test_core/test_utils/test_utils.py diff --git a/packages/python/plotly/plotly/tests/test_io/test_deepcopy_pickle.py b/plotly/tests/test_io/test_deepcopy_pickle.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_io/test_deepcopy_pickle.py rename to plotly/tests/test_io/test_deepcopy_pickle.py diff --git a/packages/python/plotly/plotly/tests/test_io/test_html.py b/plotly/tests/test_io/test_html.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_io/test_html.py rename to plotly/tests/test_io/test_html.py diff --git a/packages/python/plotly/plotly/tests/test_io/test_pathlib.py b/plotly/tests/test_io/test_pathlib.py similarity index 95% rename from packages/python/plotly/plotly/tests/test_io/test_pathlib.py rename to plotly/tests/test_io/test_pathlib.py index 092ffe6a9a6..67c7ca98a88 100644 --- a/packages/python/plotly/plotly/tests/test_io/test_pathlib.py +++ b/plotly/tests/test_io/test_pathlib.py @@ -1,7 +1,7 @@ """Test compatibility with pathlib.Path. See also relevant tests in - packages/python/plotly/plotly/tests/test_optional/test_kaleido/test_kaleido.py + plotly/tests/test_optional/test_kaleido/test_kaleido.py """ from unittest import mock diff --git a/packages/python/plotly/plotly/tests/test_io/test_renderers.py b/plotly/tests/test_io/test_renderers.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_io/test_renderers.py rename to plotly/tests/test_io/test_renderers.py diff --git a/packages/python/plotly/plotly/tests/test_io/test_to_from_json.py b/plotly/tests/test_io/test_to_from_json.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_io/test_to_from_json.py rename to plotly/tests/test_io/test_to_from_json.py diff --git a/packages/python/plotly/plotly/tests/test_io/test_to_from_plotly_json.py b/plotly/tests/test_io/test_to_from_plotly_json.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_io/test_to_from_plotly_json.py rename to plotly/tests/test_io/test_to_from_plotly_json.py diff --git a/packages/python/plotly/plotly/tests/test_optional/__init__.py b/plotly/tests/test_optional/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/__init__.py rename to plotly/tests/test_optional/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/optional_utils.py b/plotly/tests/test_optional/optional_utils.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/optional_utils.py rename to plotly/tests/test_optional/optional_utils.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_autoshapes/__init__.py b/plotly/tests/test_optional/test_autoshapes/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_autoshapes/__init__.py rename to plotly/tests/test_optional/test_autoshapes/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_autoshapes/common.py b/plotly/tests/test_optional/test_autoshapes/common.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_autoshapes/common.py rename to plotly/tests/test_optional/test_autoshapes/common.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_autoshapes/test_annotated_shapes.py b/plotly/tests/test_optional/test_autoshapes/test_annotated_shapes.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_autoshapes/test_annotated_shapes.py rename to plotly/tests/test_optional/test_autoshapes/test_annotated_shapes.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_autoshapes/test_annotated_shapes_annotations.json b/plotly/tests/test_optional/test_autoshapes/test_annotated_shapes_annotations.json similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_autoshapes/test_annotated_shapes_annotations.json rename to plotly/tests/test_optional/test_autoshapes/test_annotated_shapes_annotations.json diff --git a/packages/python/plotly/plotly/tests/test_optional/test_autoshapes/test_axis_span_shapes.py b/plotly/tests/test_optional/test_autoshapes/test_axis_span_shapes.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_autoshapes/test_axis_span_shapes.py rename to plotly/tests/test_optional/test_autoshapes/test_axis_span_shapes.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_figure_factory/__init__.py b/plotly/tests/test_optional/test_figure_factory/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_figure_factory/__init__.py rename to plotly/tests/test_optional/test_figure_factory/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_figure_factory/test_figure_factory.py b/plotly/tests/test_optional/test_figure_factory/test_figure_factory.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_figure_factory/test_figure_factory.py rename to plotly/tests/test_optional/test_figure_factory/test_figure_factory.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_graph_objs/__init__.py b/plotly/tests/test_optional/test_graph_objs/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_graph_objs/__init__.py rename to plotly/tests/test_optional/test_graph_objs/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_graph_objs/test_skipped_b64_keys.py b/plotly/tests/test_optional/test_graph_objs/test_skipped_b64_keys.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_graph_objs/test_skipped_b64_keys.py rename to plotly/tests/test_optional/test_graph_objs/test_skipped_b64_keys.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_kaleido/__init__.py b/plotly/tests/test_optional/test_kaleido/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_kaleido/__init__.py rename to plotly/tests/test_optional/test_kaleido/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_kaleido/test_kaleido.py b/plotly/tests/test_optional/test_kaleido/test_kaleido.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_kaleido/test_kaleido.py rename to plotly/tests/test_optional/test_kaleido/test_kaleido.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/__init__.py b/plotly/tests/test_optional/test_matplotlylib/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/__init__.py rename to plotly/tests/test_optional/test_matplotlylib/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/__init__.py b/plotly/tests/test_optional/test_matplotlylib/data/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/__init__.py rename to plotly/tests/test_optional/test_matplotlylib/data/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/annotations.py b/plotly/tests/test_optional/test_matplotlylib/data/annotations.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/annotations.py rename to plotly/tests/test_optional/test_matplotlylib/data/annotations.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/axis_scales.py b/plotly/tests/test_optional/test_matplotlylib/data/axis_scales.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/axis_scales.py rename to plotly/tests/test_optional/test_matplotlylib/data/axis_scales.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/bars.py b/plotly/tests/test_optional/test_matplotlylib/data/bars.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/bars.py rename to plotly/tests/test_optional/test_matplotlylib/data/bars.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/data.py b/plotly/tests/test_optional/test_matplotlylib/data/data.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/data.py rename to plotly/tests/test_optional/test_matplotlylib/data/data.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/lines.py b/plotly/tests/test_optional/test_matplotlylib/data/lines.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/lines.py rename to plotly/tests/test_optional/test_matplotlylib/data/lines.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/scatter.py b/plotly/tests/test_optional/test_matplotlylib/data/scatter.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/scatter.py rename to plotly/tests/test_optional/test_matplotlylib/data/scatter.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/subplots.py b/plotly/tests/test_optional/test_matplotlylib/data/subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/data/subplots.py rename to plotly/tests/test_optional/test_matplotlylib/data/subplots.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_annotations.py b/plotly/tests/test_optional/test_matplotlylib/test_annotations.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_annotations.py rename to plotly/tests/test_optional/test_matplotlylib/test_annotations.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_axis_scales.py b/plotly/tests/test_optional/test_matplotlylib/test_axis_scales.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_axis_scales.py rename to plotly/tests/test_optional/test_matplotlylib/test_axis_scales.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_bars.py b/plotly/tests/test_optional/test_matplotlylib/test_bars.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_bars.py rename to plotly/tests/test_optional/test_matplotlylib/test_bars.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_data.py b/plotly/tests/test_optional/test_matplotlylib/test_data.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_data.py rename to plotly/tests/test_optional/test_matplotlylib/test_data.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_date_times.py b/plotly/tests/test_optional/test_matplotlylib/test_date_times.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_date_times.py rename to plotly/tests/test_optional/test_matplotlylib/test_date_times.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_lines.py b/plotly/tests/test_optional/test_matplotlylib/test_lines.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_lines.py rename to plotly/tests/test_optional/test_matplotlylib/test_lines.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_scatter.py b/plotly/tests/test_optional/test_matplotlylib/test_scatter.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_scatter.py rename to plotly/tests/test_optional/test_matplotlylib/test_scatter.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_subplots.py b/plotly/tests/test_optional/test_matplotlylib/test_subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_matplotlylib/test_subplots.py rename to plotly/tests/test_optional/test_matplotlylib/test_subplots.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_offline/__init__.py b/plotly/tests/test_optional/test_offline/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_offline/__init__.py rename to plotly/tests/test_optional/test_offline/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_offline/test_offline.py b/plotly/tests/test_optional/test_offline/test_offline.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_offline/test_offline.py rename to plotly/tests/test_optional/test_offline/test_offline.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/__init__.py b/plotly/tests/test_optional/test_px/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/__init__.py rename to plotly/tests/test_optional/test_px/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/conftest.py b/plotly/tests/test_optional/test_px/conftest.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/conftest.py rename to plotly/tests/test_optional/test_px/conftest.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_colors.py b/plotly/tests/test_optional/test_px/test_colors.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_colors.py rename to plotly/tests/test_optional/test_px/test_colors.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_facets.py b/plotly/tests/test_optional/test_px/test_facets.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_facets.py rename to plotly/tests/test_optional/test_px/test_facets.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_imshow.py b/plotly/tests/test_optional/test_px/test_imshow.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_imshow.py rename to plotly/tests/test_optional/test_px/test_imshow.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_marginals.py b/plotly/tests/test_optional/test_px/test_marginals.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_marginals.py rename to plotly/tests/test_optional/test_px/test_marginals.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_pandas_backend.py b/plotly/tests/test_optional/test_px/test_pandas_backend.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_pandas_backend.py rename to plotly/tests/test_optional/test_px/test_pandas_backend.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px.py b/plotly/tests/test_optional/test_px/test_px.py similarity index 95% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_px.py rename to plotly/tests/test_optional/test_px/test_px.py index e7a090bde21..185dcf5afca 100644 --- a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px.py +++ b/plotly/tests/test_optional/test_px/test_px.py @@ -375,3 +375,22 @@ def test_empty_df_int64(backend): ) # to_dict() should not raise an exception fig.to_dict() + + +@pytest.mark.parametrize("return_type", ["pandas", "polars", "pyarrow"]) +def test_load_px_data(return_type): + # Test that all px.data functions can be called without error + data_func_names = [ + f + for f in dir(px.data) + if not f.startswith("_") + and callable(getattr(px.data, f)) + and not f == "import_module" + ] + for fname in data_func_names: + if fname == "election_geojson": + # As a geojson file, election_geojson does not support the return_type argument + df = getattr(px.data, fname)() + else: + df = getattr(px.data, fname)(return_type=return_type) + assert len(df) > 0 diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_functions.py b/plotly/tests/test_optional/test_px/test_px_functions.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_px_functions.py rename to plotly/tests/test_optional/test_px/test_px_functions.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_hover.py b/plotly/tests/test_optional/test_px/test_px_hover.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_px_hover.py rename to plotly/tests/test_optional/test_px/test_px_hover.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py b/plotly/tests/test_optional/test_px/test_px_input.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py rename to plotly/tests/test_optional/test_px/test_px_input.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_wide.py b/plotly/tests/test_optional/test_px/test_px_wide.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_px_wide.py rename to plotly/tests/test_optional/test_px/test_px_wide.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_trendline.py b/plotly/tests/test_optional/test_px/test_trendline.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_px/test_trendline.py rename to plotly/tests/test_optional/test_px/test_trendline.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_subplots/__init__.py b/plotly/tests/test_optional/test_subplots/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_subplots/__init__.py rename to plotly/tests/test_optional/test_subplots/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_subplots/test_make_subplots.py b/plotly/tests/test_optional/test_subplots/test_make_subplots.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_subplots/test_make_subplots.py rename to plotly/tests/test_optional/test_subplots/test_make_subplots.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_tools/__init__.py b/plotly/tests/test_optional/test_tools/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_tools/__init__.py rename to plotly/tests/test_optional/test_tools/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_tools/test_figure_factory.py b/plotly/tests/test_optional/test_tools/test_figure_factory.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_tools/test_figure_factory.py rename to plotly/tests/test_optional/test_tools/test_figure_factory.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_utils/__init__.py b/plotly/tests/test_optional/test_utils/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_utils/__init__.py rename to plotly/tests/test_optional/test_utils/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_optional/test_utils/test_utils.py b/plotly/tests/test_optional/test_utils/test_utils.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_optional/test_utils/test_utils.py rename to plotly/tests/test_optional/test_utils/test_utils.py diff --git a/packages/python/plotly/plotly/tests/test_orca/__init__.py b/plotly/tests/test_orca/__init__.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/__init__.py rename to plotly/tests/test_orca/__init__.py diff --git a/packages/python/plotly/plotly/tests/test_orca/images/darwin/fig1.eps b/plotly/tests/test_orca/images/darwin/fig1.eps similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/images/darwin/fig1.eps rename to plotly/tests/test_orca/images/darwin/fig1.eps diff --git a/packages/python/plotly/plotly/tests/test_orca/images/darwin/latexfig.eps b/plotly/tests/test_orca/images/darwin/latexfig.eps similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/images/darwin/latexfig.eps rename to plotly/tests/test_orca/images/darwin/latexfig.eps diff --git a/packages/python/plotly/plotly/tests/test_orca/images/darwin/topofig.eps b/plotly/tests/test_orca/images/darwin/topofig.eps similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/images/darwin/topofig.eps rename to plotly/tests/test_orca/images/darwin/topofig.eps diff --git a/packages/python/plotly/plotly/tests/test_orca/images/linux/fig1.eps b/plotly/tests/test_orca/images/linux/fig1.eps similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/images/linux/fig1.eps rename to plotly/tests/test_orca/images/linux/fig1.eps diff --git a/packages/python/plotly/plotly/tests/test_orca/images/linux/latexfig.eps b/plotly/tests/test_orca/images/linux/latexfig.eps similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/images/linux/latexfig.eps rename to plotly/tests/test_orca/images/linux/latexfig.eps diff --git a/packages/python/plotly/plotly/tests/test_orca/images/linux/topofig.eps b/plotly/tests/test_orca/images/linux/topofig.eps similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/images/linux/topofig.eps rename to plotly/tests/test_orca/images/linux/topofig.eps diff --git a/packages/python/plotly/plotly/tests/test_orca/resources/2011_us_ag_exports.csv b/plotly/tests/test_orca/resources/2011_us_ag_exports.csv similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/resources/2011_us_ag_exports.csv rename to plotly/tests/test_orca/resources/2011_us_ag_exports.csv diff --git a/packages/python/plotly/plotly/tests/test_orca/test_image_renderers.py b/plotly/tests/test_orca/test_image_renderers.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/test_image_renderers.py rename to plotly/tests/test_orca/test_image_renderers.py diff --git a/packages/python/plotly/plotly/tests/test_orca/test_orca_server.py b/plotly/tests/test_orca/test_orca_server.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/test_orca_server.py rename to plotly/tests/test_orca/test_orca_server.py diff --git a/packages/python/plotly/plotly/tests/test_orca/test_sg_scraper.py b/plotly/tests/test_orca/test_sg_scraper.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/test_sg_scraper.py rename to plotly/tests/test_orca/test_sg_scraper.py diff --git a/packages/python/plotly/plotly/tests/test_orca/test_to_image.py b/plotly/tests/test_orca/test_to_image.py similarity index 100% rename from packages/python/plotly/plotly/tests/test_orca/test_to_image.py rename to plotly/tests/test_orca/test_to_image.py diff --git a/packages/python/plotly/plotly/tests/utils.py b/plotly/tests/utils.py similarity index 100% rename from packages/python/plotly/plotly/tests/utils.py rename to plotly/tests/utils.py diff --git a/packages/python/plotly/plotly/tools.py b/plotly/tools.py similarity index 100% rename from packages/python/plotly/plotly/tools.py rename to plotly/tools.py diff --git a/packages/python/plotly/plotly/utils.py b/plotly/utils.py similarity index 100% rename from packages/python/plotly/plotly/utils.py rename to plotly/utils.py diff --git a/packages/python/plotly/plotly/validator_cache.py b/plotly/validator_cache.py similarity index 100% rename from packages/python/plotly/plotly/validator_cache.py rename to plotly/validator_cache.py diff --git a/packages/python/plotly/plotly/validators/__init__.py b/plotly/validators/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/__init__.py rename to plotly/validators/__init__.py diff --git a/packages/python/plotly/plotly/validators/_bar.py b/plotly/validators/_bar.py similarity index 100% rename from packages/python/plotly/plotly/validators/_bar.py rename to plotly/validators/_bar.py diff --git a/packages/python/plotly/plotly/validators/_barpolar.py b/plotly/validators/_barpolar.py similarity index 100% rename from packages/python/plotly/plotly/validators/_barpolar.py rename to plotly/validators/_barpolar.py diff --git a/packages/python/plotly/plotly/validators/_box.py b/plotly/validators/_box.py similarity index 100% rename from packages/python/plotly/plotly/validators/_box.py rename to plotly/validators/_box.py diff --git a/packages/python/plotly/plotly/validators/_candlestick.py b/plotly/validators/_candlestick.py similarity index 100% rename from packages/python/plotly/plotly/validators/_candlestick.py rename to plotly/validators/_candlestick.py diff --git a/packages/python/plotly/plotly/validators/_carpet.py b/plotly/validators/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/_carpet.py rename to plotly/validators/_carpet.py diff --git a/packages/python/plotly/plotly/validators/_choropleth.py b/plotly/validators/_choropleth.py similarity index 100% rename from packages/python/plotly/plotly/validators/_choropleth.py rename to plotly/validators/_choropleth.py diff --git a/packages/python/plotly/plotly/validators/_choroplethmap.py b/plotly/validators/_choroplethmap.py similarity index 100% rename from packages/python/plotly/plotly/validators/_choroplethmap.py rename to plotly/validators/_choroplethmap.py diff --git a/packages/python/plotly/plotly/validators/_choroplethmapbox.py b/plotly/validators/_choroplethmapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/_choroplethmapbox.py rename to plotly/validators/_choroplethmapbox.py diff --git a/packages/python/plotly/plotly/validators/_cone.py b/plotly/validators/_cone.py similarity index 100% rename from packages/python/plotly/plotly/validators/_cone.py rename to plotly/validators/_cone.py diff --git a/packages/python/plotly/plotly/validators/_contour.py b/plotly/validators/_contour.py similarity index 100% rename from packages/python/plotly/plotly/validators/_contour.py rename to plotly/validators/_contour.py diff --git a/packages/python/plotly/plotly/validators/_contourcarpet.py b/plotly/validators/_contourcarpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/_contourcarpet.py rename to plotly/validators/_contourcarpet.py diff --git a/packages/python/plotly/plotly/validators/_data.py b/plotly/validators/_data.py similarity index 100% rename from packages/python/plotly/plotly/validators/_data.py rename to plotly/validators/_data.py diff --git a/packages/python/plotly/plotly/validators/_densitymap.py b/plotly/validators/_densitymap.py similarity index 100% rename from packages/python/plotly/plotly/validators/_densitymap.py rename to plotly/validators/_densitymap.py diff --git a/packages/python/plotly/plotly/validators/_densitymapbox.py b/plotly/validators/_densitymapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/_densitymapbox.py rename to plotly/validators/_densitymapbox.py diff --git a/packages/python/plotly/plotly/validators/_frames.py b/plotly/validators/_frames.py similarity index 100% rename from packages/python/plotly/plotly/validators/_frames.py rename to plotly/validators/_frames.py diff --git a/packages/python/plotly/plotly/validators/_funnel.py b/plotly/validators/_funnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/_funnel.py rename to plotly/validators/_funnel.py diff --git a/packages/python/plotly/plotly/validators/_funnelarea.py b/plotly/validators/_funnelarea.py similarity index 100% rename from packages/python/plotly/plotly/validators/_funnelarea.py rename to plotly/validators/_funnelarea.py diff --git a/packages/python/plotly/plotly/validators/_heatmap.py b/plotly/validators/_heatmap.py similarity index 100% rename from packages/python/plotly/plotly/validators/_heatmap.py rename to plotly/validators/_heatmap.py diff --git a/packages/python/plotly/plotly/validators/_histogram.py b/plotly/validators/_histogram.py similarity index 100% rename from packages/python/plotly/plotly/validators/_histogram.py rename to plotly/validators/_histogram.py diff --git a/packages/python/plotly/plotly/validators/_histogram2d.py b/plotly/validators/_histogram2d.py similarity index 100% rename from packages/python/plotly/plotly/validators/_histogram2d.py rename to plotly/validators/_histogram2d.py diff --git a/packages/python/plotly/plotly/validators/_histogram2dcontour.py b/plotly/validators/_histogram2dcontour.py similarity index 100% rename from packages/python/plotly/plotly/validators/_histogram2dcontour.py rename to plotly/validators/_histogram2dcontour.py diff --git a/packages/python/plotly/plotly/validators/_icicle.py b/plotly/validators/_icicle.py similarity index 100% rename from packages/python/plotly/plotly/validators/_icicle.py rename to plotly/validators/_icicle.py diff --git a/packages/python/plotly/plotly/validators/_image.py b/plotly/validators/_image.py similarity index 100% rename from packages/python/plotly/plotly/validators/_image.py rename to plotly/validators/_image.py diff --git a/packages/python/plotly/plotly/validators/_indicator.py b/plotly/validators/_indicator.py similarity index 100% rename from packages/python/plotly/plotly/validators/_indicator.py rename to plotly/validators/_indicator.py diff --git a/packages/python/plotly/plotly/validators/_isosurface.py b/plotly/validators/_isosurface.py similarity index 100% rename from packages/python/plotly/plotly/validators/_isosurface.py rename to plotly/validators/_isosurface.py diff --git a/packages/python/plotly/plotly/validators/_layout.py b/plotly/validators/_layout.py similarity index 100% rename from packages/python/plotly/plotly/validators/_layout.py rename to plotly/validators/_layout.py diff --git a/packages/python/plotly/plotly/validators/_mesh3d.py b/plotly/validators/_mesh3d.py similarity index 100% rename from packages/python/plotly/plotly/validators/_mesh3d.py rename to plotly/validators/_mesh3d.py diff --git a/packages/python/plotly/plotly/validators/_ohlc.py b/plotly/validators/_ohlc.py similarity index 100% rename from packages/python/plotly/plotly/validators/_ohlc.py rename to plotly/validators/_ohlc.py diff --git a/packages/python/plotly/plotly/validators/_parcats.py b/plotly/validators/_parcats.py similarity index 100% rename from packages/python/plotly/plotly/validators/_parcats.py rename to plotly/validators/_parcats.py diff --git a/packages/python/plotly/plotly/validators/_parcoords.py b/plotly/validators/_parcoords.py similarity index 100% rename from packages/python/plotly/plotly/validators/_parcoords.py rename to plotly/validators/_parcoords.py diff --git a/packages/python/plotly/plotly/validators/_pie.py b/plotly/validators/_pie.py similarity index 100% rename from packages/python/plotly/plotly/validators/_pie.py rename to plotly/validators/_pie.py diff --git a/packages/python/plotly/plotly/validators/_sankey.py b/plotly/validators/_sankey.py similarity index 100% rename from packages/python/plotly/plotly/validators/_sankey.py rename to plotly/validators/_sankey.py diff --git a/packages/python/plotly/plotly/validators/_scatter.py b/plotly/validators/_scatter.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scatter.py rename to plotly/validators/_scatter.py diff --git a/packages/python/plotly/plotly/validators/_scatter3d.py b/plotly/validators/_scatter3d.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scatter3d.py rename to plotly/validators/_scatter3d.py diff --git a/packages/python/plotly/plotly/validators/_scattercarpet.py b/plotly/validators/_scattercarpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scattercarpet.py rename to plotly/validators/_scattercarpet.py diff --git a/packages/python/plotly/plotly/validators/_scattergeo.py b/plotly/validators/_scattergeo.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scattergeo.py rename to plotly/validators/_scattergeo.py diff --git a/packages/python/plotly/plotly/validators/_scattergl.py b/plotly/validators/_scattergl.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scattergl.py rename to plotly/validators/_scattergl.py diff --git a/packages/python/plotly/plotly/validators/_scattermap.py b/plotly/validators/_scattermap.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scattermap.py rename to plotly/validators/_scattermap.py diff --git a/packages/python/plotly/plotly/validators/_scattermapbox.py b/plotly/validators/_scattermapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scattermapbox.py rename to plotly/validators/_scattermapbox.py diff --git a/packages/python/plotly/plotly/validators/_scatterpolar.py b/plotly/validators/_scatterpolar.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scatterpolar.py rename to plotly/validators/_scatterpolar.py diff --git a/packages/python/plotly/plotly/validators/_scatterpolargl.py b/plotly/validators/_scatterpolargl.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scatterpolargl.py rename to plotly/validators/_scatterpolargl.py diff --git a/packages/python/plotly/plotly/validators/_scattersmith.py b/plotly/validators/_scattersmith.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scattersmith.py rename to plotly/validators/_scattersmith.py diff --git a/packages/python/plotly/plotly/validators/_scatterternary.py b/plotly/validators/_scatterternary.py similarity index 100% rename from packages/python/plotly/plotly/validators/_scatterternary.py rename to plotly/validators/_scatterternary.py diff --git a/packages/python/plotly/plotly/validators/_splom.py b/plotly/validators/_splom.py similarity index 100% rename from packages/python/plotly/plotly/validators/_splom.py rename to plotly/validators/_splom.py diff --git a/packages/python/plotly/plotly/validators/_streamtube.py b/plotly/validators/_streamtube.py similarity index 100% rename from packages/python/plotly/plotly/validators/_streamtube.py rename to plotly/validators/_streamtube.py diff --git a/packages/python/plotly/plotly/validators/_sunburst.py b/plotly/validators/_sunburst.py similarity index 100% rename from packages/python/plotly/plotly/validators/_sunburst.py rename to plotly/validators/_sunburst.py diff --git a/packages/python/plotly/plotly/validators/_surface.py b/plotly/validators/_surface.py similarity index 100% rename from packages/python/plotly/plotly/validators/_surface.py rename to plotly/validators/_surface.py diff --git a/packages/python/plotly/plotly/validators/_table.py b/plotly/validators/_table.py similarity index 100% rename from packages/python/plotly/plotly/validators/_table.py rename to plotly/validators/_table.py diff --git a/packages/python/plotly/plotly/validators/_treemap.py b/plotly/validators/_treemap.py similarity index 100% rename from packages/python/plotly/plotly/validators/_treemap.py rename to plotly/validators/_treemap.py diff --git a/packages/python/plotly/plotly/validators/_violin.py b/plotly/validators/_violin.py similarity index 100% rename from packages/python/plotly/plotly/validators/_violin.py rename to plotly/validators/_violin.py diff --git a/packages/python/plotly/plotly/validators/_volume.py b/plotly/validators/_volume.py similarity index 100% rename from packages/python/plotly/plotly/validators/_volume.py rename to plotly/validators/_volume.py diff --git a/packages/python/plotly/plotly/validators/_waterfall.py b/plotly/validators/_waterfall.py similarity index 100% rename from packages/python/plotly/plotly/validators/_waterfall.py rename to plotly/validators/_waterfall.py diff --git a/packages/python/plotly/plotly/validators/bar/__init__.py b/plotly/validators/bar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/__init__.py rename to plotly/validators/bar/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/_alignmentgroup.py b/plotly/validators/bar/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_alignmentgroup.py rename to plotly/validators/bar/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/bar/_base.py b/plotly/validators/bar/_base.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_base.py rename to plotly/validators/bar/_base.py diff --git a/packages/python/plotly/plotly/validators/bar/_basesrc.py b/plotly/validators/bar/_basesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_basesrc.py rename to plotly/validators/bar/_basesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_cliponaxis.py b/plotly/validators/bar/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_cliponaxis.py rename to plotly/validators/bar/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/bar/_constraintext.py b/plotly/validators/bar/_constraintext.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_constraintext.py rename to plotly/validators/bar/_constraintext.py diff --git a/packages/python/plotly/plotly/validators/bar/_customdata.py b/plotly/validators/bar/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_customdata.py rename to plotly/validators/bar/_customdata.py diff --git a/packages/python/plotly/plotly/validators/bar/_customdatasrc.py b/plotly/validators/bar/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_customdatasrc.py rename to plotly/validators/bar/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_dx.py b/plotly/validators/bar/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_dx.py rename to plotly/validators/bar/_dx.py diff --git a/packages/python/plotly/plotly/validators/bar/_dy.py b/plotly/validators/bar/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_dy.py rename to plotly/validators/bar/_dy.py diff --git a/packages/python/plotly/plotly/validators/bar/_error_x.py b/plotly/validators/bar/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_error_x.py rename to plotly/validators/bar/_error_x.py diff --git a/packages/python/plotly/plotly/validators/bar/_error_y.py b/plotly/validators/bar/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_error_y.py rename to plotly/validators/bar/_error_y.py diff --git a/packages/python/plotly/plotly/validators/bar/_hoverinfo.py b/plotly/validators/bar/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hoverinfo.py rename to plotly/validators/bar/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/bar/_hoverinfosrc.py b/plotly/validators/bar/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hoverinfosrc.py rename to plotly/validators/bar/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_hoverlabel.py b/plotly/validators/bar/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hoverlabel.py rename to plotly/validators/bar/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/bar/_hovertemplate.py b/plotly/validators/bar/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hovertemplate.py rename to plotly/validators/bar/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/bar/_hovertemplatesrc.py b/plotly/validators/bar/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hovertemplatesrc.py rename to plotly/validators/bar/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_hovertext.py b/plotly/validators/bar/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hovertext.py rename to plotly/validators/bar/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/bar/_hovertextsrc.py b/plotly/validators/bar/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_hovertextsrc.py rename to plotly/validators/bar/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_ids.py b/plotly/validators/bar/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_ids.py rename to plotly/validators/bar/_ids.py diff --git a/packages/python/plotly/plotly/validators/bar/_idssrc.py b/plotly/validators/bar/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_idssrc.py rename to plotly/validators/bar/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_insidetextanchor.py b/plotly/validators/bar/_insidetextanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_insidetextanchor.py rename to plotly/validators/bar/_insidetextanchor.py diff --git a/packages/python/plotly/plotly/validators/bar/_insidetextfont.py b/plotly/validators/bar/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_insidetextfont.py rename to plotly/validators/bar/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/bar/_legend.py b/plotly/validators/bar/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_legend.py rename to plotly/validators/bar/_legend.py diff --git a/packages/python/plotly/plotly/validators/bar/_legendgroup.py b/plotly/validators/bar/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_legendgroup.py rename to plotly/validators/bar/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/bar/_legendgrouptitle.py b/plotly/validators/bar/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_legendgrouptitle.py rename to plotly/validators/bar/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/bar/_legendrank.py b/plotly/validators/bar/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_legendrank.py rename to plotly/validators/bar/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/bar/_legendwidth.py b/plotly/validators/bar/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_legendwidth.py rename to plotly/validators/bar/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/bar/_marker.py b/plotly/validators/bar/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_marker.py rename to plotly/validators/bar/_marker.py diff --git a/packages/python/plotly/plotly/validators/bar/_meta.py b/plotly/validators/bar/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_meta.py rename to plotly/validators/bar/_meta.py diff --git a/packages/python/plotly/plotly/validators/bar/_metasrc.py b/plotly/validators/bar/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_metasrc.py rename to plotly/validators/bar/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_name.py b/plotly/validators/bar/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_name.py rename to plotly/validators/bar/_name.py diff --git a/packages/python/plotly/plotly/validators/bar/_offset.py b/plotly/validators/bar/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_offset.py rename to plotly/validators/bar/_offset.py diff --git a/packages/python/plotly/plotly/validators/bar/_offsetgroup.py b/plotly/validators/bar/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_offsetgroup.py rename to plotly/validators/bar/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/bar/_offsetsrc.py b/plotly/validators/bar/_offsetsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_offsetsrc.py rename to plotly/validators/bar/_offsetsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_opacity.py b/plotly/validators/bar/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_opacity.py rename to plotly/validators/bar/_opacity.py diff --git a/packages/python/plotly/plotly/validators/bar/_orientation.py b/plotly/validators/bar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_orientation.py rename to plotly/validators/bar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/bar/_outsidetextfont.py b/plotly/validators/bar/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_outsidetextfont.py rename to plotly/validators/bar/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/bar/_selected.py b/plotly/validators/bar/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_selected.py rename to plotly/validators/bar/_selected.py diff --git a/packages/python/plotly/plotly/validators/bar/_selectedpoints.py b/plotly/validators/bar/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_selectedpoints.py rename to plotly/validators/bar/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/bar/_showlegend.py b/plotly/validators/bar/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_showlegend.py rename to plotly/validators/bar/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/bar/_stream.py b/plotly/validators/bar/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_stream.py rename to plotly/validators/bar/_stream.py diff --git a/packages/python/plotly/plotly/validators/bar/_text.py b/plotly/validators/bar/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_text.py rename to plotly/validators/bar/_text.py diff --git a/packages/python/plotly/plotly/validators/bar/_textangle.py b/plotly/validators/bar/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_textangle.py rename to plotly/validators/bar/_textangle.py diff --git a/packages/python/plotly/plotly/validators/bar/_textfont.py b/plotly/validators/bar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_textfont.py rename to plotly/validators/bar/_textfont.py diff --git a/packages/python/plotly/plotly/validators/bar/_textposition.py b/plotly/validators/bar/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_textposition.py rename to plotly/validators/bar/_textposition.py diff --git a/packages/python/plotly/plotly/validators/bar/_textpositionsrc.py b/plotly/validators/bar/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_textpositionsrc.py rename to plotly/validators/bar/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_textsrc.py b/plotly/validators/bar/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_textsrc.py rename to plotly/validators/bar/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_texttemplate.py b/plotly/validators/bar/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_texttemplate.py rename to plotly/validators/bar/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/bar/_texttemplatesrc.py b/plotly/validators/bar/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_texttemplatesrc.py rename to plotly/validators/bar/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_uid.py b/plotly/validators/bar/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_uid.py rename to plotly/validators/bar/_uid.py diff --git a/packages/python/plotly/plotly/validators/bar/_uirevision.py b/plotly/validators/bar/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_uirevision.py rename to plotly/validators/bar/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/bar/_unselected.py b/plotly/validators/bar/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_unselected.py rename to plotly/validators/bar/_unselected.py diff --git a/packages/python/plotly/plotly/validators/bar/_visible.py b/plotly/validators/bar/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_visible.py rename to plotly/validators/bar/_visible.py diff --git a/packages/python/plotly/plotly/validators/bar/_width.py b/plotly/validators/bar/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_width.py rename to plotly/validators/bar/_width.py diff --git a/packages/python/plotly/plotly/validators/bar/_widthsrc.py b/plotly/validators/bar/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_widthsrc.py rename to plotly/validators/bar/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_x.py b/plotly/validators/bar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_x.py rename to plotly/validators/bar/_x.py diff --git a/packages/python/plotly/plotly/validators/bar/_x0.py b/plotly/validators/bar/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_x0.py rename to plotly/validators/bar/_x0.py diff --git a/packages/python/plotly/plotly/validators/bar/_xaxis.py b/plotly/validators/bar/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xaxis.py rename to plotly/validators/bar/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/bar/_xcalendar.py b/plotly/validators/bar/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xcalendar.py rename to plotly/validators/bar/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/bar/_xhoverformat.py b/plotly/validators/bar/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xhoverformat.py rename to plotly/validators/bar/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/bar/_xperiod.py b/plotly/validators/bar/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xperiod.py rename to plotly/validators/bar/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/bar/_xperiod0.py b/plotly/validators/bar/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xperiod0.py rename to plotly/validators/bar/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/bar/_xperiodalignment.py b/plotly/validators/bar/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xperiodalignment.py rename to plotly/validators/bar/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/bar/_xsrc.py b/plotly/validators/bar/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_xsrc.py rename to plotly/validators/bar/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_y.py b/plotly/validators/bar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_y.py rename to plotly/validators/bar/_y.py diff --git a/packages/python/plotly/plotly/validators/bar/_y0.py b/plotly/validators/bar/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_y0.py rename to plotly/validators/bar/_y0.py diff --git a/packages/python/plotly/plotly/validators/bar/_yaxis.py b/plotly/validators/bar/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_yaxis.py rename to plotly/validators/bar/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/bar/_ycalendar.py b/plotly/validators/bar/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_ycalendar.py rename to plotly/validators/bar/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/bar/_yhoverformat.py b/plotly/validators/bar/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_yhoverformat.py rename to plotly/validators/bar/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/bar/_yperiod.py b/plotly/validators/bar/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_yperiod.py rename to plotly/validators/bar/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/bar/_yperiod0.py b/plotly/validators/bar/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_yperiod0.py rename to plotly/validators/bar/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/bar/_yperiodalignment.py b/plotly/validators/bar/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_yperiodalignment.py rename to plotly/validators/bar/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/bar/_ysrc.py b/plotly/validators/bar/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_ysrc.py rename to plotly/validators/bar/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/_zorder.py b/plotly/validators/bar/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/_zorder.py rename to plotly/validators/bar/_zorder.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/__init__.py b/plotly/validators/bar/error_x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/__init__.py rename to plotly/validators/bar/error_x/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_array.py b/plotly/validators/bar/error_x/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_array.py rename to plotly/validators/bar/error_x/_array.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_arrayminus.py b/plotly/validators/bar/error_x/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_arrayminus.py rename to plotly/validators/bar/error_x/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_arrayminussrc.py b/plotly/validators/bar/error_x/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_arrayminussrc.py rename to plotly/validators/bar/error_x/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_arraysrc.py b/plotly/validators/bar/error_x/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_arraysrc.py rename to plotly/validators/bar/error_x/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_color.py b/plotly/validators/bar/error_x/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_color.py rename to plotly/validators/bar/error_x/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_copy_ystyle.py b/plotly/validators/bar/error_x/_copy_ystyle.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_copy_ystyle.py rename to plotly/validators/bar/error_x/_copy_ystyle.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_symmetric.py b/plotly/validators/bar/error_x/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_symmetric.py rename to plotly/validators/bar/error_x/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_thickness.py b/plotly/validators/bar/error_x/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_thickness.py rename to plotly/validators/bar/error_x/_thickness.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_traceref.py b/plotly/validators/bar/error_x/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_traceref.py rename to plotly/validators/bar/error_x/_traceref.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_tracerefminus.py b/plotly/validators/bar/error_x/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_tracerefminus.py rename to plotly/validators/bar/error_x/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_type.py b/plotly/validators/bar/error_x/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_type.py rename to plotly/validators/bar/error_x/_type.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_value.py b/plotly/validators/bar/error_x/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_value.py rename to plotly/validators/bar/error_x/_value.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_valueminus.py b/plotly/validators/bar/error_x/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_valueminus.py rename to plotly/validators/bar/error_x/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_visible.py b/plotly/validators/bar/error_x/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_visible.py rename to plotly/validators/bar/error_x/_visible.py diff --git a/packages/python/plotly/plotly/validators/bar/error_x/_width.py b/plotly/validators/bar/error_x/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_x/_width.py rename to plotly/validators/bar/error_x/_width.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/__init__.py b/plotly/validators/bar/error_y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/__init__.py rename to plotly/validators/bar/error_y/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_array.py b/plotly/validators/bar/error_y/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_array.py rename to plotly/validators/bar/error_y/_array.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_arrayminus.py b/plotly/validators/bar/error_y/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_arrayminus.py rename to plotly/validators/bar/error_y/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_arrayminussrc.py b/plotly/validators/bar/error_y/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_arrayminussrc.py rename to plotly/validators/bar/error_y/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_arraysrc.py b/plotly/validators/bar/error_y/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_arraysrc.py rename to plotly/validators/bar/error_y/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_color.py b/plotly/validators/bar/error_y/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_color.py rename to plotly/validators/bar/error_y/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_symmetric.py b/plotly/validators/bar/error_y/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_symmetric.py rename to plotly/validators/bar/error_y/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_thickness.py b/plotly/validators/bar/error_y/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_thickness.py rename to plotly/validators/bar/error_y/_thickness.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_traceref.py b/plotly/validators/bar/error_y/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_traceref.py rename to plotly/validators/bar/error_y/_traceref.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_tracerefminus.py b/plotly/validators/bar/error_y/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_tracerefminus.py rename to plotly/validators/bar/error_y/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_type.py b/plotly/validators/bar/error_y/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_type.py rename to plotly/validators/bar/error_y/_type.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_value.py b/plotly/validators/bar/error_y/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_value.py rename to plotly/validators/bar/error_y/_value.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_valueminus.py b/plotly/validators/bar/error_y/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_valueminus.py rename to plotly/validators/bar/error_y/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_visible.py b/plotly/validators/bar/error_y/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_visible.py rename to plotly/validators/bar/error_y/_visible.py diff --git a/packages/python/plotly/plotly/validators/bar/error_y/_width.py b/plotly/validators/bar/error_y/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/error_y/_width.py rename to plotly/validators/bar/error_y/_width.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/__init__.py b/plotly/validators/bar/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/__init__.py rename to plotly/validators/bar/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_align.py b/plotly/validators/bar/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_align.py rename to plotly/validators/bar/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_alignsrc.py b/plotly/validators/bar/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_alignsrc.py rename to plotly/validators/bar/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_bgcolor.py b/plotly/validators/bar/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_bgcolor.py rename to plotly/validators/bar/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_bgcolorsrc.py b/plotly/validators/bar/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_bgcolorsrc.py rename to plotly/validators/bar/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_bordercolor.py b/plotly/validators/bar/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_bordercolor.py rename to plotly/validators/bar/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_bordercolorsrc.py b/plotly/validators/bar/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_bordercolorsrc.py rename to plotly/validators/bar/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_font.py b/plotly/validators/bar/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_font.py rename to plotly/validators/bar/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_namelength.py b/plotly/validators/bar/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_namelength.py rename to plotly/validators/bar/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/_namelengthsrc.py b/plotly/validators/bar/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/_namelengthsrc.py rename to plotly/validators/bar/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/__init__.py b/plotly/validators/bar/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/__init__.py rename to plotly/validators/bar/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_color.py b/plotly/validators/bar/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_color.py rename to plotly/validators/bar/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_colorsrc.py b/plotly/validators/bar/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_colorsrc.py rename to plotly/validators/bar/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_family.py b/plotly/validators/bar/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_family.py rename to plotly/validators/bar/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_familysrc.py b/plotly/validators/bar/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_familysrc.py rename to plotly/validators/bar/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_lineposition.py b/plotly/validators/bar/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_lineposition.py rename to plotly/validators/bar/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_linepositionsrc.py b/plotly/validators/bar/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/bar/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_shadow.py b/plotly/validators/bar/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_shadow.py rename to plotly/validators/bar/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_shadowsrc.py b/plotly/validators/bar/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_shadowsrc.py rename to plotly/validators/bar/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_size.py b/plotly/validators/bar/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_size.py rename to plotly/validators/bar/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_sizesrc.py b/plotly/validators/bar/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_sizesrc.py rename to plotly/validators/bar/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_style.py b/plotly/validators/bar/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_style.py rename to plotly/validators/bar/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_stylesrc.py b/plotly/validators/bar/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_stylesrc.py rename to plotly/validators/bar/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_textcase.py b/plotly/validators/bar/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_textcase.py rename to plotly/validators/bar/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_textcasesrc.py b/plotly/validators/bar/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_textcasesrc.py rename to plotly/validators/bar/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_variant.py b/plotly/validators/bar/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_variant.py rename to plotly/validators/bar/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_variantsrc.py b/plotly/validators/bar/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_variantsrc.py rename to plotly/validators/bar/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_weight.py b/plotly/validators/bar/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_weight.py rename to plotly/validators/bar/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/hoverlabel/font/_weightsrc.py b/plotly/validators/bar/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/hoverlabel/font/_weightsrc.py rename to plotly/validators/bar/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/__init__.py b/plotly/validators/bar/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/__init__.py rename to plotly/validators/bar/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_color.py b/plotly/validators/bar/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_color.py rename to plotly/validators/bar/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_colorsrc.py b/plotly/validators/bar/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_colorsrc.py rename to plotly/validators/bar/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_family.py b/plotly/validators/bar/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_family.py rename to plotly/validators/bar/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_familysrc.py b/plotly/validators/bar/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_familysrc.py rename to plotly/validators/bar/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_lineposition.py b/plotly/validators/bar/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_lineposition.py rename to plotly/validators/bar/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_linepositionsrc.py b/plotly/validators/bar/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_linepositionsrc.py rename to plotly/validators/bar/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_shadow.py b/plotly/validators/bar/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_shadow.py rename to plotly/validators/bar/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_shadowsrc.py b/plotly/validators/bar/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_shadowsrc.py rename to plotly/validators/bar/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_size.py b/plotly/validators/bar/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_size.py rename to plotly/validators/bar/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_sizesrc.py b/plotly/validators/bar/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_sizesrc.py rename to plotly/validators/bar/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_style.py b/plotly/validators/bar/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_style.py rename to plotly/validators/bar/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_stylesrc.py b/plotly/validators/bar/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_stylesrc.py rename to plotly/validators/bar/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_textcase.py b/plotly/validators/bar/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_textcase.py rename to plotly/validators/bar/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_textcasesrc.py b/plotly/validators/bar/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_textcasesrc.py rename to plotly/validators/bar/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_variant.py b/plotly/validators/bar/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_variant.py rename to plotly/validators/bar/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_variantsrc.py b/plotly/validators/bar/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_variantsrc.py rename to plotly/validators/bar/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_weight.py b/plotly/validators/bar/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_weight.py rename to plotly/validators/bar/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/insidetextfont/_weightsrc.py b/plotly/validators/bar/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/insidetextfont/_weightsrc.py rename to plotly/validators/bar/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/__init__.py b/plotly/validators/bar/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/__init__.py rename to plotly/validators/bar/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/_font.py b/plotly/validators/bar/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/_font.py rename to plotly/validators/bar/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/_text.py b/plotly/validators/bar/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/_text.py rename to plotly/validators/bar/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/__init__.py b/plotly/validators/bar/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/__init__.py rename to plotly/validators/bar/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_color.py b/plotly/validators/bar/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_color.py rename to plotly/validators/bar/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_family.py b/plotly/validators/bar/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_family.py rename to plotly/validators/bar/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_lineposition.py b/plotly/validators/bar/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_lineposition.py rename to plotly/validators/bar/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_shadow.py b/plotly/validators/bar/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_shadow.py rename to plotly/validators/bar/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_size.py b/plotly/validators/bar/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_size.py rename to plotly/validators/bar/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_style.py b/plotly/validators/bar/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_style.py rename to plotly/validators/bar/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_textcase.py b/plotly/validators/bar/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_textcase.py rename to plotly/validators/bar/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_variant.py b/plotly/validators/bar/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_variant.py rename to plotly/validators/bar/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_weight.py b/plotly/validators/bar/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/legendgrouptitle/font/_weight.py rename to plotly/validators/bar/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/__init__.py b/plotly/validators/bar/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/__init__.py rename to plotly/validators/bar/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_autocolorscale.py b/plotly/validators/bar/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_autocolorscale.py rename to plotly/validators/bar/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_cauto.py b/plotly/validators/bar/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_cauto.py rename to plotly/validators/bar/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_cmax.py b/plotly/validators/bar/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_cmax.py rename to plotly/validators/bar/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_cmid.py b/plotly/validators/bar/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_cmid.py rename to plotly/validators/bar/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_cmin.py b/plotly/validators/bar/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_cmin.py rename to plotly/validators/bar/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_color.py b/plotly/validators/bar/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_color.py rename to plotly/validators/bar/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_coloraxis.py b/plotly/validators/bar/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_coloraxis.py rename to plotly/validators/bar/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_colorbar.py b/plotly/validators/bar/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_colorbar.py rename to plotly/validators/bar/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_colorscale.py b/plotly/validators/bar/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_colorscale.py rename to plotly/validators/bar/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_colorsrc.py b/plotly/validators/bar/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_colorsrc.py rename to plotly/validators/bar/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_cornerradius.py b/plotly/validators/bar/marker/_cornerradius.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_cornerradius.py rename to plotly/validators/bar/marker/_cornerradius.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_line.py b/plotly/validators/bar/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_line.py rename to plotly/validators/bar/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_opacity.py b/plotly/validators/bar/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_opacity.py rename to plotly/validators/bar/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_opacitysrc.py b/plotly/validators/bar/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_opacitysrc.py rename to plotly/validators/bar/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_pattern.py b/plotly/validators/bar/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_pattern.py rename to plotly/validators/bar/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_reversescale.py b/plotly/validators/bar/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_reversescale.py rename to plotly/validators/bar/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/_showscale.py b/plotly/validators/bar/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/_showscale.py rename to plotly/validators/bar/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/__init__.py b/plotly/validators/bar/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/__init__.py rename to plotly/validators/bar/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_bgcolor.py b/plotly/validators/bar/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_bgcolor.py rename to plotly/validators/bar/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_bordercolor.py b/plotly/validators/bar/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_bordercolor.py rename to plotly/validators/bar/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_borderwidth.py b/plotly/validators/bar/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_borderwidth.py rename to plotly/validators/bar/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_dtick.py b/plotly/validators/bar/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_dtick.py rename to plotly/validators/bar/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_exponentformat.py b/plotly/validators/bar/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_exponentformat.py rename to plotly/validators/bar/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_labelalias.py b/plotly/validators/bar/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_labelalias.py rename to plotly/validators/bar/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_len.py b/plotly/validators/bar/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_len.py rename to plotly/validators/bar/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_lenmode.py b/plotly/validators/bar/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_lenmode.py rename to plotly/validators/bar/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_minexponent.py b/plotly/validators/bar/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_minexponent.py rename to plotly/validators/bar/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_nticks.py b/plotly/validators/bar/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_nticks.py rename to plotly/validators/bar/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_orientation.py b/plotly/validators/bar/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_orientation.py rename to plotly/validators/bar/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_outlinecolor.py b/plotly/validators/bar/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_outlinecolor.py rename to plotly/validators/bar/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_outlinewidth.py b/plotly/validators/bar/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_outlinewidth.py rename to plotly/validators/bar/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_separatethousands.py b/plotly/validators/bar/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_separatethousands.py rename to plotly/validators/bar/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_showexponent.py b/plotly/validators/bar/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_showexponent.py rename to plotly/validators/bar/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_showticklabels.py b/plotly/validators/bar/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_showticklabels.py rename to plotly/validators/bar/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_showtickprefix.py b/plotly/validators/bar/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_showtickprefix.py rename to plotly/validators/bar/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_showticksuffix.py b/plotly/validators/bar/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_showticksuffix.py rename to plotly/validators/bar/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_thickness.py b/plotly/validators/bar/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_thickness.py rename to plotly/validators/bar/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_thicknessmode.py b/plotly/validators/bar/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_thicknessmode.py rename to plotly/validators/bar/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tick0.py b/plotly/validators/bar/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tick0.py rename to plotly/validators/bar/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickangle.py b/plotly/validators/bar/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickangle.py rename to plotly/validators/bar/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickcolor.py b/plotly/validators/bar/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickcolor.py rename to plotly/validators/bar/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickfont.py b/plotly/validators/bar/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickfont.py rename to plotly/validators/bar/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickformat.py b/plotly/validators/bar/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickformat.py rename to plotly/validators/bar/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/bar/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickformatstops.py b/plotly/validators/bar/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickformatstops.py rename to plotly/validators/bar/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/bar/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/bar/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklabelposition.py b/plotly/validators/bar/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklabelposition.py rename to plotly/validators/bar/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklabelstep.py b/plotly/validators/bar/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklabelstep.py rename to plotly/validators/bar/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklen.py b/plotly/validators/bar/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticklen.py rename to plotly/validators/bar/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickmode.py b/plotly/validators/bar/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickmode.py rename to plotly/validators/bar/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickprefix.py b/plotly/validators/bar/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickprefix.py rename to plotly/validators/bar/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticks.py b/plotly/validators/bar/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticks.py rename to plotly/validators/bar/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticksuffix.py b/plotly/validators/bar/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticksuffix.py rename to plotly/validators/bar/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticktext.py b/plotly/validators/bar/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticktext.py rename to plotly/validators/bar/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticktextsrc.py b/plotly/validators/bar/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ticktextsrc.py rename to plotly/validators/bar/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickvals.py b/plotly/validators/bar/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickvals.py rename to plotly/validators/bar/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickvalssrc.py b/plotly/validators/bar/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickvalssrc.py rename to plotly/validators/bar/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickwidth.py b/plotly/validators/bar/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_tickwidth.py rename to plotly/validators/bar/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_title.py b/plotly/validators/bar/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_title.py rename to plotly/validators/bar/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_x.py b/plotly/validators/bar/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_x.py rename to plotly/validators/bar/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_xanchor.py b/plotly/validators/bar/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_xanchor.py rename to plotly/validators/bar/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_xpad.py b/plotly/validators/bar/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_xpad.py rename to plotly/validators/bar/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_xref.py b/plotly/validators/bar/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_xref.py rename to plotly/validators/bar/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_y.py b/plotly/validators/bar/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_y.py rename to plotly/validators/bar/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_yanchor.py b/plotly/validators/bar/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_yanchor.py rename to plotly/validators/bar/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_ypad.py b/plotly/validators/bar/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_ypad.py rename to plotly/validators/bar/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/_yref.py b/plotly/validators/bar/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/_yref.py rename to plotly/validators/bar/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/__init__.py b/plotly/validators/bar/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/__init__.py rename to plotly/validators/bar/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_color.py b/plotly/validators/bar/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_color.py rename to plotly/validators/bar/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_family.py b/plotly/validators/bar/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_family.py rename to plotly/validators/bar/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/bar/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/bar/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_shadow.py b/plotly/validators/bar/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/bar/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_size.py b/plotly/validators/bar/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_size.py rename to plotly/validators/bar/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_style.py b/plotly/validators/bar/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_style.py rename to plotly/validators/bar/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_textcase.py b/plotly/validators/bar/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/bar/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_variant.py b/plotly/validators/bar/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_variant.py rename to plotly/validators/bar/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_weight.py b/plotly/validators/bar/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickfont/_weight.py rename to plotly/validators/bar/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/bar/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/bar/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/bar/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/bar/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/bar/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/bar/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_name.py b/plotly/validators/bar/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/bar/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/bar/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/bar/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_value.py b/plotly/validators/bar/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/bar/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/__init__.py b/plotly/validators/bar/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/__init__.py rename to plotly/validators/bar/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/_font.py b/plotly/validators/bar/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/_font.py rename to plotly/validators/bar/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/_side.py b/plotly/validators/bar/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/_side.py rename to plotly/validators/bar/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/_text.py b/plotly/validators/bar/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/_text.py rename to plotly/validators/bar/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/__init__.py b/plotly/validators/bar/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/__init__.py rename to plotly/validators/bar/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_color.py b/plotly/validators/bar/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_color.py rename to plotly/validators/bar/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_family.py b/plotly/validators/bar/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_family.py rename to plotly/validators/bar/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_lineposition.py b/plotly/validators/bar/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/bar/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_shadow.py b/plotly/validators/bar/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_shadow.py rename to plotly/validators/bar/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_size.py b/plotly/validators/bar/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_size.py rename to plotly/validators/bar/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_style.py b/plotly/validators/bar/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_style.py rename to plotly/validators/bar/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_textcase.py b/plotly/validators/bar/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_textcase.py rename to plotly/validators/bar/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_variant.py b/plotly/validators/bar/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_variant.py rename to plotly/validators/bar/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_weight.py b/plotly/validators/bar/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/colorbar/title/font/_weight.py rename to plotly/validators/bar/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/__init__.py b/plotly/validators/bar/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/__init__.py rename to plotly/validators/bar/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_autocolorscale.py b/plotly/validators/bar/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_autocolorscale.py rename to plotly/validators/bar/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_cauto.py b/plotly/validators/bar/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_cauto.py rename to plotly/validators/bar/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_cmax.py b/plotly/validators/bar/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_cmax.py rename to plotly/validators/bar/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_cmid.py b/plotly/validators/bar/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_cmid.py rename to plotly/validators/bar/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_cmin.py b/plotly/validators/bar/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_cmin.py rename to plotly/validators/bar/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_color.py b/plotly/validators/bar/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_color.py rename to plotly/validators/bar/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_coloraxis.py b/plotly/validators/bar/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_coloraxis.py rename to plotly/validators/bar/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_colorscale.py b/plotly/validators/bar/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_colorscale.py rename to plotly/validators/bar/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_colorsrc.py b/plotly/validators/bar/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_colorsrc.py rename to plotly/validators/bar/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_reversescale.py b/plotly/validators/bar/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_reversescale.py rename to plotly/validators/bar/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_width.py b/plotly/validators/bar/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_width.py rename to plotly/validators/bar/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/line/_widthsrc.py b/plotly/validators/bar/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/line/_widthsrc.py rename to plotly/validators/bar/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/__init__.py b/plotly/validators/bar/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/__init__.py rename to plotly/validators/bar/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_bgcolor.py b/plotly/validators/bar/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_bgcolor.py rename to plotly/validators/bar/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_bgcolorsrc.py b/plotly/validators/bar/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_bgcolorsrc.py rename to plotly/validators/bar/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_fgcolor.py b/plotly/validators/bar/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_fgcolor.py rename to plotly/validators/bar/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_fgcolorsrc.py b/plotly/validators/bar/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_fgcolorsrc.py rename to plotly/validators/bar/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_fgopacity.py b/plotly/validators/bar/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_fgopacity.py rename to plotly/validators/bar/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_fillmode.py b/plotly/validators/bar/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_fillmode.py rename to plotly/validators/bar/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_shape.py b/plotly/validators/bar/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_shape.py rename to plotly/validators/bar/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_shapesrc.py b/plotly/validators/bar/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_shapesrc.py rename to plotly/validators/bar/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_size.py b/plotly/validators/bar/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_size.py rename to plotly/validators/bar/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_sizesrc.py b/plotly/validators/bar/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_sizesrc.py rename to plotly/validators/bar/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_solidity.py b/plotly/validators/bar/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_solidity.py rename to plotly/validators/bar/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/bar/marker/pattern/_soliditysrc.py b/plotly/validators/bar/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/marker/pattern/_soliditysrc.py rename to plotly/validators/bar/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/__init__.py b/plotly/validators/bar/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/__init__.py rename to plotly/validators/bar/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_color.py b/plotly/validators/bar/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_color.py rename to plotly/validators/bar/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_colorsrc.py b/plotly/validators/bar/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_colorsrc.py rename to plotly/validators/bar/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_family.py b/plotly/validators/bar/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_family.py rename to plotly/validators/bar/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_familysrc.py b/plotly/validators/bar/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_familysrc.py rename to plotly/validators/bar/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_lineposition.py b/plotly/validators/bar/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_lineposition.py rename to plotly/validators/bar/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_linepositionsrc.py b/plotly/validators/bar/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_linepositionsrc.py rename to plotly/validators/bar/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_shadow.py b/plotly/validators/bar/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_shadow.py rename to plotly/validators/bar/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_shadowsrc.py b/plotly/validators/bar/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_shadowsrc.py rename to plotly/validators/bar/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_size.py b/plotly/validators/bar/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_size.py rename to plotly/validators/bar/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_sizesrc.py b/plotly/validators/bar/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_sizesrc.py rename to plotly/validators/bar/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_style.py b/plotly/validators/bar/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_style.py rename to plotly/validators/bar/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_stylesrc.py b/plotly/validators/bar/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_stylesrc.py rename to plotly/validators/bar/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_textcase.py b/plotly/validators/bar/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_textcase.py rename to plotly/validators/bar/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_textcasesrc.py b/plotly/validators/bar/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_textcasesrc.py rename to plotly/validators/bar/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_variant.py b/plotly/validators/bar/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_variant.py rename to plotly/validators/bar/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_variantsrc.py b/plotly/validators/bar/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_variantsrc.py rename to plotly/validators/bar/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_weight.py b/plotly/validators/bar/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_weight.py rename to plotly/validators/bar/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/outsidetextfont/_weightsrc.py b/plotly/validators/bar/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/outsidetextfont/_weightsrc.py rename to plotly/validators/bar/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/__init__.py b/plotly/validators/bar/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/__init__.py rename to plotly/validators/bar/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/_marker.py b/plotly/validators/bar/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/_marker.py rename to plotly/validators/bar/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/_textfont.py b/plotly/validators/bar/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/_textfont.py rename to plotly/validators/bar/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/marker/__init__.py b/plotly/validators/bar/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/marker/__init__.py rename to plotly/validators/bar/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/marker/_color.py b/plotly/validators/bar/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/marker/_color.py rename to plotly/validators/bar/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/marker/_opacity.py b/plotly/validators/bar/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/marker/_opacity.py rename to plotly/validators/bar/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/textfont/__init__.py b/plotly/validators/bar/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/textfont/__init__.py rename to plotly/validators/bar/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/selected/textfont/_color.py b/plotly/validators/bar/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/selected/textfont/_color.py rename to plotly/validators/bar/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/stream/__init__.py b/plotly/validators/bar/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/stream/__init__.py rename to plotly/validators/bar/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/stream/_maxpoints.py b/plotly/validators/bar/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/stream/_maxpoints.py rename to plotly/validators/bar/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/bar/stream/_token.py b/plotly/validators/bar/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/stream/_token.py rename to plotly/validators/bar/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/__init__.py b/plotly/validators/bar/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/__init__.py rename to plotly/validators/bar/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_color.py b/plotly/validators/bar/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_color.py rename to plotly/validators/bar/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_colorsrc.py b/plotly/validators/bar/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_colorsrc.py rename to plotly/validators/bar/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_family.py b/plotly/validators/bar/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_family.py rename to plotly/validators/bar/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_familysrc.py b/plotly/validators/bar/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_familysrc.py rename to plotly/validators/bar/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_lineposition.py b/plotly/validators/bar/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_lineposition.py rename to plotly/validators/bar/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_linepositionsrc.py b/plotly/validators/bar/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_linepositionsrc.py rename to plotly/validators/bar/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_shadow.py b/plotly/validators/bar/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_shadow.py rename to plotly/validators/bar/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_shadowsrc.py b/plotly/validators/bar/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_shadowsrc.py rename to plotly/validators/bar/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_size.py b/plotly/validators/bar/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_size.py rename to plotly/validators/bar/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_sizesrc.py b/plotly/validators/bar/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_sizesrc.py rename to plotly/validators/bar/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_style.py b/plotly/validators/bar/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_style.py rename to plotly/validators/bar/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_stylesrc.py b/plotly/validators/bar/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_stylesrc.py rename to plotly/validators/bar/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_textcase.py b/plotly/validators/bar/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_textcase.py rename to plotly/validators/bar/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_textcasesrc.py b/plotly/validators/bar/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_textcasesrc.py rename to plotly/validators/bar/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_variant.py b/plotly/validators/bar/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_variant.py rename to plotly/validators/bar/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_variantsrc.py b/plotly/validators/bar/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_variantsrc.py rename to plotly/validators/bar/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_weight.py b/plotly/validators/bar/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_weight.py rename to plotly/validators/bar/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/bar/textfont/_weightsrc.py b/plotly/validators/bar/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/textfont/_weightsrc.py rename to plotly/validators/bar/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/__init__.py b/plotly/validators/bar/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/__init__.py rename to plotly/validators/bar/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/_marker.py b/plotly/validators/bar/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/_marker.py rename to plotly/validators/bar/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/_textfont.py b/plotly/validators/bar/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/_textfont.py rename to plotly/validators/bar/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/marker/__init__.py b/plotly/validators/bar/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/marker/__init__.py rename to plotly/validators/bar/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/marker/_color.py b/plotly/validators/bar/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/marker/_color.py rename to plotly/validators/bar/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/marker/_opacity.py b/plotly/validators/bar/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/marker/_opacity.py rename to plotly/validators/bar/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/textfont/__init__.py b/plotly/validators/bar/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/textfont/__init__.py rename to plotly/validators/bar/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/bar/unselected/textfont/_color.py b/plotly/validators/bar/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/bar/unselected/textfont/_color.py rename to plotly/validators/bar/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/__init__.py b/plotly/validators/barpolar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/__init__.py rename to plotly/validators/barpolar/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_base.py b/plotly/validators/barpolar/_base.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_base.py rename to plotly/validators/barpolar/_base.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_basesrc.py b/plotly/validators/barpolar/_basesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_basesrc.py rename to plotly/validators/barpolar/_basesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_customdata.py b/plotly/validators/barpolar/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_customdata.py rename to plotly/validators/barpolar/_customdata.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_customdatasrc.py b/plotly/validators/barpolar/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_customdatasrc.py rename to plotly/validators/barpolar/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_dr.py b/plotly/validators/barpolar/_dr.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_dr.py rename to plotly/validators/barpolar/_dr.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_dtheta.py b/plotly/validators/barpolar/_dtheta.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_dtheta.py rename to plotly/validators/barpolar/_dtheta.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hoverinfo.py b/plotly/validators/barpolar/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hoverinfo.py rename to plotly/validators/barpolar/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hoverinfosrc.py b/plotly/validators/barpolar/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hoverinfosrc.py rename to plotly/validators/barpolar/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hoverlabel.py b/plotly/validators/barpolar/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hoverlabel.py rename to plotly/validators/barpolar/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hovertemplate.py b/plotly/validators/barpolar/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hovertemplate.py rename to plotly/validators/barpolar/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hovertemplatesrc.py b/plotly/validators/barpolar/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hovertemplatesrc.py rename to plotly/validators/barpolar/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hovertext.py b/plotly/validators/barpolar/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hovertext.py rename to plotly/validators/barpolar/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_hovertextsrc.py b/plotly/validators/barpolar/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_hovertextsrc.py rename to plotly/validators/barpolar/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_ids.py b/plotly/validators/barpolar/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_ids.py rename to plotly/validators/barpolar/_ids.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_idssrc.py b/plotly/validators/barpolar/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_idssrc.py rename to plotly/validators/barpolar/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_legend.py b/plotly/validators/barpolar/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_legend.py rename to plotly/validators/barpolar/_legend.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_legendgroup.py b/plotly/validators/barpolar/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_legendgroup.py rename to plotly/validators/barpolar/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_legendgrouptitle.py b/plotly/validators/barpolar/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_legendgrouptitle.py rename to plotly/validators/barpolar/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_legendrank.py b/plotly/validators/barpolar/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_legendrank.py rename to plotly/validators/barpolar/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_legendwidth.py b/plotly/validators/barpolar/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_legendwidth.py rename to plotly/validators/barpolar/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_marker.py b/plotly/validators/barpolar/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_marker.py rename to plotly/validators/barpolar/_marker.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_meta.py b/plotly/validators/barpolar/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_meta.py rename to plotly/validators/barpolar/_meta.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_metasrc.py b/plotly/validators/barpolar/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_metasrc.py rename to plotly/validators/barpolar/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_name.py b/plotly/validators/barpolar/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_name.py rename to plotly/validators/barpolar/_name.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_offset.py b/plotly/validators/barpolar/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_offset.py rename to plotly/validators/barpolar/_offset.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_offsetsrc.py b/plotly/validators/barpolar/_offsetsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_offsetsrc.py rename to plotly/validators/barpolar/_offsetsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_opacity.py b/plotly/validators/barpolar/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_opacity.py rename to plotly/validators/barpolar/_opacity.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_r.py b/plotly/validators/barpolar/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_r.py rename to plotly/validators/barpolar/_r.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_r0.py b/plotly/validators/barpolar/_r0.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_r0.py rename to plotly/validators/barpolar/_r0.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_rsrc.py b/plotly/validators/barpolar/_rsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_rsrc.py rename to plotly/validators/barpolar/_rsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_selected.py b/plotly/validators/barpolar/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_selected.py rename to plotly/validators/barpolar/_selected.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_selectedpoints.py b/plotly/validators/barpolar/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_selectedpoints.py rename to plotly/validators/barpolar/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_showlegend.py b/plotly/validators/barpolar/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_showlegend.py rename to plotly/validators/barpolar/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_stream.py b/plotly/validators/barpolar/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_stream.py rename to plotly/validators/barpolar/_stream.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_subplot.py b/plotly/validators/barpolar/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_subplot.py rename to plotly/validators/barpolar/_subplot.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_text.py b/plotly/validators/barpolar/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_text.py rename to plotly/validators/barpolar/_text.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_textsrc.py b/plotly/validators/barpolar/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_textsrc.py rename to plotly/validators/barpolar/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_theta.py b/plotly/validators/barpolar/_theta.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_theta.py rename to plotly/validators/barpolar/_theta.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_theta0.py b/plotly/validators/barpolar/_theta0.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_theta0.py rename to plotly/validators/barpolar/_theta0.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_thetasrc.py b/plotly/validators/barpolar/_thetasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_thetasrc.py rename to plotly/validators/barpolar/_thetasrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_thetaunit.py b/plotly/validators/barpolar/_thetaunit.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_thetaunit.py rename to plotly/validators/barpolar/_thetaunit.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_uid.py b/plotly/validators/barpolar/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_uid.py rename to plotly/validators/barpolar/_uid.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_uirevision.py b/plotly/validators/barpolar/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_uirevision.py rename to plotly/validators/barpolar/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_unselected.py b/plotly/validators/barpolar/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_unselected.py rename to plotly/validators/barpolar/_unselected.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_visible.py b/plotly/validators/barpolar/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_visible.py rename to plotly/validators/barpolar/_visible.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_width.py b/plotly/validators/barpolar/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_width.py rename to plotly/validators/barpolar/_width.py diff --git a/packages/python/plotly/plotly/validators/barpolar/_widthsrc.py b/plotly/validators/barpolar/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/_widthsrc.py rename to plotly/validators/barpolar/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/__init__.py b/plotly/validators/barpolar/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/__init__.py rename to plotly/validators/barpolar/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_align.py b/plotly/validators/barpolar/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_align.py rename to plotly/validators/barpolar/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_alignsrc.py b/plotly/validators/barpolar/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_alignsrc.py rename to plotly/validators/barpolar/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bgcolor.py b/plotly/validators/barpolar/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bgcolor.py rename to plotly/validators/barpolar/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bgcolorsrc.py b/plotly/validators/barpolar/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bgcolorsrc.py rename to plotly/validators/barpolar/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bordercolor.py b/plotly/validators/barpolar/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bordercolor.py rename to plotly/validators/barpolar/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bordercolorsrc.py b/plotly/validators/barpolar/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_bordercolorsrc.py rename to plotly/validators/barpolar/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_font.py b/plotly/validators/barpolar/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_font.py rename to plotly/validators/barpolar/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_namelength.py b/plotly/validators/barpolar/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_namelength.py rename to plotly/validators/barpolar/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/_namelengthsrc.py b/plotly/validators/barpolar/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/_namelengthsrc.py rename to plotly/validators/barpolar/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/__init__.py b/plotly/validators/barpolar/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/__init__.py rename to plotly/validators/barpolar/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_color.py b/plotly/validators/barpolar/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_color.py rename to plotly/validators/barpolar/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_colorsrc.py b/plotly/validators/barpolar/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_colorsrc.py rename to plotly/validators/barpolar/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_family.py b/plotly/validators/barpolar/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_family.py rename to plotly/validators/barpolar/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_familysrc.py b/plotly/validators/barpolar/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_familysrc.py rename to plotly/validators/barpolar/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_lineposition.py b/plotly/validators/barpolar/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_lineposition.py rename to plotly/validators/barpolar/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_linepositionsrc.py b/plotly/validators/barpolar/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/barpolar/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_shadow.py b/plotly/validators/barpolar/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_shadow.py rename to plotly/validators/barpolar/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_shadowsrc.py b/plotly/validators/barpolar/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_shadowsrc.py rename to plotly/validators/barpolar/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_size.py b/plotly/validators/barpolar/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_size.py rename to plotly/validators/barpolar/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_sizesrc.py b/plotly/validators/barpolar/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_sizesrc.py rename to plotly/validators/barpolar/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_style.py b/plotly/validators/barpolar/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_style.py rename to plotly/validators/barpolar/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_stylesrc.py b/plotly/validators/barpolar/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_stylesrc.py rename to plotly/validators/barpolar/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_textcase.py b/plotly/validators/barpolar/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_textcase.py rename to plotly/validators/barpolar/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_textcasesrc.py b/plotly/validators/barpolar/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_textcasesrc.py rename to plotly/validators/barpolar/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_variant.py b/plotly/validators/barpolar/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_variant.py rename to plotly/validators/barpolar/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_variantsrc.py b/plotly/validators/barpolar/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_variantsrc.py rename to plotly/validators/barpolar/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_weight.py b/plotly/validators/barpolar/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_weight.py rename to plotly/validators/barpolar/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_weightsrc.py b/plotly/validators/barpolar/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/hoverlabel/font/_weightsrc.py rename to plotly/validators/barpolar/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/__init__.py b/plotly/validators/barpolar/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/__init__.py rename to plotly/validators/barpolar/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/_font.py b/plotly/validators/barpolar/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/_font.py rename to plotly/validators/barpolar/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/_text.py b/plotly/validators/barpolar/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/_text.py rename to plotly/validators/barpolar/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/__init__.py b/plotly/validators/barpolar/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/__init__.py rename to plotly/validators/barpolar/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_color.py b/plotly/validators/barpolar/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_color.py rename to plotly/validators/barpolar/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_family.py b/plotly/validators/barpolar/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_family.py rename to plotly/validators/barpolar/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_lineposition.py b/plotly/validators/barpolar/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_lineposition.py rename to plotly/validators/barpolar/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_shadow.py b/plotly/validators/barpolar/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_shadow.py rename to plotly/validators/barpolar/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_size.py b/plotly/validators/barpolar/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_size.py rename to plotly/validators/barpolar/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_style.py b/plotly/validators/barpolar/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_style.py rename to plotly/validators/barpolar/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_textcase.py b/plotly/validators/barpolar/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_textcase.py rename to plotly/validators/barpolar/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_variant.py b/plotly/validators/barpolar/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_variant.py rename to plotly/validators/barpolar/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_weight.py b/plotly/validators/barpolar/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/legendgrouptitle/font/_weight.py rename to plotly/validators/barpolar/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/__init__.py b/plotly/validators/barpolar/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/__init__.py rename to plotly/validators/barpolar/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_autocolorscale.py b/plotly/validators/barpolar/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_autocolorscale.py rename to plotly/validators/barpolar/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_cauto.py b/plotly/validators/barpolar/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_cauto.py rename to plotly/validators/barpolar/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_cmax.py b/plotly/validators/barpolar/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_cmax.py rename to plotly/validators/barpolar/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_cmid.py b/plotly/validators/barpolar/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_cmid.py rename to plotly/validators/barpolar/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_cmin.py b/plotly/validators/barpolar/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_cmin.py rename to plotly/validators/barpolar/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_color.py b/plotly/validators/barpolar/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_color.py rename to plotly/validators/barpolar/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_coloraxis.py b/plotly/validators/barpolar/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_coloraxis.py rename to plotly/validators/barpolar/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_colorbar.py b/plotly/validators/barpolar/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_colorbar.py rename to plotly/validators/barpolar/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_colorscale.py b/plotly/validators/barpolar/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_colorscale.py rename to plotly/validators/barpolar/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_colorsrc.py b/plotly/validators/barpolar/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_colorsrc.py rename to plotly/validators/barpolar/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_line.py b/plotly/validators/barpolar/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_line.py rename to plotly/validators/barpolar/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_opacity.py b/plotly/validators/barpolar/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_opacity.py rename to plotly/validators/barpolar/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_opacitysrc.py b/plotly/validators/barpolar/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_opacitysrc.py rename to plotly/validators/barpolar/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_pattern.py b/plotly/validators/barpolar/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_pattern.py rename to plotly/validators/barpolar/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_reversescale.py b/plotly/validators/barpolar/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_reversescale.py rename to plotly/validators/barpolar/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/_showscale.py b/plotly/validators/barpolar/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/_showscale.py rename to plotly/validators/barpolar/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/__init__.py b/plotly/validators/barpolar/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/__init__.py rename to plotly/validators/barpolar/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_bgcolor.py b/plotly/validators/barpolar/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_bgcolor.py rename to plotly/validators/barpolar/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_bordercolor.py b/plotly/validators/barpolar/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_bordercolor.py rename to plotly/validators/barpolar/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_borderwidth.py b/plotly/validators/barpolar/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_borderwidth.py rename to plotly/validators/barpolar/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_dtick.py b/plotly/validators/barpolar/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_dtick.py rename to plotly/validators/barpolar/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_exponentformat.py b/plotly/validators/barpolar/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_exponentformat.py rename to plotly/validators/barpolar/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_labelalias.py b/plotly/validators/barpolar/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_labelalias.py rename to plotly/validators/barpolar/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_len.py b/plotly/validators/barpolar/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_len.py rename to plotly/validators/barpolar/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_lenmode.py b/plotly/validators/barpolar/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_lenmode.py rename to plotly/validators/barpolar/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_minexponent.py b/plotly/validators/barpolar/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_minexponent.py rename to plotly/validators/barpolar/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_nticks.py b/plotly/validators/barpolar/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_nticks.py rename to plotly/validators/barpolar/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_orientation.py b/plotly/validators/barpolar/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_orientation.py rename to plotly/validators/barpolar/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_outlinecolor.py b/plotly/validators/barpolar/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_outlinecolor.py rename to plotly/validators/barpolar/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_outlinewidth.py b/plotly/validators/barpolar/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_outlinewidth.py rename to plotly/validators/barpolar/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_separatethousands.py b/plotly/validators/barpolar/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_separatethousands.py rename to plotly/validators/barpolar/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showexponent.py b/plotly/validators/barpolar/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showexponent.py rename to plotly/validators/barpolar/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showticklabels.py b/plotly/validators/barpolar/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showticklabels.py rename to plotly/validators/barpolar/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showtickprefix.py b/plotly/validators/barpolar/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showtickprefix.py rename to plotly/validators/barpolar/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showticksuffix.py b/plotly/validators/barpolar/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_showticksuffix.py rename to plotly/validators/barpolar/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_thickness.py b/plotly/validators/barpolar/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_thickness.py rename to plotly/validators/barpolar/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_thicknessmode.py b/plotly/validators/barpolar/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_thicknessmode.py rename to plotly/validators/barpolar/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tick0.py b/plotly/validators/barpolar/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tick0.py rename to plotly/validators/barpolar/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickangle.py b/plotly/validators/barpolar/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickangle.py rename to plotly/validators/barpolar/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickcolor.py b/plotly/validators/barpolar/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickcolor.py rename to plotly/validators/barpolar/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickfont.py b/plotly/validators/barpolar/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickfont.py rename to plotly/validators/barpolar/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickformat.py b/plotly/validators/barpolar/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickformat.py rename to plotly/validators/barpolar/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/barpolar/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickformatstops.py b/plotly/validators/barpolar/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickformatstops.py rename to plotly/validators/barpolar/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/barpolar/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/barpolar/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklabelposition.py b/plotly/validators/barpolar/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklabelposition.py rename to plotly/validators/barpolar/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklabelstep.py b/plotly/validators/barpolar/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklabelstep.py rename to plotly/validators/barpolar/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklen.py b/plotly/validators/barpolar/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticklen.py rename to plotly/validators/barpolar/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickmode.py b/plotly/validators/barpolar/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickmode.py rename to plotly/validators/barpolar/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickprefix.py b/plotly/validators/barpolar/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickprefix.py rename to plotly/validators/barpolar/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticks.py b/plotly/validators/barpolar/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticks.py rename to plotly/validators/barpolar/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticksuffix.py b/plotly/validators/barpolar/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticksuffix.py rename to plotly/validators/barpolar/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticktext.py b/plotly/validators/barpolar/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticktext.py rename to plotly/validators/barpolar/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticktextsrc.py b/plotly/validators/barpolar/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ticktextsrc.py rename to plotly/validators/barpolar/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickvals.py b/plotly/validators/barpolar/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickvals.py rename to plotly/validators/barpolar/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickvalssrc.py b/plotly/validators/barpolar/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickvalssrc.py rename to plotly/validators/barpolar/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickwidth.py b/plotly/validators/barpolar/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_tickwidth.py rename to plotly/validators/barpolar/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_title.py b/plotly/validators/barpolar/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_title.py rename to plotly/validators/barpolar/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_x.py b/plotly/validators/barpolar/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_x.py rename to plotly/validators/barpolar/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_xanchor.py b/plotly/validators/barpolar/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_xanchor.py rename to plotly/validators/barpolar/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_xpad.py b/plotly/validators/barpolar/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_xpad.py rename to plotly/validators/barpolar/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_xref.py b/plotly/validators/barpolar/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_xref.py rename to plotly/validators/barpolar/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_y.py b/plotly/validators/barpolar/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_y.py rename to plotly/validators/barpolar/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_yanchor.py b/plotly/validators/barpolar/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_yanchor.py rename to plotly/validators/barpolar/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ypad.py b/plotly/validators/barpolar/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_ypad.py rename to plotly/validators/barpolar/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_yref.py b/plotly/validators/barpolar/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/_yref.py rename to plotly/validators/barpolar/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/__init__.py b/plotly/validators/barpolar/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/__init__.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_color.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_color.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_family.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_family.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_shadow.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_size.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_size.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_style.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_style.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_textcase.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_variant.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_variant.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_weight.py b/plotly/validators/barpolar/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickfont/_weight.py rename to plotly/validators/barpolar/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/barpolar/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/barpolar/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/barpolar/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/barpolar/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/barpolar/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/barpolar/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_name.py b/plotly/validators/barpolar/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/barpolar/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/barpolar/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/barpolar/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_value.py b/plotly/validators/barpolar/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/barpolar/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/__init__.py b/plotly/validators/barpolar/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/__init__.py rename to plotly/validators/barpolar/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/_font.py b/plotly/validators/barpolar/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/_font.py rename to plotly/validators/barpolar/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/_side.py b/plotly/validators/barpolar/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/_side.py rename to plotly/validators/barpolar/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/_text.py b/plotly/validators/barpolar/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/_text.py rename to plotly/validators/barpolar/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/__init__.py b/plotly/validators/barpolar/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/__init__.py rename to plotly/validators/barpolar/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_color.py b/plotly/validators/barpolar/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_color.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_family.py b/plotly/validators/barpolar/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_family.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_lineposition.py b/plotly/validators/barpolar/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_shadow.py b/plotly/validators/barpolar/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_shadow.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_size.py b/plotly/validators/barpolar/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_size.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_style.py b/plotly/validators/barpolar/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_style.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_textcase.py b/plotly/validators/barpolar/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_textcase.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_variant.py b/plotly/validators/barpolar/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_variant.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_weight.py b/plotly/validators/barpolar/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/colorbar/title/font/_weight.py rename to plotly/validators/barpolar/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/__init__.py b/plotly/validators/barpolar/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/__init__.py rename to plotly/validators/barpolar/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_autocolorscale.py b/plotly/validators/barpolar/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_autocolorscale.py rename to plotly/validators/barpolar/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_cauto.py b/plotly/validators/barpolar/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_cauto.py rename to plotly/validators/barpolar/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_cmax.py b/plotly/validators/barpolar/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_cmax.py rename to plotly/validators/barpolar/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_cmid.py b/plotly/validators/barpolar/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_cmid.py rename to plotly/validators/barpolar/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_cmin.py b/plotly/validators/barpolar/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_cmin.py rename to plotly/validators/barpolar/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_color.py b/plotly/validators/barpolar/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_color.py rename to plotly/validators/barpolar/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_coloraxis.py b/plotly/validators/barpolar/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_coloraxis.py rename to plotly/validators/barpolar/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_colorscale.py b/plotly/validators/barpolar/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_colorscale.py rename to plotly/validators/barpolar/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_colorsrc.py b/plotly/validators/barpolar/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_colorsrc.py rename to plotly/validators/barpolar/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_reversescale.py b/plotly/validators/barpolar/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_reversescale.py rename to plotly/validators/barpolar/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_width.py b/plotly/validators/barpolar/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_width.py rename to plotly/validators/barpolar/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/line/_widthsrc.py b/plotly/validators/barpolar/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/line/_widthsrc.py rename to plotly/validators/barpolar/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/__init__.py b/plotly/validators/barpolar/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/__init__.py rename to plotly/validators/barpolar/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_bgcolor.py b/plotly/validators/barpolar/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_bgcolor.py rename to plotly/validators/barpolar/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_bgcolorsrc.py b/plotly/validators/barpolar/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_bgcolorsrc.py rename to plotly/validators/barpolar/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fgcolor.py b/plotly/validators/barpolar/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fgcolor.py rename to plotly/validators/barpolar/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fgcolorsrc.py b/plotly/validators/barpolar/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fgcolorsrc.py rename to plotly/validators/barpolar/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fgopacity.py b/plotly/validators/barpolar/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fgopacity.py rename to plotly/validators/barpolar/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fillmode.py b/plotly/validators/barpolar/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_fillmode.py rename to plotly/validators/barpolar/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_shape.py b/plotly/validators/barpolar/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_shape.py rename to plotly/validators/barpolar/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_shapesrc.py b/plotly/validators/barpolar/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_shapesrc.py rename to plotly/validators/barpolar/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_size.py b/plotly/validators/barpolar/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_size.py rename to plotly/validators/barpolar/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_sizesrc.py b/plotly/validators/barpolar/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_sizesrc.py rename to plotly/validators/barpolar/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_solidity.py b/plotly/validators/barpolar/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_solidity.py rename to plotly/validators/barpolar/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/barpolar/marker/pattern/_soliditysrc.py b/plotly/validators/barpolar/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/marker/pattern/_soliditysrc.py rename to plotly/validators/barpolar/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/__init__.py b/plotly/validators/barpolar/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/__init__.py rename to plotly/validators/barpolar/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/_marker.py b/plotly/validators/barpolar/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/_marker.py rename to plotly/validators/barpolar/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/_textfont.py b/plotly/validators/barpolar/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/_textfont.py rename to plotly/validators/barpolar/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/marker/__init__.py b/plotly/validators/barpolar/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/marker/__init__.py rename to plotly/validators/barpolar/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/marker/_color.py b/plotly/validators/barpolar/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/marker/_color.py rename to plotly/validators/barpolar/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/marker/_opacity.py b/plotly/validators/barpolar/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/marker/_opacity.py rename to plotly/validators/barpolar/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/textfont/__init__.py b/plotly/validators/barpolar/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/textfont/__init__.py rename to plotly/validators/barpolar/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/selected/textfont/_color.py b/plotly/validators/barpolar/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/selected/textfont/_color.py rename to plotly/validators/barpolar/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/stream/__init__.py b/plotly/validators/barpolar/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/stream/__init__.py rename to plotly/validators/barpolar/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/stream/_maxpoints.py b/plotly/validators/barpolar/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/stream/_maxpoints.py rename to plotly/validators/barpolar/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/barpolar/stream/_token.py b/plotly/validators/barpolar/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/stream/_token.py rename to plotly/validators/barpolar/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/__init__.py b/plotly/validators/barpolar/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/__init__.py rename to plotly/validators/barpolar/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/_marker.py b/plotly/validators/barpolar/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/_marker.py rename to plotly/validators/barpolar/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/_textfont.py b/plotly/validators/barpolar/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/_textfont.py rename to plotly/validators/barpolar/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/marker/__init__.py b/plotly/validators/barpolar/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/marker/__init__.py rename to plotly/validators/barpolar/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/marker/_color.py b/plotly/validators/barpolar/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/marker/_color.py rename to plotly/validators/barpolar/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/marker/_opacity.py b/plotly/validators/barpolar/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/marker/_opacity.py rename to plotly/validators/barpolar/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/textfont/__init__.py b/plotly/validators/barpolar/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/textfont/__init__.py rename to plotly/validators/barpolar/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/barpolar/unselected/textfont/_color.py b/plotly/validators/barpolar/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/barpolar/unselected/textfont/_color.py rename to plotly/validators/barpolar/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/box/__init__.py b/plotly/validators/box/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/__init__.py rename to plotly/validators/box/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/_alignmentgroup.py b/plotly/validators/box/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_alignmentgroup.py rename to plotly/validators/box/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/box/_boxmean.py b/plotly/validators/box/_boxmean.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_boxmean.py rename to plotly/validators/box/_boxmean.py diff --git a/packages/python/plotly/plotly/validators/box/_boxpoints.py b/plotly/validators/box/_boxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_boxpoints.py rename to plotly/validators/box/_boxpoints.py diff --git a/packages/python/plotly/plotly/validators/box/_customdata.py b/plotly/validators/box/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_customdata.py rename to plotly/validators/box/_customdata.py diff --git a/packages/python/plotly/plotly/validators/box/_customdatasrc.py b/plotly/validators/box/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_customdatasrc.py rename to plotly/validators/box/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/box/_dx.py b/plotly/validators/box/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_dx.py rename to plotly/validators/box/_dx.py diff --git a/packages/python/plotly/plotly/validators/box/_dy.py b/plotly/validators/box/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_dy.py rename to plotly/validators/box/_dy.py diff --git a/packages/python/plotly/plotly/validators/box/_fillcolor.py b/plotly/validators/box/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_fillcolor.py rename to plotly/validators/box/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/box/_hoverinfo.py b/plotly/validators/box/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hoverinfo.py rename to plotly/validators/box/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/box/_hoverinfosrc.py b/plotly/validators/box/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hoverinfosrc.py rename to plotly/validators/box/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/box/_hoverlabel.py b/plotly/validators/box/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hoverlabel.py rename to plotly/validators/box/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/box/_hoveron.py b/plotly/validators/box/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hoveron.py rename to plotly/validators/box/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/box/_hovertemplate.py b/plotly/validators/box/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hovertemplate.py rename to plotly/validators/box/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/box/_hovertemplatesrc.py b/plotly/validators/box/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hovertemplatesrc.py rename to plotly/validators/box/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/box/_hovertext.py b/plotly/validators/box/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hovertext.py rename to plotly/validators/box/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/box/_hovertextsrc.py b/plotly/validators/box/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_hovertextsrc.py rename to plotly/validators/box/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/box/_ids.py b/plotly/validators/box/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_ids.py rename to plotly/validators/box/_ids.py diff --git a/packages/python/plotly/plotly/validators/box/_idssrc.py b/plotly/validators/box/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_idssrc.py rename to plotly/validators/box/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/box/_jitter.py b/plotly/validators/box/_jitter.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_jitter.py rename to plotly/validators/box/_jitter.py diff --git a/packages/python/plotly/plotly/validators/box/_legend.py b/plotly/validators/box/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_legend.py rename to plotly/validators/box/_legend.py diff --git a/packages/python/plotly/plotly/validators/box/_legendgroup.py b/plotly/validators/box/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_legendgroup.py rename to plotly/validators/box/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/box/_legendgrouptitle.py b/plotly/validators/box/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_legendgrouptitle.py rename to plotly/validators/box/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/box/_legendrank.py b/plotly/validators/box/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_legendrank.py rename to plotly/validators/box/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/box/_legendwidth.py b/plotly/validators/box/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_legendwidth.py rename to plotly/validators/box/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/box/_line.py b/plotly/validators/box/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_line.py rename to plotly/validators/box/_line.py diff --git a/packages/python/plotly/plotly/validators/box/_lowerfence.py b/plotly/validators/box/_lowerfence.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_lowerfence.py rename to plotly/validators/box/_lowerfence.py diff --git a/packages/python/plotly/plotly/validators/box/_lowerfencesrc.py b/plotly/validators/box/_lowerfencesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_lowerfencesrc.py rename to plotly/validators/box/_lowerfencesrc.py diff --git a/packages/python/plotly/plotly/validators/box/_marker.py b/plotly/validators/box/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_marker.py rename to plotly/validators/box/_marker.py diff --git a/packages/python/plotly/plotly/validators/box/_mean.py b/plotly/validators/box/_mean.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_mean.py rename to plotly/validators/box/_mean.py diff --git a/packages/python/plotly/plotly/validators/box/_meansrc.py b/plotly/validators/box/_meansrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_meansrc.py rename to plotly/validators/box/_meansrc.py diff --git a/packages/python/plotly/plotly/validators/box/_median.py b/plotly/validators/box/_median.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_median.py rename to plotly/validators/box/_median.py diff --git a/packages/python/plotly/plotly/validators/box/_mediansrc.py b/plotly/validators/box/_mediansrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_mediansrc.py rename to plotly/validators/box/_mediansrc.py diff --git a/packages/python/plotly/plotly/validators/box/_meta.py b/plotly/validators/box/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_meta.py rename to plotly/validators/box/_meta.py diff --git a/packages/python/plotly/plotly/validators/box/_metasrc.py b/plotly/validators/box/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_metasrc.py rename to plotly/validators/box/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/box/_name.py b/plotly/validators/box/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_name.py rename to plotly/validators/box/_name.py diff --git a/packages/python/plotly/plotly/validators/box/_notched.py b/plotly/validators/box/_notched.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_notched.py rename to plotly/validators/box/_notched.py diff --git a/packages/python/plotly/plotly/validators/box/_notchspan.py b/plotly/validators/box/_notchspan.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_notchspan.py rename to plotly/validators/box/_notchspan.py diff --git a/packages/python/plotly/plotly/validators/box/_notchspansrc.py b/plotly/validators/box/_notchspansrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_notchspansrc.py rename to plotly/validators/box/_notchspansrc.py diff --git a/packages/python/plotly/plotly/validators/box/_notchwidth.py b/plotly/validators/box/_notchwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_notchwidth.py rename to plotly/validators/box/_notchwidth.py diff --git a/packages/python/plotly/plotly/validators/box/_offsetgroup.py b/plotly/validators/box/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_offsetgroup.py rename to plotly/validators/box/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/box/_opacity.py b/plotly/validators/box/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_opacity.py rename to plotly/validators/box/_opacity.py diff --git a/packages/python/plotly/plotly/validators/box/_orientation.py b/plotly/validators/box/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_orientation.py rename to plotly/validators/box/_orientation.py diff --git a/packages/python/plotly/plotly/validators/box/_pointpos.py b/plotly/validators/box/_pointpos.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_pointpos.py rename to plotly/validators/box/_pointpos.py diff --git a/packages/python/plotly/plotly/validators/box/_q1.py b/plotly/validators/box/_q1.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_q1.py rename to plotly/validators/box/_q1.py diff --git a/packages/python/plotly/plotly/validators/box/_q1src.py b/plotly/validators/box/_q1src.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_q1src.py rename to plotly/validators/box/_q1src.py diff --git a/packages/python/plotly/plotly/validators/box/_q3.py b/plotly/validators/box/_q3.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_q3.py rename to plotly/validators/box/_q3.py diff --git a/packages/python/plotly/plotly/validators/box/_q3src.py b/plotly/validators/box/_q3src.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_q3src.py rename to plotly/validators/box/_q3src.py diff --git a/packages/python/plotly/plotly/validators/box/_quartilemethod.py b/plotly/validators/box/_quartilemethod.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_quartilemethod.py rename to plotly/validators/box/_quartilemethod.py diff --git a/packages/python/plotly/plotly/validators/box/_sd.py b/plotly/validators/box/_sd.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_sd.py rename to plotly/validators/box/_sd.py diff --git a/packages/python/plotly/plotly/validators/box/_sdmultiple.py b/plotly/validators/box/_sdmultiple.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_sdmultiple.py rename to plotly/validators/box/_sdmultiple.py diff --git a/packages/python/plotly/plotly/validators/box/_sdsrc.py b/plotly/validators/box/_sdsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_sdsrc.py rename to plotly/validators/box/_sdsrc.py diff --git a/packages/python/plotly/plotly/validators/box/_selected.py b/plotly/validators/box/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_selected.py rename to plotly/validators/box/_selected.py diff --git a/packages/python/plotly/plotly/validators/box/_selectedpoints.py b/plotly/validators/box/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_selectedpoints.py rename to plotly/validators/box/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/box/_showlegend.py b/plotly/validators/box/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_showlegend.py rename to plotly/validators/box/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/box/_showwhiskers.py b/plotly/validators/box/_showwhiskers.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_showwhiskers.py rename to plotly/validators/box/_showwhiskers.py diff --git a/packages/python/plotly/plotly/validators/box/_sizemode.py b/plotly/validators/box/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_sizemode.py rename to plotly/validators/box/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/box/_stream.py b/plotly/validators/box/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_stream.py rename to plotly/validators/box/_stream.py diff --git a/packages/python/plotly/plotly/validators/box/_text.py b/plotly/validators/box/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_text.py rename to plotly/validators/box/_text.py diff --git a/packages/python/plotly/plotly/validators/box/_textsrc.py b/plotly/validators/box/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_textsrc.py rename to plotly/validators/box/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/box/_uid.py b/plotly/validators/box/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_uid.py rename to plotly/validators/box/_uid.py diff --git a/packages/python/plotly/plotly/validators/box/_uirevision.py b/plotly/validators/box/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_uirevision.py rename to plotly/validators/box/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/box/_unselected.py b/plotly/validators/box/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_unselected.py rename to plotly/validators/box/_unselected.py diff --git a/packages/python/plotly/plotly/validators/box/_upperfence.py b/plotly/validators/box/_upperfence.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_upperfence.py rename to plotly/validators/box/_upperfence.py diff --git a/packages/python/plotly/plotly/validators/box/_upperfencesrc.py b/plotly/validators/box/_upperfencesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_upperfencesrc.py rename to plotly/validators/box/_upperfencesrc.py diff --git a/packages/python/plotly/plotly/validators/box/_visible.py b/plotly/validators/box/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_visible.py rename to plotly/validators/box/_visible.py diff --git a/packages/python/plotly/plotly/validators/box/_whiskerwidth.py b/plotly/validators/box/_whiskerwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_whiskerwidth.py rename to plotly/validators/box/_whiskerwidth.py diff --git a/packages/python/plotly/plotly/validators/box/_width.py b/plotly/validators/box/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_width.py rename to plotly/validators/box/_width.py diff --git a/packages/python/plotly/plotly/validators/box/_x.py b/plotly/validators/box/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_x.py rename to plotly/validators/box/_x.py diff --git a/packages/python/plotly/plotly/validators/box/_x0.py b/plotly/validators/box/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_x0.py rename to plotly/validators/box/_x0.py diff --git a/packages/python/plotly/plotly/validators/box/_xaxis.py b/plotly/validators/box/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xaxis.py rename to plotly/validators/box/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/box/_xcalendar.py b/plotly/validators/box/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xcalendar.py rename to plotly/validators/box/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/box/_xhoverformat.py b/plotly/validators/box/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xhoverformat.py rename to plotly/validators/box/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/box/_xperiod.py b/plotly/validators/box/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xperiod.py rename to plotly/validators/box/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/box/_xperiod0.py b/plotly/validators/box/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xperiod0.py rename to plotly/validators/box/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/box/_xperiodalignment.py b/plotly/validators/box/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xperiodalignment.py rename to plotly/validators/box/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/box/_xsrc.py b/plotly/validators/box/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_xsrc.py rename to plotly/validators/box/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/box/_y.py b/plotly/validators/box/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_y.py rename to plotly/validators/box/_y.py diff --git a/packages/python/plotly/plotly/validators/box/_y0.py b/plotly/validators/box/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_y0.py rename to plotly/validators/box/_y0.py diff --git a/packages/python/plotly/plotly/validators/box/_yaxis.py b/plotly/validators/box/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_yaxis.py rename to plotly/validators/box/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/box/_ycalendar.py b/plotly/validators/box/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_ycalendar.py rename to plotly/validators/box/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/box/_yhoverformat.py b/plotly/validators/box/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_yhoverformat.py rename to plotly/validators/box/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/box/_yperiod.py b/plotly/validators/box/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_yperiod.py rename to plotly/validators/box/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/box/_yperiod0.py b/plotly/validators/box/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_yperiod0.py rename to plotly/validators/box/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/box/_yperiodalignment.py b/plotly/validators/box/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_yperiodalignment.py rename to plotly/validators/box/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/box/_ysrc.py b/plotly/validators/box/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_ysrc.py rename to plotly/validators/box/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/box/_zorder.py b/plotly/validators/box/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/_zorder.py rename to plotly/validators/box/_zorder.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/__init__.py b/plotly/validators/box/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/__init__.py rename to plotly/validators/box/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_align.py b/plotly/validators/box/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_align.py rename to plotly/validators/box/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_alignsrc.py b/plotly/validators/box/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_alignsrc.py rename to plotly/validators/box/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_bgcolor.py b/plotly/validators/box/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_bgcolor.py rename to plotly/validators/box/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_bgcolorsrc.py b/plotly/validators/box/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_bgcolorsrc.py rename to plotly/validators/box/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_bordercolor.py b/plotly/validators/box/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_bordercolor.py rename to plotly/validators/box/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_bordercolorsrc.py b/plotly/validators/box/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_bordercolorsrc.py rename to plotly/validators/box/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_font.py b/plotly/validators/box/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_font.py rename to plotly/validators/box/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_namelength.py b/plotly/validators/box/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_namelength.py rename to plotly/validators/box/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/_namelengthsrc.py b/plotly/validators/box/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/_namelengthsrc.py rename to plotly/validators/box/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/__init__.py b/plotly/validators/box/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/__init__.py rename to plotly/validators/box/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_color.py b/plotly/validators/box/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_color.py rename to plotly/validators/box/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_colorsrc.py b/plotly/validators/box/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_colorsrc.py rename to plotly/validators/box/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_family.py b/plotly/validators/box/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_family.py rename to plotly/validators/box/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_familysrc.py b/plotly/validators/box/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_familysrc.py rename to plotly/validators/box/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_lineposition.py b/plotly/validators/box/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_lineposition.py rename to plotly/validators/box/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_linepositionsrc.py b/plotly/validators/box/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/box/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_shadow.py b/plotly/validators/box/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_shadow.py rename to plotly/validators/box/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_shadowsrc.py b/plotly/validators/box/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_shadowsrc.py rename to plotly/validators/box/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_size.py b/plotly/validators/box/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_size.py rename to plotly/validators/box/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_sizesrc.py b/plotly/validators/box/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_sizesrc.py rename to plotly/validators/box/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_style.py b/plotly/validators/box/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_style.py rename to plotly/validators/box/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_stylesrc.py b/plotly/validators/box/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_stylesrc.py rename to plotly/validators/box/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_textcase.py b/plotly/validators/box/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_textcase.py rename to plotly/validators/box/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_textcasesrc.py b/plotly/validators/box/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_textcasesrc.py rename to plotly/validators/box/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_variant.py b/plotly/validators/box/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_variant.py rename to plotly/validators/box/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_variantsrc.py b/plotly/validators/box/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_variantsrc.py rename to plotly/validators/box/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_weight.py b/plotly/validators/box/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_weight.py rename to plotly/validators/box/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/box/hoverlabel/font/_weightsrc.py b/plotly/validators/box/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/hoverlabel/font/_weightsrc.py rename to plotly/validators/box/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/__init__.py b/plotly/validators/box/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/__init__.py rename to plotly/validators/box/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/_font.py b/plotly/validators/box/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/_font.py rename to plotly/validators/box/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/_text.py b/plotly/validators/box/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/_text.py rename to plotly/validators/box/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/__init__.py b/plotly/validators/box/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/__init__.py rename to plotly/validators/box/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_color.py b/plotly/validators/box/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_color.py rename to plotly/validators/box/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_family.py b/plotly/validators/box/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_family.py rename to plotly/validators/box/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_lineposition.py b/plotly/validators/box/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_lineposition.py rename to plotly/validators/box/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_shadow.py b/plotly/validators/box/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_shadow.py rename to plotly/validators/box/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_size.py b/plotly/validators/box/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_size.py rename to plotly/validators/box/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_style.py b/plotly/validators/box/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_style.py rename to plotly/validators/box/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_textcase.py b/plotly/validators/box/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_textcase.py rename to plotly/validators/box/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_variant.py b/plotly/validators/box/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_variant.py rename to plotly/validators/box/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_weight.py b/plotly/validators/box/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/legendgrouptitle/font/_weight.py rename to plotly/validators/box/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/box/line/__init__.py b/plotly/validators/box/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/line/__init__.py rename to plotly/validators/box/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/line/_color.py b/plotly/validators/box/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/line/_color.py rename to plotly/validators/box/line/_color.py diff --git a/packages/python/plotly/plotly/validators/box/line/_width.py b/plotly/validators/box/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/line/_width.py rename to plotly/validators/box/line/_width.py diff --git a/packages/python/plotly/plotly/validators/box/marker/__init__.py b/plotly/validators/box/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/__init__.py rename to plotly/validators/box/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_angle.py b/plotly/validators/box/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_angle.py rename to plotly/validators/box/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_color.py b/plotly/validators/box/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_color.py rename to plotly/validators/box/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_line.py b/plotly/validators/box/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_line.py rename to plotly/validators/box/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_opacity.py b/plotly/validators/box/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_opacity.py rename to plotly/validators/box/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_outliercolor.py b/plotly/validators/box/marker/_outliercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_outliercolor.py rename to plotly/validators/box/marker/_outliercolor.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_size.py b/plotly/validators/box/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_size.py rename to plotly/validators/box/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/box/marker/_symbol.py b/plotly/validators/box/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/_symbol.py rename to plotly/validators/box/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/box/marker/line/__init__.py b/plotly/validators/box/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/line/__init__.py rename to plotly/validators/box/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/marker/line/_color.py b/plotly/validators/box/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/line/_color.py rename to plotly/validators/box/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/box/marker/line/_outliercolor.py b/plotly/validators/box/marker/line/_outliercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/line/_outliercolor.py rename to plotly/validators/box/marker/line/_outliercolor.py diff --git a/packages/python/plotly/plotly/validators/box/marker/line/_outlierwidth.py b/plotly/validators/box/marker/line/_outlierwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/line/_outlierwidth.py rename to plotly/validators/box/marker/line/_outlierwidth.py diff --git a/packages/python/plotly/plotly/validators/box/marker/line/_width.py b/plotly/validators/box/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/marker/line/_width.py rename to plotly/validators/box/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/box/selected/__init__.py b/plotly/validators/box/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/selected/__init__.py rename to plotly/validators/box/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/selected/_marker.py b/plotly/validators/box/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/selected/_marker.py rename to plotly/validators/box/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/box/selected/marker/__init__.py b/plotly/validators/box/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/selected/marker/__init__.py rename to plotly/validators/box/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/selected/marker/_color.py b/plotly/validators/box/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/selected/marker/_color.py rename to plotly/validators/box/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/box/selected/marker/_opacity.py b/plotly/validators/box/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/selected/marker/_opacity.py rename to plotly/validators/box/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/box/selected/marker/_size.py b/plotly/validators/box/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/selected/marker/_size.py rename to plotly/validators/box/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/box/stream/__init__.py b/plotly/validators/box/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/stream/__init__.py rename to plotly/validators/box/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/stream/_maxpoints.py b/plotly/validators/box/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/stream/_maxpoints.py rename to plotly/validators/box/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/box/stream/_token.py b/plotly/validators/box/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/stream/_token.py rename to plotly/validators/box/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/box/unselected/__init__.py b/plotly/validators/box/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/unselected/__init__.py rename to plotly/validators/box/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/unselected/_marker.py b/plotly/validators/box/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/unselected/_marker.py rename to plotly/validators/box/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/box/unselected/marker/__init__.py b/plotly/validators/box/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/unselected/marker/__init__.py rename to plotly/validators/box/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/box/unselected/marker/_color.py b/plotly/validators/box/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/unselected/marker/_color.py rename to plotly/validators/box/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/box/unselected/marker/_opacity.py b/plotly/validators/box/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/unselected/marker/_opacity.py rename to plotly/validators/box/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/box/unselected/marker/_size.py b/plotly/validators/box/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/box/unselected/marker/_size.py rename to plotly/validators/box/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/candlestick/__init__.py b/plotly/validators/candlestick/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/__init__.py rename to plotly/validators/candlestick/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_close.py b/plotly/validators/candlestick/_close.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_close.py rename to plotly/validators/candlestick/_close.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_closesrc.py b/plotly/validators/candlestick/_closesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_closesrc.py rename to plotly/validators/candlestick/_closesrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_customdata.py b/plotly/validators/candlestick/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_customdata.py rename to plotly/validators/candlestick/_customdata.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_customdatasrc.py b/plotly/validators/candlestick/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_customdatasrc.py rename to plotly/validators/candlestick/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_decreasing.py b/plotly/validators/candlestick/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_decreasing.py rename to plotly/validators/candlestick/_decreasing.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_high.py b/plotly/validators/candlestick/_high.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_high.py rename to plotly/validators/candlestick/_high.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_highsrc.py b/plotly/validators/candlestick/_highsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_highsrc.py rename to plotly/validators/candlestick/_highsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_hoverinfo.py b/plotly/validators/candlestick/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_hoverinfo.py rename to plotly/validators/candlestick/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_hoverinfosrc.py b/plotly/validators/candlestick/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_hoverinfosrc.py rename to plotly/validators/candlestick/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_hoverlabel.py b/plotly/validators/candlestick/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_hoverlabel.py rename to plotly/validators/candlestick/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_hovertext.py b/plotly/validators/candlestick/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_hovertext.py rename to plotly/validators/candlestick/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_hovertextsrc.py b/plotly/validators/candlestick/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_hovertextsrc.py rename to plotly/validators/candlestick/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_ids.py b/plotly/validators/candlestick/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_ids.py rename to plotly/validators/candlestick/_ids.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_idssrc.py b/plotly/validators/candlestick/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_idssrc.py rename to plotly/validators/candlestick/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_increasing.py b/plotly/validators/candlestick/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_increasing.py rename to plotly/validators/candlestick/_increasing.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_legend.py b/plotly/validators/candlestick/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_legend.py rename to plotly/validators/candlestick/_legend.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_legendgroup.py b/plotly/validators/candlestick/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_legendgroup.py rename to plotly/validators/candlestick/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_legendgrouptitle.py b/plotly/validators/candlestick/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_legendgrouptitle.py rename to plotly/validators/candlestick/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_legendrank.py b/plotly/validators/candlestick/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_legendrank.py rename to plotly/validators/candlestick/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_legendwidth.py b/plotly/validators/candlestick/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_legendwidth.py rename to plotly/validators/candlestick/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_line.py b/plotly/validators/candlestick/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_line.py rename to plotly/validators/candlestick/_line.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_low.py b/plotly/validators/candlestick/_low.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_low.py rename to plotly/validators/candlestick/_low.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_lowsrc.py b/plotly/validators/candlestick/_lowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_lowsrc.py rename to plotly/validators/candlestick/_lowsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_meta.py b/plotly/validators/candlestick/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_meta.py rename to plotly/validators/candlestick/_meta.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_metasrc.py b/plotly/validators/candlestick/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_metasrc.py rename to plotly/validators/candlestick/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_name.py b/plotly/validators/candlestick/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_name.py rename to plotly/validators/candlestick/_name.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_opacity.py b/plotly/validators/candlestick/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_opacity.py rename to plotly/validators/candlestick/_opacity.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_open.py b/plotly/validators/candlestick/_open.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_open.py rename to plotly/validators/candlestick/_open.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_opensrc.py b/plotly/validators/candlestick/_opensrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_opensrc.py rename to plotly/validators/candlestick/_opensrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_selectedpoints.py b/plotly/validators/candlestick/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_selectedpoints.py rename to plotly/validators/candlestick/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_showlegend.py b/plotly/validators/candlestick/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_showlegend.py rename to plotly/validators/candlestick/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_stream.py b/plotly/validators/candlestick/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_stream.py rename to plotly/validators/candlestick/_stream.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_text.py b/plotly/validators/candlestick/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_text.py rename to plotly/validators/candlestick/_text.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_textsrc.py b/plotly/validators/candlestick/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_textsrc.py rename to plotly/validators/candlestick/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_uid.py b/plotly/validators/candlestick/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_uid.py rename to plotly/validators/candlestick/_uid.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_uirevision.py b/plotly/validators/candlestick/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_uirevision.py rename to plotly/validators/candlestick/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_visible.py b/plotly/validators/candlestick/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_visible.py rename to plotly/validators/candlestick/_visible.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_whiskerwidth.py b/plotly/validators/candlestick/_whiskerwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_whiskerwidth.py rename to plotly/validators/candlestick/_whiskerwidth.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_x.py b/plotly/validators/candlestick/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_x.py rename to plotly/validators/candlestick/_x.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xaxis.py b/plotly/validators/candlestick/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xaxis.py rename to plotly/validators/candlestick/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xcalendar.py b/plotly/validators/candlestick/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xcalendar.py rename to plotly/validators/candlestick/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xhoverformat.py b/plotly/validators/candlestick/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xhoverformat.py rename to plotly/validators/candlestick/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xperiod.py b/plotly/validators/candlestick/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xperiod.py rename to plotly/validators/candlestick/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xperiod0.py b/plotly/validators/candlestick/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xperiod0.py rename to plotly/validators/candlestick/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xperiodalignment.py b/plotly/validators/candlestick/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xperiodalignment.py rename to plotly/validators/candlestick/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_xsrc.py b/plotly/validators/candlestick/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_xsrc.py rename to plotly/validators/candlestick/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_yaxis.py b/plotly/validators/candlestick/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_yaxis.py rename to plotly/validators/candlestick/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_yhoverformat.py b/plotly/validators/candlestick/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_yhoverformat.py rename to plotly/validators/candlestick/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/candlestick/_zorder.py b/plotly/validators/candlestick/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/_zorder.py rename to plotly/validators/candlestick/_zorder.py diff --git a/packages/python/plotly/plotly/validators/candlestick/decreasing/__init__.py b/plotly/validators/candlestick/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/decreasing/__init__.py rename to plotly/validators/candlestick/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/decreasing/_fillcolor.py b/plotly/validators/candlestick/decreasing/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/decreasing/_fillcolor.py rename to plotly/validators/candlestick/decreasing/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/candlestick/decreasing/_line.py b/plotly/validators/candlestick/decreasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/decreasing/_line.py rename to plotly/validators/candlestick/decreasing/_line.py diff --git a/packages/python/plotly/plotly/validators/candlestick/decreasing/line/__init__.py b/plotly/validators/candlestick/decreasing/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/decreasing/line/__init__.py rename to plotly/validators/candlestick/decreasing/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/decreasing/line/_color.py b/plotly/validators/candlestick/decreasing/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/decreasing/line/_color.py rename to plotly/validators/candlestick/decreasing/line/_color.py diff --git a/packages/python/plotly/plotly/validators/candlestick/decreasing/line/_width.py b/plotly/validators/candlestick/decreasing/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/decreasing/line/_width.py rename to plotly/validators/candlestick/decreasing/line/_width.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/__init__.py b/plotly/validators/candlestick/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/__init__.py rename to plotly/validators/candlestick/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_align.py b/plotly/validators/candlestick/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_align.py rename to plotly/validators/candlestick/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_alignsrc.py b/plotly/validators/candlestick/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_alignsrc.py rename to plotly/validators/candlestick/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bgcolor.py b/plotly/validators/candlestick/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bgcolor.py rename to plotly/validators/candlestick/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bgcolorsrc.py b/plotly/validators/candlestick/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bgcolorsrc.py rename to plotly/validators/candlestick/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bordercolor.py b/plotly/validators/candlestick/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bordercolor.py rename to plotly/validators/candlestick/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bordercolorsrc.py b/plotly/validators/candlestick/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_bordercolorsrc.py rename to plotly/validators/candlestick/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_font.py b/plotly/validators/candlestick/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_font.py rename to plotly/validators/candlestick/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_namelength.py b/plotly/validators/candlestick/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_namelength.py rename to plotly/validators/candlestick/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_namelengthsrc.py b/plotly/validators/candlestick/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_namelengthsrc.py rename to plotly/validators/candlestick/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/_split.py b/plotly/validators/candlestick/hoverlabel/_split.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/_split.py rename to plotly/validators/candlestick/hoverlabel/_split.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/__init__.py b/plotly/validators/candlestick/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/__init__.py rename to plotly/validators/candlestick/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_color.py b/plotly/validators/candlestick/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_color.py rename to plotly/validators/candlestick/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_colorsrc.py b/plotly/validators/candlestick/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_colorsrc.py rename to plotly/validators/candlestick/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_family.py b/plotly/validators/candlestick/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_family.py rename to plotly/validators/candlestick/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_familysrc.py b/plotly/validators/candlestick/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_familysrc.py rename to plotly/validators/candlestick/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_lineposition.py b/plotly/validators/candlestick/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_lineposition.py rename to plotly/validators/candlestick/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_linepositionsrc.py b/plotly/validators/candlestick/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/candlestick/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_shadow.py b/plotly/validators/candlestick/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_shadow.py rename to plotly/validators/candlestick/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_shadowsrc.py b/plotly/validators/candlestick/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_shadowsrc.py rename to plotly/validators/candlestick/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_size.py b/plotly/validators/candlestick/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_size.py rename to plotly/validators/candlestick/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_sizesrc.py b/plotly/validators/candlestick/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_sizesrc.py rename to plotly/validators/candlestick/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_style.py b/plotly/validators/candlestick/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_style.py rename to plotly/validators/candlestick/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_stylesrc.py b/plotly/validators/candlestick/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_stylesrc.py rename to plotly/validators/candlestick/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_textcase.py b/plotly/validators/candlestick/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_textcase.py rename to plotly/validators/candlestick/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_textcasesrc.py b/plotly/validators/candlestick/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_textcasesrc.py rename to plotly/validators/candlestick/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_variant.py b/plotly/validators/candlestick/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_variant.py rename to plotly/validators/candlestick/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_variantsrc.py b/plotly/validators/candlestick/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_variantsrc.py rename to plotly/validators/candlestick/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_weight.py b/plotly/validators/candlestick/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_weight.py rename to plotly/validators/candlestick/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_weightsrc.py b/plotly/validators/candlestick/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/hoverlabel/font/_weightsrc.py rename to plotly/validators/candlestick/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/candlestick/increasing/__init__.py b/plotly/validators/candlestick/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/increasing/__init__.py rename to plotly/validators/candlestick/increasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/increasing/_fillcolor.py b/plotly/validators/candlestick/increasing/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/increasing/_fillcolor.py rename to plotly/validators/candlestick/increasing/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/candlestick/increasing/_line.py b/plotly/validators/candlestick/increasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/increasing/_line.py rename to plotly/validators/candlestick/increasing/_line.py diff --git a/packages/python/plotly/plotly/validators/candlestick/increasing/line/__init__.py b/plotly/validators/candlestick/increasing/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/increasing/line/__init__.py rename to plotly/validators/candlestick/increasing/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/increasing/line/_color.py b/plotly/validators/candlestick/increasing/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/increasing/line/_color.py rename to plotly/validators/candlestick/increasing/line/_color.py diff --git a/packages/python/plotly/plotly/validators/candlestick/increasing/line/_width.py b/plotly/validators/candlestick/increasing/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/increasing/line/_width.py rename to plotly/validators/candlestick/increasing/line/_width.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/__init__.py b/plotly/validators/candlestick/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/__init__.py rename to plotly/validators/candlestick/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/_font.py b/plotly/validators/candlestick/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/_font.py rename to plotly/validators/candlestick/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/_text.py b/plotly/validators/candlestick/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/_text.py rename to plotly/validators/candlestick/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/__init__.py b/plotly/validators/candlestick/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/__init__.py rename to plotly/validators/candlestick/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_color.py b/plotly/validators/candlestick/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_color.py rename to plotly/validators/candlestick/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_family.py b/plotly/validators/candlestick/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_family.py rename to plotly/validators/candlestick/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_lineposition.py b/plotly/validators/candlestick/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_lineposition.py rename to plotly/validators/candlestick/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_shadow.py b/plotly/validators/candlestick/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_shadow.py rename to plotly/validators/candlestick/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_size.py b/plotly/validators/candlestick/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_size.py rename to plotly/validators/candlestick/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_style.py b/plotly/validators/candlestick/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_style.py rename to plotly/validators/candlestick/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_textcase.py b/plotly/validators/candlestick/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_textcase.py rename to plotly/validators/candlestick/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_variant.py b/plotly/validators/candlestick/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_variant.py rename to plotly/validators/candlestick/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_weight.py b/plotly/validators/candlestick/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/legendgrouptitle/font/_weight.py rename to plotly/validators/candlestick/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/candlestick/line/__init__.py b/plotly/validators/candlestick/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/line/__init__.py rename to plotly/validators/candlestick/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/line/_width.py b/plotly/validators/candlestick/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/line/_width.py rename to plotly/validators/candlestick/line/_width.py diff --git a/packages/python/plotly/plotly/validators/candlestick/stream/__init__.py b/plotly/validators/candlestick/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/stream/__init__.py rename to plotly/validators/candlestick/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/candlestick/stream/_maxpoints.py b/plotly/validators/candlestick/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/stream/_maxpoints.py rename to plotly/validators/candlestick/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/candlestick/stream/_token.py b/plotly/validators/candlestick/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/candlestick/stream/_token.py rename to plotly/validators/candlestick/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/carpet/__init__.py b/plotly/validators/carpet/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/__init__.py rename to plotly/validators/carpet/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/_a.py b/plotly/validators/carpet/_a.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_a.py rename to plotly/validators/carpet/_a.py diff --git a/packages/python/plotly/plotly/validators/carpet/_a0.py b/plotly/validators/carpet/_a0.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_a0.py rename to plotly/validators/carpet/_a0.py diff --git a/packages/python/plotly/plotly/validators/carpet/_aaxis.py b/plotly/validators/carpet/_aaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_aaxis.py rename to plotly/validators/carpet/_aaxis.py diff --git a/packages/python/plotly/plotly/validators/carpet/_asrc.py b/plotly/validators/carpet/_asrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_asrc.py rename to plotly/validators/carpet/_asrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_b.py b/plotly/validators/carpet/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_b.py rename to plotly/validators/carpet/_b.py diff --git a/packages/python/plotly/plotly/validators/carpet/_b0.py b/plotly/validators/carpet/_b0.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_b0.py rename to plotly/validators/carpet/_b0.py diff --git a/packages/python/plotly/plotly/validators/carpet/_baxis.py b/plotly/validators/carpet/_baxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_baxis.py rename to plotly/validators/carpet/_baxis.py diff --git a/packages/python/plotly/plotly/validators/carpet/_bsrc.py b/plotly/validators/carpet/_bsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_bsrc.py rename to plotly/validators/carpet/_bsrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_carpet.py b/plotly/validators/carpet/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_carpet.py rename to plotly/validators/carpet/_carpet.py diff --git a/packages/python/plotly/plotly/validators/carpet/_cheaterslope.py b/plotly/validators/carpet/_cheaterslope.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_cheaterslope.py rename to plotly/validators/carpet/_cheaterslope.py diff --git a/packages/python/plotly/plotly/validators/carpet/_color.py b/plotly/validators/carpet/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_color.py rename to plotly/validators/carpet/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/_customdata.py b/plotly/validators/carpet/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_customdata.py rename to plotly/validators/carpet/_customdata.py diff --git a/packages/python/plotly/plotly/validators/carpet/_customdatasrc.py b/plotly/validators/carpet/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_customdatasrc.py rename to plotly/validators/carpet/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_da.py b/plotly/validators/carpet/_da.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_da.py rename to plotly/validators/carpet/_da.py diff --git a/packages/python/plotly/plotly/validators/carpet/_db.py b/plotly/validators/carpet/_db.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_db.py rename to plotly/validators/carpet/_db.py diff --git a/packages/python/plotly/plotly/validators/carpet/_font.py b/plotly/validators/carpet/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_font.py rename to plotly/validators/carpet/_font.py diff --git a/packages/python/plotly/plotly/validators/carpet/_ids.py b/plotly/validators/carpet/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_ids.py rename to plotly/validators/carpet/_ids.py diff --git a/packages/python/plotly/plotly/validators/carpet/_idssrc.py b/plotly/validators/carpet/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_idssrc.py rename to plotly/validators/carpet/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_legend.py b/plotly/validators/carpet/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_legend.py rename to plotly/validators/carpet/_legend.py diff --git a/packages/python/plotly/plotly/validators/carpet/_legendgrouptitle.py b/plotly/validators/carpet/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_legendgrouptitle.py rename to plotly/validators/carpet/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/carpet/_legendrank.py b/plotly/validators/carpet/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_legendrank.py rename to plotly/validators/carpet/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/carpet/_legendwidth.py b/plotly/validators/carpet/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_legendwidth.py rename to plotly/validators/carpet/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/_meta.py b/plotly/validators/carpet/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_meta.py rename to plotly/validators/carpet/_meta.py diff --git a/packages/python/plotly/plotly/validators/carpet/_metasrc.py b/plotly/validators/carpet/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_metasrc.py rename to plotly/validators/carpet/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_name.py b/plotly/validators/carpet/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_name.py rename to plotly/validators/carpet/_name.py diff --git a/packages/python/plotly/plotly/validators/carpet/_opacity.py b/plotly/validators/carpet/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_opacity.py rename to plotly/validators/carpet/_opacity.py diff --git a/packages/python/plotly/plotly/validators/carpet/_stream.py b/plotly/validators/carpet/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_stream.py rename to plotly/validators/carpet/_stream.py diff --git a/packages/python/plotly/plotly/validators/carpet/_uid.py b/plotly/validators/carpet/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_uid.py rename to plotly/validators/carpet/_uid.py diff --git a/packages/python/plotly/plotly/validators/carpet/_uirevision.py b/plotly/validators/carpet/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_uirevision.py rename to plotly/validators/carpet/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/carpet/_visible.py b/plotly/validators/carpet/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_visible.py rename to plotly/validators/carpet/_visible.py diff --git a/packages/python/plotly/plotly/validators/carpet/_x.py b/plotly/validators/carpet/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_x.py rename to plotly/validators/carpet/_x.py diff --git a/packages/python/plotly/plotly/validators/carpet/_xaxis.py b/plotly/validators/carpet/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_xaxis.py rename to plotly/validators/carpet/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/carpet/_xsrc.py b/plotly/validators/carpet/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_xsrc.py rename to plotly/validators/carpet/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_y.py b/plotly/validators/carpet/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_y.py rename to plotly/validators/carpet/_y.py diff --git a/packages/python/plotly/plotly/validators/carpet/_yaxis.py b/plotly/validators/carpet/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_yaxis.py rename to plotly/validators/carpet/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/carpet/_ysrc.py b/plotly/validators/carpet/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_ysrc.py rename to plotly/validators/carpet/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/_zorder.py b/plotly/validators/carpet/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/_zorder.py rename to plotly/validators/carpet/_zorder.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/__init__.py b/plotly/validators/carpet/aaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/__init__.py rename to plotly/validators/carpet/aaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_arraydtick.py b/plotly/validators/carpet/aaxis/_arraydtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_arraydtick.py rename to plotly/validators/carpet/aaxis/_arraydtick.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_arraytick0.py b/plotly/validators/carpet/aaxis/_arraytick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_arraytick0.py rename to plotly/validators/carpet/aaxis/_arraytick0.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_autorange.py b/plotly/validators/carpet/aaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_autorange.py rename to plotly/validators/carpet/aaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_autotypenumbers.py b/plotly/validators/carpet/aaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_autotypenumbers.py rename to plotly/validators/carpet/aaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_categoryarray.py b/plotly/validators/carpet/aaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_categoryarray.py rename to plotly/validators/carpet/aaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_categoryarraysrc.py b/plotly/validators/carpet/aaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_categoryarraysrc.py rename to plotly/validators/carpet/aaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_categoryorder.py b/plotly/validators/carpet/aaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_categoryorder.py rename to plotly/validators/carpet/aaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_cheatertype.py b/plotly/validators/carpet/aaxis/_cheatertype.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_cheatertype.py rename to plotly/validators/carpet/aaxis/_cheatertype.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_color.py b/plotly/validators/carpet/aaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_color.py rename to plotly/validators/carpet/aaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_dtick.py b/plotly/validators/carpet/aaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_dtick.py rename to plotly/validators/carpet/aaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_endline.py b/plotly/validators/carpet/aaxis/_endline.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_endline.py rename to plotly/validators/carpet/aaxis/_endline.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_endlinecolor.py b/plotly/validators/carpet/aaxis/_endlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_endlinecolor.py rename to plotly/validators/carpet/aaxis/_endlinecolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_endlinewidth.py b/plotly/validators/carpet/aaxis/_endlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_endlinewidth.py rename to plotly/validators/carpet/aaxis/_endlinewidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_exponentformat.py b/plotly/validators/carpet/aaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_exponentformat.py rename to plotly/validators/carpet/aaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_fixedrange.py b/plotly/validators/carpet/aaxis/_fixedrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_fixedrange.py rename to plotly/validators/carpet/aaxis/_fixedrange.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_gridcolor.py b/plotly/validators/carpet/aaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_gridcolor.py rename to plotly/validators/carpet/aaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_griddash.py b/plotly/validators/carpet/aaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_griddash.py rename to plotly/validators/carpet/aaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_gridwidth.py b/plotly/validators/carpet/aaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_gridwidth.py rename to plotly/validators/carpet/aaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_labelalias.py b/plotly/validators/carpet/aaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_labelalias.py rename to plotly/validators/carpet/aaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_labelpadding.py b/plotly/validators/carpet/aaxis/_labelpadding.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_labelpadding.py rename to plotly/validators/carpet/aaxis/_labelpadding.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_labelprefix.py b/plotly/validators/carpet/aaxis/_labelprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_labelprefix.py rename to plotly/validators/carpet/aaxis/_labelprefix.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_labelsuffix.py b/plotly/validators/carpet/aaxis/_labelsuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_labelsuffix.py rename to plotly/validators/carpet/aaxis/_labelsuffix.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_linecolor.py b/plotly/validators/carpet/aaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_linecolor.py rename to plotly/validators/carpet/aaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_linewidth.py b/plotly/validators/carpet/aaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_linewidth.py rename to plotly/validators/carpet/aaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_minexponent.py b/plotly/validators/carpet/aaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_minexponent.py rename to plotly/validators/carpet/aaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_minorgridcolor.py b/plotly/validators/carpet/aaxis/_minorgridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_minorgridcolor.py rename to plotly/validators/carpet/aaxis/_minorgridcolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_minorgridcount.py b/plotly/validators/carpet/aaxis/_minorgridcount.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_minorgridcount.py rename to plotly/validators/carpet/aaxis/_minorgridcount.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_minorgriddash.py b/plotly/validators/carpet/aaxis/_minorgriddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_minorgriddash.py rename to plotly/validators/carpet/aaxis/_minorgriddash.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_minorgridwidth.py b/plotly/validators/carpet/aaxis/_minorgridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_minorgridwidth.py rename to plotly/validators/carpet/aaxis/_minorgridwidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_nticks.py b/plotly/validators/carpet/aaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_nticks.py rename to plotly/validators/carpet/aaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_range.py b/plotly/validators/carpet/aaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_range.py rename to plotly/validators/carpet/aaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_rangemode.py b/plotly/validators/carpet/aaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_rangemode.py rename to plotly/validators/carpet/aaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_separatethousands.py b/plotly/validators/carpet/aaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_separatethousands.py rename to plotly/validators/carpet/aaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_showexponent.py b/plotly/validators/carpet/aaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_showexponent.py rename to plotly/validators/carpet/aaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_showgrid.py b/plotly/validators/carpet/aaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_showgrid.py rename to plotly/validators/carpet/aaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_showline.py b/plotly/validators/carpet/aaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_showline.py rename to plotly/validators/carpet/aaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_showticklabels.py b/plotly/validators/carpet/aaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_showticklabels.py rename to plotly/validators/carpet/aaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_showtickprefix.py b/plotly/validators/carpet/aaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_showtickprefix.py rename to plotly/validators/carpet/aaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_showticksuffix.py b/plotly/validators/carpet/aaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_showticksuffix.py rename to plotly/validators/carpet/aaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_smoothing.py b/plotly/validators/carpet/aaxis/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_smoothing.py rename to plotly/validators/carpet/aaxis/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_startline.py b/plotly/validators/carpet/aaxis/_startline.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_startline.py rename to plotly/validators/carpet/aaxis/_startline.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_startlinecolor.py b/plotly/validators/carpet/aaxis/_startlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_startlinecolor.py rename to plotly/validators/carpet/aaxis/_startlinecolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_startlinewidth.py b/plotly/validators/carpet/aaxis/_startlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_startlinewidth.py rename to plotly/validators/carpet/aaxis/_startlinewidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tick0.py b/plotly/validators/carpet/aaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tick0.py rename to plotly/validators/carpet/aaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickangle.py b/plotly/validators/carpet/aaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickangle.py rename to plotly/validators/carpet/aaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickfont.py b/plotly/validators/carpet/aaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickfont.py rename to plotly/validators/carpet/aaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickformat.py b/plotly/validators/carpet/aaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickformat.py rename to plotly/validators/carpet/aaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickformatstopdefaults.py b/plotly/validators/carpet/aaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickformatstopdefaults.py rename to plotly/validators/carpet/aaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickformatstops.py b/plotly/validators/carpet/aaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickformatstops.py rename to plotly/validators/carpet/aaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickmode.py b/plotly/validators/carpet/aaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickmode.py rename to plotly/validators/carpet/aaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickprefix.py b/plotly/validators/carpet/aaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickprefix.py rename to plotly/validators/carpet/aaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_ticksuffix.py b/plotly/validators/carpet/aaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_ticksuffix.py rename to plotly/validators/carpet/aaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_ticktext.py b/plotly/validators/carpet/aaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_ticktext.py rename to plotly/validators/carpet/aaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_ticktextsrc.py b/plotly/validators/carpet/aaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_ticktextsrc.py rename to plotly/validators/carpet/aaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickvals.py b/plotly/validators/carpet/aaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickvals.py rename to plotly/validators/carpet/aaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_tickvalssrc.py b/plotly/validators/carpet/aaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_tickvalssrc.py rename to plotly/validators/carpet/aaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_title.py b/plotly/validators/carpet/aaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_title.py rename to plotly/validators/carpet/aaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/_type.py b/plotly/validators/carpet/aaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/_type.py rename to plotly/validators/carpet/aaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/__init__.py b/plotly/validators/carpet/aaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/__init__.py rename to plotly/validators/carpet/aaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_color.py b/plotly/validators/carpet/aaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_color.py rename to plotly/validators/carpet/aaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_family.py b/plotly/validators/carpet/aaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_family.py rename to plotly/validators/carpet/aaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_lineposition.py b/plotly/validators/carpet/aaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_lineposition.py rename to plotly/validators/carpet/aaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_shadow.py b/plotly/validators/carpet/aaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_shadow.py rename to plotly/validators/carpet/aaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_size.py b/plotly/validators/carpet/aaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_size.py rename to plotly/validators/carpet/aaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_style.py b/plotly/validators/carpet/aaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_style.py rename to plotly/validators/carpet/aaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_textcase.py b/plotly/validators/carpet/aaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_textcase.py rename to plotly/validators/carpet/aaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_variant.py b/plotly/validators/carpet/aaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_variant.py rename to plotly/validators/carpet/aaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_weight.py b/plotly/validators/carpet/aaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickfont/_weight.py rename to plotly/validators/carpet/aaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/__init__.py b/plotly/validators/carpet/aaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/__init__.py rename to plotly/validators/carpet/aaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_dtickrange.py b/plotly/validators/carpet/aaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_dtickrange.py rename to plotly/validators/carpet/aaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_enabled.py b/plotly/validators/carpet/aaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_enabled.py rename to plotly/validators/carpet/aaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_name.py b/plotly/validators/carpet/aaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_name.py rename to plotly/validators/carpet/aaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_templateitemname.py b/plotly/validators/carpet/aaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_templateitemname.py rename to plotly/validators/carpet/aaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_value.py b/plotly/validators/carpet/aaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/tickformatstop/_value.py rename to plotly/validators/carpet/aaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/__init__.py b/plotly/validators/carpet/aaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/__init__.py rename to plotly/validators/carpet/aaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/_font.py b/plotly/validators/carpet/aaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/_font.py rename to plotly/validators/carpet/aaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/_offset.py b/plotly/validators/carpet/aaxis/title/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/_offset.py rename to plotly/validators/carpet/aaxis/title/_offset.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/_text.py b/plotly/validators/carpet/aaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/_text.py rename to plotly/validators/carpet/aaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/__init__.py b/plotly/validators/carpet/aaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/__init__.py rename to plotly/validators/carpet/aaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_color.py b/plotly/validators/carpet/aaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_color.py rename to plotly/validators/carpet/aaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_family.py b/plotly/validators/carpet/aaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_family.py rename to plotly/validators/carpet/aaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_lineposition.py b/plotly/validators/carpet/aaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_lineposition.py rename to plotly/validators/carpet/aaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_shadow.py b/plotly/validators/carpet/aaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_shadow.py rename to plotly/validators/carpet/aaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_size.py b/plotly/validators/carpet/aaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_size.py rename to plotly/validators/carpet/aaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_style.py b/plotly/validators/carpet/aaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_style.py rename to plotly/validators/carpet/aaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_textcase.py b/plotly/validators/carpet/aaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_textcase.py rename to plotly/validators/carpet/aaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_variant.py b/plotly/validators/carpet/aaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_variant.py rename to plotly/validators/carpet/aaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_weight.py b/plotly/validators/carpet/aaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/aaxis/title/font/_weight.py rename to plotly/validators/carpet/aaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/__init__.py b/plotly/validators/carpet/baxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/__init__.py rename to plotly/validators/carpet/baxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_arraydtick.py b/plotly/validators/carpet/baxis/_arraydtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_arraydtick.py rename to plotly/validators/carpet/baxis/_arraydtick.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_arraytick0.py b/plotly/validators/carpet/baxis/_arraytick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_arraytick0.py rename to plotly/validators/carpet/baxis/_arraytick0.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_autorange.py b/plotly/validators/carpet/baxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_autorange.py rename to plotly/validators/carpet/baxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_autotypenumbers.py b/plotly/validators/carpet/baxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_autotypenumbers.py rename to plotly/validators/carpet/baxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_categoryarray.py b/plotly/validators/carpet/baxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_categoryarray.py rename to plotly/validators/carpet/baxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_categoryarraysrc.py b/plotly/validators/carpet/baxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_categoryarraysrc.py rename to plotly/validators/carpet/baxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_categoryorder.py b/plotly/validators/carpet/baxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_categoryorder.py rename to plotly/validators/carpet/baxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_cheatertype.py b/plotly/validators/carpet/baxis/_cheatertype.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_cheatertype.py rename to plotly/validators/carpet/baxis/_cheatertype.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_color.py b/plotly/validators/carpet/baxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_color.py rename to plotly/validators/carpet/baxis/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_dtick.py b/plotly/validators/carpet/baxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_dtick.py rename to plotly/validators/carpet/baxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_endline.py b/plotly/validators/carpet/baxis/_endline.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_endline.py rename to plotly/validators/carpet/baxis/_endline.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_endlinecolor.py b/plotly/validators/carpet/baxis/_endlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_endlinecolor.py rename to plotly/validators/carpet/baxis/_endlinecolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_endlinewidth.py b/plotly/validators/carpet/baxis/_endlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_endlinewidth.py rename to plotly/validators/carpet/baxis/_endlinewidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_exponentformat.py b/plotly/validators/carpet/baxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_exponentformat.py rename to plotly/validators/carpet/baxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_fixedrange.py b/plotly/validators/carpet/baxis/_fixedrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_fixedrange.py rename to plotly/validators/carpet/baxis/_fixedrange.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_gridcolor.py b/plotly/validators/carpet/baxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_gridcolor.py rename to plotly/validators/carpet/baxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_griddash.py b/plotly/validators/carpet/baxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_griddash.py rename to plotly/validators/carpet/baxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_gridwidth.py b/plotly/validators/carpet/baxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_gridwidth.py rename to plotly/validators/carpet/baxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_labelalias.py b/plotly/validators/carpet/baxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_labelalias.py rename to plotly/validators/carpet/baxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_labelpadding.py b/plotly/validators/carpet/baxis/_labelpadding.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_labelpadding.py rename to plotly/validators/carpet/baxis/_labelpadding.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_labelprefix.py b/plotly/validators/carpet/baxis/_labelprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_labelprefix.py rename to plotly/validators/carpet/baxis/_labelprefix.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_labelsuffix.py b/plotly/validators/carpet/baxis/_labelsuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_labelsuffix.py rename to plotly/validators/carpet/baxis/_labelsuffix.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_linecolor.py b/plotly/validators/carpet/baxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_linecolor.py rename to plotly/validators/carpet/baxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_linewidth.py b/plotly/validators/carpet/baxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_linewidth.py rename to plotly/validators/carpet/baxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_minexponent.py b/plotly/validators/carpet/baxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_minexponent.py rename to plotly/validators/carpet/baxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_minorgridcolor.py b/plotly/validators/carpet/baxis/_minorgridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_minorgridcolor.py rename to plotly/validators/carpet/baxis/_minorgridcolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_minorgridcount.py b/plotly/validators/carpet/baxis/_minorgridcount.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_minorgridcount.py rename to plotly/validators/carpet/baxis/_minorgridcount.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_minorgriddash.py b/plotly/validators/carpet/baxis/_minorgriddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_minorgriddash.py rename to plotly/validators/carpet/baxis/_minorgriddash.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_minorgridwidth.py b/plotly/validators/carpet/baxis/_minorgridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_minorgridwidth.py rename to plotly/validators/carpet/baxis/_minorgridwidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_nticks.py b/plotly/validators/carpet/baxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_nticks.py rename to plotly/validators/carpet/baxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_range.py b/plotly/validators/carpet/baxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_range.py rename to plotly/validators/carpet/baxis/_range.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_rangemode.py b/plotly/validators/carpet/baxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_rangemode.py rename to plotly/validators/carpet/baxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_separatethousands.py b/plotly/validators/carpet/baxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_separatethousands.py rename to plotly/validators/carpet/baxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_showexponent.py b/plotly/validators/carpet/baxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_showexponent.py rename to plotly/validators/carpet/baxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_showgrid.py b/plotly/validators/carpet/baxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_showgrid.py rename to plotly/validators/carpet/baxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_showline.py b/plotly/validators/carpet/baxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_showline.py rename to plotly/validators/carpet/baxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_showticklabels.py b/plotly/validators/carpet/baxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_showticklabels.py rename to plotly/validators/carpet/baxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_showtickprefix.py b/plotly/validators/carpet/baxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_showtickprefix.py rename to plotly/validators/carpet/baxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_showticksuffix.py b/plotly/validators/carpet/baxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_showticksuffix.py rename to plotly/validators/carpet/baxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_smoothing.py b/plotly/validators/carpet/baxis/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_smoothing.py rename to plotly/validators/carpet/baxis/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_startline.py b/plotly/validators/carpet/baxis/_startline.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_startline.py rename to plotly/validators/carpet/baxis/_startline.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_startlinecolor.py b/plotly/validators/carpet/baxis/_startlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_startlinecolor.py rename to plotly/validators/carpet/baxis/_startlinecolor.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_startlinewidth.py b/plotly/validators/carpet/baxis/_startlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_startlinewidth.py rename to plotly/validators/carpet/baxis/_startlinewidth.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tick0.py b/plotly/validators/carpet/baxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tick0.py rename to plotly/validators/carpet/baxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickangle.py b/plotly/validators/carpet/baxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickangle.py rename to plotly/validators/carpet/baxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickfont.py b/plotly/validators/carpet/baxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickfont.py rename to plotly/validators/carpet/baxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickformat.py b/plotly/validators/carpet/baxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickformat.py rename to plotly/validators/carpet/baxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickformatstopdefaults.py b/plotly/validators/carpet/baxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickformatstopdefaults.py rename to plotly/validators/carpet/baxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickformatstops.py b/plotly/validators/carpet/baxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickformatstops.py rename to plotly/validators/carpet/baxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickmode.py b/plotly/validators/carpet/baxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickmode.py rename to plotly/validators/carpet/baxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickprefix.py b/plotly/validators/carpet/baxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickprefix.py rename to plotly/validators/carpet/baxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_ticksuffix.py b/plotly/validators/carpet/baxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_ticksuffix.py rename to plotly/validators/carpet/baxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_ticktext.py b/plotly/validators/carpet/baxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_ticktext.py rename to plotly/validators/carpet/baxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_ticktextsrc.py b/plotly/validators/carpet/baxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_ticktextsrc.py rename to plotly/validators/carpet/baxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickvals.py b/plotly/validators/carpet/baxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickvals.py rename to plotly/validators/carpet/baxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_tickvalssrc.py b/plotly/validators/carpet/baxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_tickvalssrc.py rename to plotly/validators/carpet/baxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_title.py b/plotly/validators/carpet/baxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_title.py rename to plotly/validators/carpet/baxis/_title.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/_type.py b/plotly/validators/carpet/baxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/_type.py rename to plotly/validators/carpet/baxis/_type.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/__init__.py b/plotly/validators/carpet/baxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/__init__.py rename to plotly/validators/carpet/baxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_color.py b/plotly/validators/carpet/baxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_color.py rename to plotly/validators/carpet/baxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_family.py b/plotly/validators/carpet/baxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_family.py rename to plotly/validators/carpet/baxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_lineposition.py b/plotly/validators/carpet/baxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_lineposition.py rename to plotly/validators/carpet/baxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_shadow.py b/plotly/validators/carpet/baxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_shadow.py rename to plotly/validators/carpet/baxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_size.py b/plotly/validators/carpet/baxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_size.py rename to plotly/validators/carpet/baxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_style.py b/plotly/validators/carpet/baxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_style.py rename to plotly/validators/carpet/baxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_textcase.py b/plotly/validators/carpet/baxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_textcase.py rename to plotly/validators/carpet/baxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_variant.py b/plotly/validators/carpet/baxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_variant.py rename to plotly/validators/carpet/baxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_weight.py b/plotly/validators/carpet/baxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickfont/_weight.py rename to plotly/validators/carpet/baxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/__init__.py b/plotly/validators/carpet/baxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/__init__.py rename to plotly/validators/carpet/baxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_dtickrange.py b/plotly/validators/carpet/baxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_dtickrange.py rename to plotly/validators/carpet/baxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_enabled.py b/plotly/validators/carpet/baxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_enabled.py rename to plotly/validators/carpet/baxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_name.py b/plotly/validators/carpet/baxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_name.py rename to plotly/validators/carpet/baxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_templateitemname.py b/plotly/validators/carpet/baxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_templateitemname.py rename to plotly/validators/carpet/baxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_value.py b/plotly/validators/carpet/baxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/tickformatstop/_value.py rename to plotly/validators/carpet/baxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/__init__.py b/plotly/validators/carpet/baxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/__init__.py rename to plotly/validators/carpet/baxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/_font.py b/plotly/validators/carpet/baxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/_font.py rename to plotly/validators/carpet/baxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/_offset.py b/plotly/validators/carpet/baxis/title/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/_offset.py rename to plotly/validators/carpet/baxis/title/_offset.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/_text.py b/plotly/validators/carpet/baxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/_text.py rename to plotly/validators/carpet/baxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/__init__.py b/plotly/validators/carpet/baxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/__init__.py rename to plotly/validators/carpet/baxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_color.py b/plotly/validators/carpet/baxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_color.py rename to plotly/validators/carpet/baxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_family.py b/plotly/validators/carpet/baxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_family.py rename to plotly/validators/carpet/baxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_lineposition.py b/plotly/validators/carpet/baxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_lineposition.py rename to plotly/validators/carpet/baxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_shadow.py b/plotly/validators/carpet/baxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_shadow.py rename to plotly/validators/carpet/baxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_size.py b/plotly/validators/carpet/baxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_size.py rename to plotly/validators/carpet/baxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_style.py b/plotly/validators/carpet/baxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_style.py rename to plotly/validators/carpet/baxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_textcase.py b/plotly/validators/carpet/baxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_textcase.py rename to plotly/validators/carpet/baxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_variant.py b/plotly/validators/carpet/baxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_variant.py rename to plotly/validators/carpet/baxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/carpet/baxis/title/font/_weight.py b/plotly/validators/carpet/baxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/baxis/title/font/_weight.py rename to plotly/validators/carpet/baxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/__init__.py b/plotly/validators/carpet/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/__init__.py rename to plotly/validators/carpet/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_color.py b/plotly/validators/carpet/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_color.py rename to plotly/validators/carpet/font/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_family.py b/plotly/validators/carpet/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_family.py rename to plotly/validators/carpet/font/_family.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_lineposition.py b/plotly/validators/carpet/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_lineposition.py rename to plotly/validators/carpet/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_shadow.py b/plotly/validators/carpet/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_shadow.py rename to plotly/validators/carpet/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_size.py b/plotly/validators/carpet/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_size.py rename to plotly/validators/carpet/font/_size.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_style.py b/plotly/validators/carpet/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_style.py rename to plotly/validators/carpet/font/_style.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_textcase.py b/plotly/validators/carpet/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_textcase.py rename to plotly/validators/carpet/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_variant.py b/plotly/validators/carpet/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_variant.py rename to plotly/validators/carpet/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/carpet/font/_weight.py b/plotly/validators/carpet/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/font/_weight.py rename to plotly/validators/carpet/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/__init__.py b/plotly/validators/carpet/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/__init__.py rename to plotly/validators/carpet/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/_font.py b/plotly/validators/carpet/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/_font.py rename to plotly/validators/carpet/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/_text.py b/plotly/validators/carpet/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/_text.py rename to plotly/validators/carpet/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/__init__.py b/plotly/validators/carpet/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/__init__.py rename to plotly/validators/carpet/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_color.py b/plotly/validators/carpet/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_color.py rename to plotly/validators/carpet/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_family.py b/plotly/validators/carpet/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_family.py rename to plotly/validators/carpet/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_lineposition.py b/plotly/validators/carpet/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_lineposition.py rename to plotly/validators/carpet/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_shadow.py b/plotly/validators/carpet/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_shadow.py rename to plotly/validators/carpet/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_size.py b/plotly/validators/carpet/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_size.py rename to plotly/validators/carpet/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_style.py b/plotly/validators/carpet/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_style.py rename to plotly/validators/carpet/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_textcase.py b/plotly/validators/carpet/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_textcase.py rename to plotly/validators/carpet/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_variant.py b/plotly/validators/carpet/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_variant.py rename to plotly/validators/carpet/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_weight.py b/plotly/validators/carpet/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/legendgrouptitle/font/_weight.py rename to plotly/validators/carpet/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/carpet/stream/__init__.py b/plotly/validators/carpet/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/stream/__init__.py rename to plotly/validators/carpet/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/carpet/stream/_maxpoints.py b/plotly/validators/carpet/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/stream/_maxpoints.py rename to plotly/validators/carpet/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/carpet/stream/_token.py b/plotly/validators/carpet/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/carpet/stream/_token.py rename to plotly/validators/carpet/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/choropleth/__init__.py b/plotly/validators/choropleth/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/__init__.py rename to plotly/validators/choropleth/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_autocolorscale.py b/plotly/validators/choropleth/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_autocolorscale.py rename to plotly/validators/choropleth/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_coloraxis.py b/plotly/validators/choropleth/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_coloraxis.py rename to plotly/validators/choropleth/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_colorbar.py b/plotly/validators/choropleth/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_colorbar.py rename to plotly/validators/choropleth/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_colorscale.py b/plotly/validators/choropleth/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_colorscale.py rename to plotly/validators/choropleth/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_customdata.py b/plotly/validators/choropleth/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_customdata.py rename to plotly/validators/choropleth/_customdata.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_customdatasrc.py b/plotly/validators/choropleth/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_customdatasrc.py rename to plotly/validators/choropleth/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_featureidkey.py b/plotly/validators/choropleth/_featureidkey.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_featureidkey.py rename to plotly/validators/choropleth/_featureidkey.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_geo.py b/plotly/validators/choropleth/_geo.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_geo.py rename to plotly/validators/choropleth/_geo.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_geojson.py b/plotly/validators/choropleth/_geojson.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_geojson.py rename to plotly/validators/choropleth/_geojson.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hoverinfo.py b/plotly/validators/choropleth/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hoverinfo.py rename to plotly/validators/choropleth/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hoverinfosrc.py b/plotly/validators/choropleth/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hoverinfosrc.py rename to plotly/validators/choropleth/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hoverlabel.py b/plotly/validators/choropleth/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hoverlabel.py rename to plotly/validators/choropleth/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hovertemplate.py b/plotly/validators/choropleth/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hovertemplate.py rename to plotly/validators/choropleth/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hovertemplatesrc.py b/plotly/validators/choropleth/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hovertemplatesrc.py rename to plotly/validators/choropleth/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hovertext.py b/plotly/validators/choropleth/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hovertext.py rename to plotly/validators/choropleth/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_hovertextsrc.py b/plotly/validators/choropleth/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_hovertextsrc.py rename to plotly/validators/choropleth/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_ids.py b/plotly/validators/choropleth/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_ids.py rename to plotly/validators/choropleth/_ids.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_idssrc.py b/plotly/validators/choropleth/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_idssrc.py rename to plotly/validators/choropleth/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_legend.py b/plotly/validators/choropleth/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_legend.py rename to plotly/validators/choropleth/_legend.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_legendgroup.py b/plotly/validators/choropleth/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_legendgroup.py rename to plotly/validators/choropleth/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_legendgrouptitle.py b/plotly/validators/choropleth/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_legendgrouptitle.py rename to plotly/validators/choropleth/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_legendrank.py b/plotly/validators/choropleth/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_legendrank.py rename to plotly/validators/choropleth/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_legendwidth.py b/plotly/validators/choropleth/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_legendwidth.py rename to plotly/validators/choropleth/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_locationmode.py b/plotly/validators/choropleth/_locationmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_locationmode.py rename to plotly/validators/choropleth/_locationmode.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_locations.py b/plotly/validators/choropleth/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_locations.py rename to plotly/validators/choropleth/_locations.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_locationssrc.py b/plotly/validators/choropleth/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_locationssrc.py rename to plotly/validators/choropleth/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_marker.py b/plotly/validators/choropleth/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_marker.py rename to plotly/validators/choropleth/_marker.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_meta.py b/plotly/validators/choropleth/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_meta.py rename to plotly/validators/choropleth/_meta.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_metasrc.py b/plotly/validators/choropleth/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_metasrc.py rename to plotly/validators/choropleth/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_name.py b/plotly/validators/choropleth/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_name.py rename to plotly/validators/choropleth/_name.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_reversescale.py b/plotly/validators/choropleth/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_reversescale.py rename to plotly/validators/choropleth/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_selected.py b/plotly/validators/choropleth/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_selected.py rename to plotly/validators/choropleth/_selected.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_selectedpoints.py b/plotly/validators/choropleth/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_selectedpoints.py rename to plotly/validators/choropleth/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_showlegend.py b/plotly/validators/choropleth/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_showlegend.py rename to plotly/validators/choropleth/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_showscale.py b/plotly/validators/choropleth/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_showscale.py rename to plotly/validators/choropleth/_showscale.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_stream.py b/plotly/validators/choropleth/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_stream.py rename to plotly/validators/choropleth/_stream.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_text.py b/plotly/validators/choropleth/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_text.py rename to plotly/validators/choropleth/_text.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_textsrc.py b/plotly/validators/choropleth/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_textsrc.py rename to plotly/validators/choropleth/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_uid.py b/plotly/validators/choropleth/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_uid.py rename to plotly/validators/choropleth/_uid.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_uirevision.py b/plotly/validators/choropleth/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_uirevision.py rename to plotly/validators/choropleth/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_unselected.py b/plotly/validators/choropleth/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_unselected.py rename to plotly/validators/choropleth/_unselected.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_visible.py b/plotly/validators/choropleth/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_visible.py rename to plotly/validators/choropleth/_visible.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_z.py b/plotly/validators/choropleth/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_z.py rename to plotly/validators/choropleth/_z.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_zauto.py b/plotly/validators/choropleth/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_zauto.py rename to plotly/validators/choropleth/_zauto.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_zmax.py b/plotly/validators/choropleth/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_zmax.py rename to plotly/validators/choropleth/_zmax.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_zmid.py b/plotly/validators/choropleth/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_zmid.py rename to plotly/validators/choropleth/_zmid.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_zmin.py b/plotly/validators/choropleth/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_zmin.py rename to plotly/validators/choropleth/_zmin.py diff --git a/packages/python/plotly/plotly/validators/choropleth/_zsrc.py b/plotly/validators/choropleth/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/_zsrc.py rename to plotly/validators/choropleth/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/__init__.py b/plotly/validators/choropleth/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/__init__.py rename to plotly/validators/choropleth/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_bgcolor.py b/plotly/validators/choropleth/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_bgcolor.py rename to plotly/validators/choropleth/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_bordercolor.py b/plotly/validators/choropleth/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_bordercolor.py rename to plotly/validators/choropleth/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_borderwidth.py b/plotly/validators/choropleth/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_borderwidth.py rename to plotly/validators/choropleth/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_dtick.py b/plotly/validators/choropleth/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_dtick.py rename to plotly/validators/choropleth/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_exponentformat.py b/plotly/validators/choropleth/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_exponentformat.py rename to plotly/validators/choropleth/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_labelalias.py b/plotly/validators/choropleth/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_labelalias.py rename to plotly/validators/choropleth/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_len.py b/plotly/validators/choropleth/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_len.py rename to plotly/validators/choropleth/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_lenmode.py b/plotly/validators/choropleth/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_lenmode.py rename to plotly/validators/choropleth/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_minexponent.py b/plotly/validators/choropleth/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_minexponent.py rename to plotly/validators/choropleth/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_nticks.py b/plotly/validators/choropleth/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_nticks.py rename to plotly/validators/choropleth/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_orientation.py b/plotly/validators/choropleth/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_orientation.py rename to plotly/validators/choropleth/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_outlinecolor.py b/plotly/validators/choropleth/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_outlinecolor.py rename to plotly/validators/choropleth/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_outlinewidth.py b/plotly/validators/choropleth/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_outlinewidth.py rename to plotly/validators/choropleth/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_separatethousands.py b/plotly/validators/choropleth/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_separatethousands.py rename to plotly/validators/choropleth/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_showexponent.py b/plotly/validators/choropleth/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_showexponent.py rename to plotly/validators/choropleth/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_showticklabels.py b/plotly/validators/choropleth/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_showticklabels.py rename to plotly/validators/choropleth/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_showtickprefix.py b/plotly/validators/choropleth/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_showtickprefix.py rename to plotly/validators/choropleth/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_showticksuffix.py b/plotly/validators/choropleth/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_showticksuffix.py rename to plotly/validators/choropleth/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_thickness.py b/plotly/validators/choropleth/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_thickness.py rename to plotly/validators/choropleth/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_thicknessmode.py b/plotly/validators/choropleth/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_thicknessmode.py rename to plotly/validators/choropleth/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tick0.py b/plotly/validators/choropleth/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tick0.py rename to plotly/validators/choropleth/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickangle.py b/plotly/validators/choropleth/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickangle.py rename to plotly/validators/choropleth/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickcolor.py b/plotly/validators/choropleth/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickcolor.py rename to plotly/validators/choropleth/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickfont.py b/plotly/validators/choropleth/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickfont.py rename to plotly/validators/choropleth/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickformat.py b/plotly/validators/choropleth/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickformat.py rename to plotly/validators/choropleth/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py b/plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py rename to plotly/validators/choropleth/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickformatstops.py b/plotly/validators/choropleth/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickformatstops.py rename to plotly/validators/choropleth/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklabeloverflow.py b/plotly/validators/choropleth/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklabeloverflow.py rename to plotly/validators/choropleth/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklabelposition.py b/plotly/validators/choropleth/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklabelposition.py rename to plotly/validators/choropleth/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklabelstep.py b/plotly/validators/choropleth/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklabelstep.py rename to plotly/validators/choropleth/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklen.py b/plotly/validators/choropleth/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticklen.py rename to plotly/validators/choropleth/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickmode.py b/plotly/validators/choropleth/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickmode.py rename to plotly/validators/choropleth/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickprefix.py b/plotly/validators/choropleth/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickprefix.py rename to plotly/validators/choropleth/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticks.py b/plotly/validators/choropleth/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticks.py rename to plotly/validators/choropleth/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticksuffix.py b/plotly/validators/choropleth/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticksuffix.py rename to plotly/validators/choropleth/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticktext.py b/plotly/validators/choropleth/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticktext.py rename to plotly/validators/choropleth/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ticktextsrc.py b/plotly/validators/choropleth/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ticktextsrc.py rename to plotly/validators/choropleth/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickvals.py b/plotly/validators/choropleth/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickvals.py rename to plotly/validators/choropleth/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickvalssrc.py b/plotly/validators/choropleth/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickvalssrc.py rename to plotly/validators/choropleth/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_tickwidth.py b/plotly/validators/choropleth/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_tickwidth.py rename to plotly/validators/choropleth/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_title.py b/plotly/validators/choropleth/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_title.py rename to plotly/validators/choropleth/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_x.py b/plotly/validators/choropleth/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_x.py rename to plotly/validators/choropleth/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_xanchor.py b/plotly/validators/choropleth/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_xanchor.py rename to plotly/validators/choropleth/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_xpad.py b/plotly/validators/choropleth/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_xpad.py rename to plotly/validators/choropleth/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_xref.py b/plotly/validators/choropleth/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_xref.py rename to plotly/validators/choropleth/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_y.py b/plotly/validators/choropleth/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_y.py rename to plotly/validators/choropleth/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_yanchor.py b/plotly/validators/choropleth/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_yanchor.py rename to plotly/validators/choropleth/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_ypad.py b/plotly/validators/choropleth/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_ypad.py rename to plotly/validators/choropleth/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/_yref.py b/plotly/validators/choropleth/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/_yref.py rename to plotly/validators/choropleth/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/__init__.py b/plotly/validators/choropleth/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/__init__.py rename to plotly/validators/choropleth/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_color.py b/plotly/validators/choropleth/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_color.py rename to plotly/validators/choropleth/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_family.py b/plotly/validators/choropleth/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_family.py rename to plotly/validators/choropleth/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_lineposition.py b/plotly/validators/choropleth/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_lineposition.py rename to plotly/validators/choropleth/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_shadow.py b/plotly/validators/choropleth/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_shadow.py rename to plotly/validators/choropleth/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_size.py b/plotly/validators/choropleth/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_size.py rename to plotly/validators/choropleth/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_style.py b/plotly/validators/choropleth/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_style.py rename to plotly/validators/choropleth/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_textcase.py b/plotly/validators/choropleth/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_textcase.py rename to plotly/validators/choropleth/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_variant.py b/plotly/validators/choropleth/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_variant.py rename to plotly/validators/choropleth/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_weight.py b/plotly/validators/choropleth/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickfont/_weight.py rename to plotly/validators/choropleth/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/__init__.py b/plotly/validators/choropleth/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/__init__.py rename to plotly/validators/choropleth/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/choropleth/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/choropleth/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_enabled.py b/plotly/validators/choropleth/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_enabled.py rename to plotly/validators/choropleth/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_name.py b/plotly/validators/choropleth/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_name.py rename to plotly/validators/choropleth/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/choropleth/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/choropleth/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_value.py b/plotly/validators/choropleth/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/tickformatstop/_value.py rename to plotly/validators/choropleth/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/__init__.py b/plotly/validators/choropleth/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/__init__.py rename to plotly/validators/choropleth/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/_font.py b/plotly/validators/choropleth/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/_font.py rename to plotly/validators/choropleth/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/_side.py b/plotly/validators/choropleth/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/_side.py rename to plotly/validators/choropleth/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/_text.py b/plotly/validators/choropleth/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/_text.py rename to plotly/validators/choropleth/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/__init__.py b/plotly/validators/choropleth/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/__init__.py rename to plotly/validators/choropleth/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_color.py b/plotly/validators/choropleth/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_color.py rename to plotly/validators/choropleth/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_family.py b/plotly/validators/choropleth/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_family.py rename to plotly/validators/choropleth/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_lineposition.py b/plotly/validators/choropleth/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_lineposition.py rename to plotly/validators/choropleth/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_shadow.py b/plotly/validators/choropleth/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_shadow.py rename to plotly/validators/choropleth/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_size.py b/plotly/validators/choropleth/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_size.py rename to plotly/validators/choropleth/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_style.py b/plotly/validators/choropleth/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_style.py rename to plotly/validators/choropleth/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_textcase.py b/plotly/validators/choropleth/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_textcase.py rename to plotly/validators/choropleth/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_variant.py b/plotly/validators/choropleth/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_variant.py rename to plotly/validators/choropleth/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_weight.py b/plotly/validators/choropleth/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/colorbar/title/font/_weight.py rename to plotly/validators/choropleth/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/__init__.py b/plotly/validators/choropleth/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/__init__.py rename to plotly/validators/choropleth/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_align.py b/plotly/validators/choropleth/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_align.py rename to plotly/validators/choropleth/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_alignsrc.py b/plotly/validators/choropleth/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_alignsrc.py rename to plotly/validators/choropleth/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bgcolor.py b/plotly/validators/choropleth/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bgcolor.py rename to plotly/validators/choropleth/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bgcolorsrc.py b/plotly/validators/choropleth/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bgcolorsrc.py rename to plotly/validators/choropleth/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bordercolor.py b/plotly/validators/choropleth/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bordercolor.py rename to plotly/validators/choropleth/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bordercolorsrc.py b/plotly/validators/choropleth/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_bordercolorsrc.py rename to plotly/validators/choropleth/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_font.py b/plotly/validators/choropleth/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_font.py rename to plotly/validators/choropleth/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_namelength.py b/plotly/validators/choropleth/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_namelength.py rename to plotly/validators/choropleth/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/_namelengthsrc.py b/plotly/validators/choropleth/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/_namelengthsrc.py rename to plotly/validators/choropleth/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/__init__.py b/plotly/validators/choropleth/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/__init__.py rename to plotly/validators/choropleth/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_color.py b/plotly/validators/choropleth/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_color.py rename to plotly/validators/choropleth/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_colorsrc.py b/plotly/validators/choropleth/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_colorsrc.py rename to plotly/validators/choropleth/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_family.py b/plotly/validators/choropleth/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_family.py rename to plotly/validators/choropleth/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_familysrc.py b/plotly/validators/choropleth/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_familysrc.py rename to plotly/validators/choropleth/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_lineposition.py b/plotly/validators/choropleth/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_lineposition.py rename to plotly/validators/choropleth/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_linepositionsrc.py b/plotly/validators/choropleth/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/choropleth/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_shadow.py b/plotly/validators/choropleth/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_shadow.py rename to plotly/validators/choropleth/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_shadowsrc.py b/plotly/validators/choropleth/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_shadowsrc.py rename to plotly/validators/choropleth/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_size.py b/plotly/validators/choropleth/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_size.py rename to plotly/validators/choropleth/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_sizesrc.py b/plotly/validators/choropleth/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_sizesrc.py rename to plotly/validators/choropleth/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_style.py b/plotly/validators/choropleth/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_style.py rename to plotly/validators/choropleth/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_stylesrc.py b/plotly/validators/choropleth/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_stylesrc.py rename to plotly/validators/choropleth/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_textcase.py b/plotly/validators/choropleth/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_textcase.py rename to plotly/validators/choropleth/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_textcasesrc.py b/plotly/validators/choropleth/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_textcasesrc.py rename to plotly/validators/choropleth/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_variant.py b/plotly/validators/choropleth/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_variant.py rename to plotly/validators/choropleth/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_variantsrc.py b/plotly/validators/choropleth/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_variantsrc.py rename to plotly/validators/choropleth/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_weight.py b/plotly/validators/choropleth/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_weight.py rename to plotly/validators/choropleth/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_weightsrc.py b/plotly/validators/choropleth/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/hoverlabel/font/_weightsrc.py rename to plotly/validators/choropleth/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/__init__.py b/plotly/validators/choropleth/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/__init__.py rename to plotly/validators/choropleth/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/_font.py b/plotly/validators/choropleth/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/_font.py rename to plotly/validators/choropleth/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/_text.py b/plotly/validators/choropleth/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/_text.py rename to plotly/validators/choropleth/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/__init__.py b/plotly/validators/choropleth/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/__init__.py rename to plotly/validators/choropleth/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_color.py b/plotly/validators/choropleth/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_color.py rename to plotly/validators/choropleth/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_family.py b/plotly/validators/choropleth/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_family.py rename to plotly/validators/choropleth/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_lineposition.py b/plotly/validators/choropleth/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_lineposition.py rename to plotly/validators/choropleth/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_shadow.py b/plotly/validators/choropleth/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_shadow.py rename to plotly/validators/choropleth/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_size.py b/plotly/validators/choropleth/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_size.py rename to plotly/validators/choropleth/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_style.py b/plotly/validators/choropleth/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_style.py rename to plotly/validators/choropleth/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_textcase.py b/plotly/validators/choropleth/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_textcase.py rename to plotly/validators/choropleth/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_variant.py b/plotly/validators/choropleth/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_variant.py rename to plotly/validators/choropleth/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_weight.py b/plotly/validators/choropleth/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/legendgrouptitle/font/_weight.py rename to plotly/validators/choropleth/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/__init__.py b/plotly/validators/choropleth/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/__init__.py rename to plotly/validators/choropleth/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/_line.py b/plotly/validators/choropleth/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/_line.py rename to plotly/validators/choropleth/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/_opacity.py b/plotly/validators/choropleth/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/_opacity.py rename to plotly/validators/choropleth/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/_opacitysrc.py b/plotly/validators/choropleth/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/_opacitysrc.py rename to plotly/validators/choropleth/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/line/__init__.py b/plotly/validators/choropleth/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/line/__init__.py rename to plotly/validators/choropleth/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/line/_color.py b/plotly/validators/choropleth/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/line/_color.py rename to plotly/validators/choropleth/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/line/_colorsrc.py b/plotly/validators/choropleth/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/line/_colorsrc.py rename to plotly/validators/choropleth/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/line/_width.py b/plotly/validators/choropleth/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/line/_width.py rename to plotly/validators/choropleth/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/choropleth/marker/line/_widthsrc.py b/plotly/validators/choropleth/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/marker/line/_widthsrc.py rename to plotly/validators/choropleth/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/choropleth/selected/__init__.py b/plotly/validators/choropleth/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/selected/__init__.py rename to plotly/validators/choropleth/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/selected/_marker.py b/plotly/validators/choropleth/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/selected/_marker.py rename to plotly/validators/choropleth/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/choropleth/selected/marker/__init__.py b/plotly/validators/choropleth/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/selected/marker/__init__.py rename to plotly/validators/choropleth/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/selected/marker/_opacity.py b/plotly/validators/choropleth/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/selected/marker/_opacity.py rename to plotly/validators/choropleth/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choropleth/stream/__init__.py b/plotly/validators/choropleth/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/stream/__init__.py rename to plotly/validators/choropleth/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/stream/_maxpoints.py b/plotly/validators/choropleth/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/stream/_maxpoints.py rename to plotly/validators/choropleth/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/choropleth/stream/_token.py b/plotly/validators/choropleth/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/stream/_token.py rename to plotly/validators/choropleth/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/choropleth/unselected/__init__.py b/plotly/validators/choropleth/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/unselected/__init__.py rename to plotly/validators/choropleth/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/unselected/_marker.py b/plotly/validators/choropleth/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/unselected/_marker.py rename to plotly/validators/choropleth/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/choropleth/unselected/marker/__init__.py b/plotly/validators/choropleth/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/unselected/marker/__init__.py rename to plotly/validators/choropleth/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choropleth/unselected/marker/_opacity.py b/plotly/validators/choropleth/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choropleth/unselected/marker/_opacity.py rename to plotly/validators/choropleth/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/__init__.py b/plotly/validators/choroplethmap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/__init__.py rename to plotly/validators/choroplethmap/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_autocolorscale.py b/plotly/validators/choroplethmap/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_autocolorscale.py rename to plotly/validators/choroplethmap/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_below.py b/plotly/validators/choroplethmap/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_below.py rename to plotly/validators/choroplethmap/_below.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_coloraxis.py b/plotly/validators/choroplethmap/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_coloraxis.py rename to plotly/validators/choroplethmap/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_colorbar.py b/plotly/validators/choroplethmap/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_colorbar.py rename to plotly/validators/choroplethmap/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_colorscale.py b/plotly/validators/choroplethmap/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_colorscale.py rename to plotly/validators/choroplethmap/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_customdata.py b/plotly/validators/choroplethmap/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_customdata.py rename to plotly/validators/choroplethmap/_customdata.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_customdatasrc.py b/plotly/validators/choroplethmap/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_customdatasrc.py rename to plotly/validators/choroplethmap/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_featureidkey.py b/plotly/validators/choroplethmap/_featureidkey.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_featureidkey.py rename to plotly/validators/choroplethmap/_featureidkey.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_geojson.py b/plotly/validators/choroplethmap/_geojson.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_geojson.py rename to plotly/validators/choroplethmap/_geojson.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hoverinfo.py b/plotly/validators/choroplethmap/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hoverinfo.py rename to plotly/validators/choroplethmap/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hoverinfosrc.py b/plotly/validators/choroplethmap/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hoverinfosrc.py rename to plotly/validators/choroplethmap/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hoverlabel.py b/plotly/validators/choroplethmap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hoverlabel.py rename to plotly/validators/choroplethmap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hovertemplate.py b/plotly/validators/choroplethmap/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hovertemplate.py rename to plotly/validators/choroplethmap/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hovertemplatesrc.py b/plotly/validators/choroplethmap/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hovertemplatesrc.py rename to plotly/validators/choroplethmap/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hovertext.py b/plotly/validators/choroplethmap/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hovertext.py rename to plotly/validators/choroplethmap/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_hovertextsrc.py b/plotly/validators/choroplethmap/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_hovertextsrc.py rename to plotly/validators/choroplethmap/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_ids.py b/plotly/validators/choroplethmap/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_ids.py rename to plotly/validators/choroplethmap/_ids.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_idssrc.py b/plotly/validators/choroplethmap/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_idssrc.py rename to plotly/validators/choroplethmap/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_legend.py b/plotly/validators/choroplethmap/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_legend.py rename to plotly/validators/choroplethmap/_legend.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_legendgroup.py b/plotly/validators/choroplethmap/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_legendgroup.py rename to plotly/validators/choroplethmap/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_legendgrouptitle.py b/plotly/validators/choroplethmap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_legendgrouptitle.py rename to plotly/validators/choroplethmap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_legendrank.py b/plotly/validators/choroplethmap/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_legendrank.py rename to plotly/validators/choroplethmap/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_legendwidth.py b/plotly/validators/choroplethmap/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_legendwidth.py rename to plotly/validators/choroplethmap/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_locations.py b/plotly/validators/choroplethmap/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_locations.py rename to plotly/validators/choroplethmap/_locations.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_locationssrc.py b/plotly/validators/choroplethmap/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_locationssrc.py rename to plotly/validators/choroplethmap/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_marker.py b/plotly/validators/choroplethmap/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_marker.py rename to plotly/validators/choroplethmap/_marker.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_meta.py b/plotly/validators/choroplethmap/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_meta.py rename to plotly/validators/choroplethmap/_meta.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_metasrc.py b/plotly/validators/choroplethmap/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_metasrc.py rename to plotly/validators/choroplethmap/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_name.py b/plotly/validators/choroplethmap/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_name.py rename to plotly/validators/choroplethmap/_name.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_reversescale.py b/plotly/validators/choroplethmap/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_reversescale.py rename to plotly/validators/choroplethmap/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_selected.py b/plotly/validators/choroplethmap/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_selected.py rename to plotly/validators/choroplethmap/_selected.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_selectedpoints.py b/plotly/validators/choroplethmap/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_selectedpoints.py rename to plotly/validators/choroplethmap/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_showlegend.py b/plotly/validators/choroplethmap/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_showlegend.py rename to plotly/validators/choroplethmap/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_showscale.py b/plotly/validators/choroplethmap/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_showscale.py rename to plotly/validators/choroplethmap/_showscale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_stream.py b/plotly/validators/choroplethmap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_stream.py rename to plotly/validators/choroplethmap/_stream.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_subplot.py b/plotly/validators/choroplethmap/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_subplot.py rename to plotly/validators/choroplethmap/_subplot.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_text.py b/plotly/validators/choroplethmap/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_text.py rename to plotly/validators/choroplethmap/_text.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_textsrc.py b/plotly/validators/choroplethmap/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_textsrc.py rename to plotly/validators/choroplethmap/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_uid.py b/plotly/validators/choroplethmap/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_uid.py rename to plotly/validators/choroplethmap/_uid.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_uirevision.py b/plotly/validators/choroplethmap/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_uirevision.py rename to plotly/validators/choroplethmap/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_unselected.py b/plotly/validators/choroplethmap/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_unselected.py rename to plotly/validators/choroplethmap/_unselected.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_visible.py b/plotly/validators/choroplethmap/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_visible.py rename to plotly/validators/choroplethmap/_visible.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_z.py b/plotly/validators/choroplethmap/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_z.py rename to plotly/validators/choroplethmap/_z.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_zauto.py b/plotly/validators/choroplethmap/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_zauto.py rename to plotly/validators/choroplethmap/_zauto.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_zmax.py b/plotly/validators/choroplethmap/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_zmax.py rename to plotly/validators/choroplethmap/_zmax.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_zmid.py b/plotly/validators/choroplethmap/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_zmid.py rename to plotly/validators/choroplethmap/_zmid.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_zmin.py b/plotly/validators/choroplethmap/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_zmin.py rename to plotly/validators/choroplethmap/_zmin.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/_zsrc.py b/plotly/validators/choroplethmap/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/_zsrc.py rename to plotly/validators/choroplethmap/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/__init__.py b/plotly/validators/choroplethmap/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/__init__.py rename to plotly/validators/choroplethmap/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_bgcolor.py b/plotly/validators/choroplethmap/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_bgcolor.py rename to plotly/validators/choroplethmap/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_bordercolor.py b/plotly/validators/choroplethmap/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_bordercolor.py rename to plotly/validators/choroplethmap/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_borderwidth.py b/plotly/validators/choroplethmap/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_borderwidth.py rename to plotly/validators/choroplethmap/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_dtick.py b/plotly/validators/choroplethmap/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_dtick.py rename to plotly/validators/choroplethmap/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_exponentformat.py b/plotly/validators/choroplethmap/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_exponentformat.py rename to plotly/validators/choroplethmap/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_labelalias.py b/plotly/validators/choroplethmap/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_labelalias.py rename to plotly/validators/choroplethmap/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_len.py b/plotly/validators/choroplethmap/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_len.py rename to plotly/validators/choroplethmap/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_lenmode.py b/plotly/validators/choroplethmap/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_lenmode.py rename to plotly/validators/choroplethmap/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_minexponent.py b/plotly/validators/choroplethmap/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_minexponent.py rename to plotly/validators/choroplethmap/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_nticks.py b/plotly/validators/choroplethmap/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_nticks.py rename to plotly/validators/choroplethmap/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_orientation.py b/plotly/validators/choroplethmap/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_orientation.py rename to plotly/validators/choroplethmap/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_outlinecolor.py b/plotly/validators/choroplethmap/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_outlinecolor.py rename to plotly/validators/choroplethmap/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_outlinewidth.py b/plotly/validators/choroplethmap/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_outlinewidth.py rename to plotly/validators/choroplethmap/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_separatethousands.py b/plotly/validators/choroplethmap/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_separatethousands.py rename to plotly/validators/choroplethmap/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showexponent.py b/plotly/validators/choroplethmap/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showexponent.py rename to plotly/validators/choroplethmap/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showticklabels.py b/plotly/validators/choroplethmap/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showticklabels.py rename to plotly/validators/choroplethmap/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showtickprefix.py b/plotly/validators/choroplethmap/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showtickprefix.py rename to plotly/validators/choroplethmap/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showticksuffix.py b/plotly/validators/choroplethmap/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_showticksuffix.py rename to plotly/validators/choroplethmap/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_thickness.py b/plotly/validators/choroplethmap/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_thickness.py rename to plotly/validators/choroplethmap/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_thicknessmode.py b/plotly/validators/choroplethmap/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_thicknessmode.py rename to plotly/validators/choroplethmap/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tick0.py b/plotly/validators/choroplethmap/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tick0.py rename to plotly/validators/choroplethmap/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickangle.py b/plotly/validators/choroplethmap/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickangle.py rename to plotly/validators/choroplethmap/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickcolor.py b/plotly/validators/choroplethmap/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickcolor.py rename to plotly/validators/choroplethmap/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickfont.py b/plotly/validators/choroplethmap/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickfont.py rename to plotly/validators/choroplethmap/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickformat.py b/plotly/validators/choroplethmap/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickformat.py rename to plotly/validators/choroplethmap/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickformatstopdefaults.py b/plotly/validators/choroplethmap/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickformatstopdefaults.py rename to plotly/validators/choroplethmap/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickformatstops.py b/plotly/validators/choroplethmap/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickformatstops.py rename to plotly/validators/choroplethmap/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklabeloverflow.py b/plotly/validators/choroplethmap/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklabeloverflow.py rename to plotly/validators/choroplethmap/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklabelposition.py b/plotly/validators/choroplethmap/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklabelposition.py rename to plotly/validators/choroplethmap/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklabelstep.py b/plotly/validators/choroplethmap/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklabelstep.py rename to plotly/validators/choroplethmap/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklen.py b/plotly/validators/choroplethmap/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticklen.py rename to plotly/validators/choroplethmap/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickmode.py b/plotly/validators/choroplethmap/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickmode.py rename to plotly/validators/choroplethmap/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickprefix.py b/plotly/validators/choroplethmap/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickprefix.py rename to plotly/validators/choroplethmap/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticks.py b/plotly/validators/choroplethmap/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticks.py rename to plotly/validators/choroplethmap/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticksuffix.py b/plotly/validators/choroplethmap/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticksuffix.py rename to plotly/validators/choroplethmap/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticktext.py b/plotly/validators/choroplethmap/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticktext.py rename to plotly/validators/choroplethmap/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticktextsrc.py b/plotly/validators/choroplethmap/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ticktextsrc.py rename to plotly/validators/choroplethmap/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickvals.py b/plotly/validators/choroplethmap/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickvals.py rename to plotly/validators/choroplethmap/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickvalssrc.py b/plotly/validators/choroplethmap/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickvalssrc.py rename to plotly/validators/choroplethmap/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickwidth.py b/plotly/validators/choroplethmap/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_tickwidth.py rename to plotly/validators/choroplethmap/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_title.py b/plotly/validators/choroplethmap/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_title.py rename to plotly/validators/choroplethmap/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_x.py b/plotly/validators/choroplethmap/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_x.py rename to plotly/validators/choroplethmap/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_xanchor.py b/plotly/validators/choroplethmap/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_xanchor.py rename to plotly/validators/choroplethmap/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_xpad.py b/plotly/validators/choroplethmap/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_xpad.py rename to plotly/validators/choroplethmap/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_xref.py b/plotly/validators/choroplethmap/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_xref.py rename to plotly/validators/choroplethmap/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_y.py b/plotly/validators/choroplethmap/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_y.py rename to plotly/validators/choroplethmap/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_yanchor.py b/plotly/validators/choroplethmap/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_yanchor.py rename to plotly/validators/choroplethmap/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ypad.py b/plotly/validators/choroplethmap/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_ypad.py rename to plotly/validators/choroplethmap/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/_yref.py b/plotly/validators/choroplethmap/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/_yref.py rename to plotly/validators/choroplethmap/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/__init__.py b/plotly/validators/choroplethmap/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/__init__.py rename to plotly/validators/choroplethmap/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_color.py b/plotly/validators/choroplethmap/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_color.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_family.py b/plotly/validators/choroplethmap/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_family.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_lineposition.py b/plotly/validators/choroplethmap/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_lineposition.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_shadow.py b/plotly/validators/choroplethmap/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_shadow.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_size.py b/plotly/validators/choroplethmap/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_size.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_style.py b/plotly/validators/choroplethmap/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_style.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_textcase.py b/plotly/validators/choroplethmap/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_textcase.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_variant.py b/plotly/validators/choroplethmap/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_variant.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_weight.py b/plotly/validators/choroplethmap/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickfont/_weight.py rename to plotly/validators/choroplethmap/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/__init__.py b/plotly/validators/choroplethmap/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/__init__.py rename to plotly/validators/choroplethmap/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/choroplethmap/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/choroplethmap/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_enabled.py b/plotly/validators/choroplethmap/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_enabled.py rename to plotly/validators/choroplethmap/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_name.py b/plotly/validators/choroplethmap/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_name.py rename to plotly/validators/choroplethmap/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/choroplethmap/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/choroplethmap/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_value.py b/plotly/validators/choroplethmap/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/tickformatstop/_value.py rename to plotly/validators/choroplethmap/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/__init__.py b/plotly/validators/choroplethmap/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/__init__.py rename to plotly/validators/choroplethmap/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/_font.py b/plotly/validators/choroplethmap/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/_font.py rename to plotly/validators/choroplethmap/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/_side.py b/plotly/validators/choroplethmap/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/_side.py rename to plotly/validators/choroplethmap/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/_text.py b/plotly/validators/choroplethmap/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/_text.py rename to plotly/validators/choroplethmap/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/__init__.py b/plotly/validators/choroplethmap/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/__init__.py rename to plotly/validators/choroplethmap/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_color.py b/plotly/validators/choroplethmap/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_color.py rename to plotly/validators/choroplethmap/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_family.py b/plotly/validators/choroplethmap/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_family.py rename to plotly/validators/choroplethmap/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_lineposition.py b/plotly/validators/choroplethmap/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_lineposition.py rename to plotly/validators/choroplethmap/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_shadow.py b/plotly/validators/choroplethmap/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_shadow.py rename to plotly/validators/choroplethmap/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_size.py b/plotly/validators/choroplethmap/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_size.py rename to plotly/validators/choroplethmap/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_style.py b/plotly/validators/choroplethmap/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_style.py rename to plotly/validators/choroplethmap/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_textcase.py b/plotly/validators/choroplethmap/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_textcase.py rename to plotly/validators/choroplethmap/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_variant.py b/plotly/validators/choroplethmap/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_variant.py rename to plotly/validators/choroplethmap/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_weight.py b/plotly/validators/choroplethmap/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/colorbar/title/font/_weight.py rename to plotly/validators/choroplethmap/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/__init__.py b/plotly/validators/choroplethmap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/__init__.py rename to plotly/validators/choroplethmap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_align.py b/plotly/validators/choroplethmap/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_align.py rename to plotly/validators/choroplethmap/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_alignsrc.py b/plotly/validators/choroplethmap/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_alignsrc.py rename to plotly/validators/choroplethmap/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bgcolor.py b/plotly/validators/choroplethmap/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bgcolor.py rename to plotly/validators/choroplethmap/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bgcolorsrc.py b/plotly/validators/choroplethmap/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bgcolorsrc.py rename to plotly/validators/choroplethmap/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bordercolor.py b/plotly/validators/choroplethmap/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bordercolor.py rename to plotly/validators/choroplethmap/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bordercolorsrc.py b/plotly/validators/choroplethmap/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_bordercolorsrc.py rename to plotly/validators/choroplethmap/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_font.py b/plotly/validators/choroplethmap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_font.py rename to plotly/validators/choroplethmap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_namelength.py b/plotly/validators/choroplethmap/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_namelength.py rename to plotly/validators/choroplethmap/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_namelengthsrc.py b/plotly/validators/choroplethmap/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/_namelengthsrc.py rename to plotly/validators/choroplethmap/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/__init__.py b/plotly/validators/choroplethmap/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/__init__.py rename to plotly/validators/choroplethmap/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_color.py b/plotly/validators/choroplethmap/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_color.py rename to plotly/validators/choroplethmap/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_colorsrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_colorsrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_family.py b/plotly/validators/choroplethmap/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_family.py rename to plotly/validators/choroplethmap/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_familysrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_familysrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_lineposition.py b/plotly/validators/choroplethmap/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_lineposition.py rename to plotly/validators/choroplethmap/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_linepositionsrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_shadow.py b/plotly/validators/choroplethmap/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_shadow.py rename to plotly/validators/choroplethmap/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_shadowsrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_shadowsrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_size.py b/plotly/validators/choroplethmap/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_size.py rename to plotly/validators/choroplethmap/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_sizesrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_sizesrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_style.py b/plotly/validators/choroplethmap/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_style.py rename to plotly/validators/choroplethmap/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_stylesrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_stylesrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_textcase.py b/plotly/validators/choroplethmap/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_textcase.py rename to plotly/validators/choroplethmap/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_textcasesrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_textcasesrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_variant.py b/plotly/validators/choroplethmap/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_variant.py rename to plotly/validators/choroplethmap/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_variantsrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_variantsrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_weight.py b/plotly/validators/choroplethmap/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_weight.py rename to plotly/validators/choroplethmap/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_weightsrc.py b/plotly/validators/choroplethmap/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/hoverlabel/font/_weightsrc.py rename to plotly/validators/choroplethmap/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/__init__.py b/plotly/validators/choroplethmap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/__init__.py rename to plotly/validators/choroplethmap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/_font.py b/plotly/validators/choroplethmap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/_font.py rename to plotly/validators/choroplethmap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/_text.py b/plotly/validators/choroplethmap/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/_text.py rename to plotly/validators/choroplethmap/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/__init__.py b/plotly/validators/choroplethmap/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/__init__.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_color.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_color.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_family.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_family.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_lineposition.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_lineposition.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_shadow.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_shadow.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_size.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_size.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_style.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_style.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_textcase.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_textcase.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_variant.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_variant.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_weight.py b/plotly/validators/choroplethmap/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/legendgrouptitle/font/_weight.py rename to plotly/validators/choroplethmap/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/__init__.py b/plotly/validators/choroplethmap/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/__init__.py rename to plotly/validators/choroplethmap/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/_line.py b/plotly/validators/choroplethmap/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/_line.py rename to plotly/validators/choroplethmap/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/_opacity.py b/plotly/validators/choroplethmap/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/_opacity.py rename to plotly/validators/choroplethmap/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/_opacitysrc.py b/plotly/validators/choroplethmap/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/_opacitysrc.py rename to plotly/validators/choroplethmap/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/line/__init__.py b/plotly/validators/choroplethmap/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/line/__init__.py rename to plotly/validators/choroplethmap/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/line/_color.py b/plotly/validators/choroplethmap/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/line/_color.py rename to plotly/validators/choroplethmap/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/line/_colorsrc.py b/plotly/validators/choroplethmap/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/line/_colorsrc.py rename to plotly/validators/choroplethmap/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/line/_width.py b/plotly/validators/choroplethmap/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/line/_width.py rename to plotly/validators/choroplethmap/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/marker/line/_widthsrc.py b/plotly/validators/choroplethmap/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/marker/line/_widthsrc.py rename to plotly/validators/choroplethmap/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/selected/__init__.py b/plotly/validators/choroplethmap/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/selected/__init__.py rename to plotly/validators/choroplethmap/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/selected/_marker.py b/plotly/validators/choroplethmap/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/selected/_marker.py rename to plotly/validators/choroplethmap/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/selected/marker/__init__.py b/plotly/validators/choroplethmap/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/selected/marker/__init__.py rename to plotly/validators/choroplethmap/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/selected/marker/_opacity.py b/plotly/validators/choroplethmap/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/selected/marker/_opacity.py rename to plotly/validators/choroplethmap/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/stream/__init__.py b/plotly/validators/choroplethmap/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/stream/__init__.py rename to plotly/validators/choroplethmap/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/stream/_maxpoints.py b/plotly/validators/choroplethmap/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/stream/_maxpoints.py rename to plotly/validators/choroplethmap/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/stream/_token.py b/plotly/validators/choroplethmap/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/stream/_token.py rename to plotly/validators/choroplethmap/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/unselected/__init__.py b/plotly/validators/choroplethmap/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/unselected/__init__.py rename to plotly/validators/choroplethmap/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/unselected/_marker.py b/plotly/validators/choroplethmap/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/unselected/_marker.py rename to plotly/validators/choroplethmap/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/unselected/marker/__init__.py b/plotly/validators/choroplethmap/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/unselected/marker/__init__.py rename to plotly/validators/choroplethmap/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmap/unselected/marker/_opacity.py b/plotly/validators/choroplethmap/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmap/unselected/marker/_opacity.py rename to plotly/validators/choroplethmap/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/__init__.py b/plotly/validators/choroplethmapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/__init__.py rename to plotly/validators/choroplethmapbox/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_autocolorscale.py b/plotly/validators/choroplethmapbox/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_autocolorscale.py rename to plotly/validators/choroplethmapbox/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_below.py b/plotly/validators/choroplethmapbox/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_below.py rename to plotly/validators/choroplethmapbox/_below.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_coloraxis.py b/plotly/validators/choroplethmapbox/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_coloraxis.py rename to plotly/validators/choroplethmapbox/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_colorbar.py b/plotly/validators/choroplethmapbox/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_colorbar.py rename to plotly/validators/choroplethmapbox/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_colorscale.py b/plotly/validators/choroplethmapbox/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_colorscale.py rename to plotly/validators/choroplethmapbox/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_customdata.py b/plotly/validators/choroplethmapbox/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_customdata.py rename to plotly/validators/choroplethmapbox/_customdata.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_customdatasrc.py b/plotly/validators/choroplethmapbox/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_customdatasrc.py rename to plotly/validators/choroplethmapbox/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_featureidkey.py b/plotly/validators/choroplethmapbox/_featureidkey.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_featureidkey.py rename to plotly/validators/choroplethmapbox/_featureidkey.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_geojson.py b/plotly/validators/choroplethmapbox/_geojson.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_geojson.py rename to plotly/validators/choroplethmapbox/_geojson.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hoverinfo.py b/plotly/validators/choroplethmapbox/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hoverinfo.py rename to plotly/validators/choroplethmapbox/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hoverinfosrc.py b/plotly/validators/choroplethmapbox/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hoverinfosrc.py rename to plotly/validators/choroplethmapbox/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hoverlabel.py b/plotly/validators/choroplethmapbox/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hoverlabel.py rename to plotly/validators/choroplethmapbox/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hovertemplate.py b/plotly/validators/choroplethmapbox/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hovertemplate.py rename to plotly/validators/choroplethmapbox/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hovertemplatesrc.py b/plotly/validators/choroplethmapbox/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hovertemplatesrc.py rename to plotly/validators/choroplethmapbox/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hovertext.py b/plotly/validators/choroplethmapbox/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hovertext.py rename to plotly/validators/choroplethmapbox/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_hovertextsrc.py b/plotly/validators/choroplethmapbox/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_hovertextsrc.py rename to plotly/validators/choroplethmapbox/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_ids.py b/plotly/validators/choroplethmapbox/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_ids.py rename to plotly/validators/choroplethmapbox/_ids.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_idssrc.py b/plotly/validators/choroplethmapbox/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_idssrc.py rename to plotly/validators/choroplethmapbox/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_legend.py b/plotly/validators/choroplethmapbox/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_legend.py rename to plotly/validators/choroplethmapbox/_legend.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_legendgroup.py b/plotly/validators/choroplethmapbox/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_legendgroup.py rename to plotly/validators/choroplethmapbox/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_legendgrouptitle.py b/plotly/validators/choroplethmapbox/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_legendgrouptitle.py rename to plotly/validators/choroplethmapbox/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_legendrank.py b/plotly/validators/choroplethmapbox/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_legendrank.py rename to plotly/validators/choroplethmapbox/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_legendwidth.py b/plotly/validators/choroplethmapbox/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_legendwidth.py rename to plotly/validators/choroplethmapbox/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_locations.py b/plotly/validators/choroplethmapbox/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_locations.py rename to plotly/validators/choroplethmapbox/_locations.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_locationssrc.py b/plotly/validators/choroplethmapbox/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_locationssrc.py rename to plotly/validators/choroplethmapbox/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_marker.py b/plotly/validators/choroplethmapbox/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_marker.py rename to plotly/validators/choroplethmapbox/_marker.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_meta.py b/plotly/validators/choroplethmapbox/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_meta.py rename to plotly/validators/choroplethmapbox/_meta.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_metasrc.py b/plotly/validators/choroplethmapbox/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_metasrc.py rename to plotly/validators/choroplethmapbox/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_name.py b/plotly/validators/choroplethmapbox/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_name.py rename to plotly/validators/choroplethmapbox/_name.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_reversescale.py b/plotly/validators/choroplethmapbox/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_reversescale.py rename to plotly/validators/choroplethmapbox/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_selected.py b/plotly/validators/choroplethmapbox/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_selected.py rename to plotly/validators/choroplethmapbox/_selected.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_selectedpoints.py b/plotly/validators/choroplethmapbox/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_selectedpoints.py rename to plotly/validators/choroplethmapbox/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_showlegend.py b/plotly/validators/choroplethmapbox/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_showlegend.py rename to plotly/validators/choroplethmapbox/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_showscale.py b/plotly/validators/choroplethmapbox/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_showscale.py rename to plotly/validators/choroplethmapbox/_showscale.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_stream.py b/plotly/validators/choroplethmapbox/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_stream.py rename to plotly/validators/choroplethmapbox/_stream.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_subplot.py b/plotly/validators/choroplethmapbox/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_subplot.py rename to plotly/validators/choroplethmapbox/_subplot.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_text.py b/plotly/validators/choroplethmapbox/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_text.py rename to plotly/validators/choroplethmapbox/_text.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_textsrc.py b/plotly/validators/choroplethmapbox/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_textsrc.py rename to plotly/validators/choroplethmapbox/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_uid.py b/plotly/validators/choroplethmapbox/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_uid.py rename to plotly/validators/choroplethmapbox/_uid.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_uirevision.py b/plotly/validators/choroplethmapbox/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_uirevision.py rename to plotly/validators/choroplethmapbox/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_unselected.py b/plotly/validators/choroplethmapbox/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_unselected.py rename to plotly/validators/choroplethmapbox/_unselected.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_visible.py b/plotly/validators/choroplethmapbox/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_visible.py rename to plotly/validators/choroplethmapbox/_visible.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_z.py b/plotly/validators/choroplethmapbox/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_z.py rename to plotly/validators/choroplethmapbox/_z.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_zauto.py b/plotly/validators/choroplethmapbox/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_zauto.py rename to plotly/validators/choroplethmapbox/_zauto.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_zmax.py b/plotly/validators/choroplethmapbox/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_zmax.py rename to plotly/validators/choroplethmapbox/_zmax.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_zmid.py b/plotly/validators/choroplethmapbox/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_zmid.py rename to plotly/validators/choroplethmapbox/_zmid.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_zmin.py b/plotly/validators/choroplethmapbox/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_zmin.py rename to plotly/validators/choroplethmapbox/_zmin.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/_zsrc.py b/plotly/validators/choroplethmapbox/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/_zsrc.py rename to plotly/validators/choroplethmapbox/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/__init__.py b/plotly/validators/choroplethmapbox/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/__init__.py rename to plotly/validators/choroplethmapbox/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_bgcolor.py b/plotly/validators/choroplethmapbox/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_bgcolor.py rename to plotly/validators/choroplethmapbox/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_bordercolor.py b/plotly/validators/choroplethmapbox/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_bordercolor.py rename to plotly/validators/choroplethmapbox/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_borderwidth.py b/plotly/validators/choroplethmapbox/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_borderwidth.py rename to plotly/validators/choroplethmapbox/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_dtick.py b/plotly/validators/choroplethmapbox/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_dtick.py rename to plotly/validators/choroplethmapbox/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_exponentformat.py b/plotly/validators/choroplethmapbox/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_exponentformat.py rename to plotly/validators/choroplethmapbox/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_labelalias.py b/plotly/validators/choroplethmapbox/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_labelalias.py rename to plotly/validators/choroplethmapbox/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_len.py b/plotly/validators/choroplethmapbox/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_len.py rename to plotly/validators/choroplethmapbox/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_lenmode.py b/plotly/validators/choroplethmapbox/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_lenmode.py rename to plotly/validators/choroplethmapbox/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_minexponent.py b/plotly/validators/choroplethmapbox/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_minexponent.py rename to plotly/validators/choroplethmapbox/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_nticks.py b/plotly/validators/choroplethmapbox/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_nticks.py rename to plotly/validators/choroplethmapbox/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_orientation.py b/plotly/validators/choroplethmapbox/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_orientation.py rename to plotly/validators/choroplethmapbox/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_outlinecolor.py b/plotly/validators/choroplethmapbox/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_outlinecolor.py rename to plotly/validators/choroplethmapbox/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_outlinewidth.py b/plotly/validators/choroplethmapbox/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_outlinewidth.py rename to plotly/validators/choroplethmapbox/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_separatethousands.py b/plotly/validators/choroplethmapbox/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_separatethousands.py rename to plotly/validators/choroplethmapbox/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showexponent.py b/plotly/validators/choroplethmapbox/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showexponent.py rename to plotly/validators/choroplethmapbox/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showticklabels.py b/plotly/validators/choroplethmapbox/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showticklabels.py rename to plotly/validators/choroplethmapbox/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showtickprefix.py b/plotly/validators/choroplethmapbox/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showtickprefix.py rename to plotly/validators/choroplethmapbox/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showticksuffix.py b/plotly/validators/choroplethmapbox/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_showticksuffix.py rename to plotly/validators/choroplethmapbox/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_thickness.py b/plotly/validators/choroplethmapbox/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_thickness.py rename to plotly/validators/choroplethmapbox/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_thicknessmode.py b/plotly/validators/choroplethmapbox/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_thicknessmode.py rename to plotly/validators/choroplethmapbox/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tick0.py b/plotly/validators/choroplethmapbox/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tick0.py rename to plotly/validators/choroplethmapbox/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickangle.py b/plotly/validators/choroplethmapbox/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickangle.py rename to plotly/validators/choroplethmapbox/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickcolor.py b/plotly/validators/choroplethmapbox/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickcolor.py rename to plotly/validators/choroplethmapbox/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickfont.py b/plotly/validators/choroplethmapbox/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickfont.py rename to plotly/validators/choroplethmapbox/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickformat.py b/plotly/validators/choroplethmapbox/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickformat.py rename to plotly/validators/choroplethmapbox/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickformatstopdefaults.py b/plotly/validators/choroplethmapbox/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickformatstopdefaults.py rename to plotly/validators/choroplethmapbox/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickformatstops.py b/plotly/validators/choroplethmapbox/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickformatstops.py rename to plotly/validators/choroplethmapbox/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklabeloverflow.py b/plotly/validators/choroplethmapbox/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklabeloverflow.py rename to plotly/validators/choroplethmapbox/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklabelposition.py b/plotly/validators/choroplethmapbox/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklabelposition.py rename to plotly/validators/choroplethmapbox/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklabelstep.py b/plotly/validators/choroplethmapbox/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklabelstep.py rename to plotly/validators/choroplethmapbox/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklen.py b/plotly/validators/choroplethmapbox/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticklen.py rename to plotly/validators/choroplethmapbox/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickmode.py b/plotly/validators/choroplethmapbox/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickmode.py rename to plotly/validators/choroplethmapbox/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickprefix.py b/plotly/validators/choroplethmapbox/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickprefix.py rename to plotly/validators/choroplethmapbox/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticks.py b/plotly/validators/choroplethmapbox/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticks.py rename to plotly/validators/choroplethmapbox/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticksuffix.py b/plotly/validators/choroplethmapbox/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticksuffix.py rename to plotly/validators/choroplethmapbox/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticktext.py b/plotly/validators/choroplethmapbox/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticktext.py rename to plotly/validators/choroplethmapbox/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticktextsrc.py b/plotly/validators/choroplethmapbox/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ticktextsrc.py rename to plotly/validators/choroplethmapbox/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickvals.py b/plotly/validators/choroplethmapbox/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickvals.py rename to plotly/validators/choroplethmapbox/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickvalssrc.py b/plotly/validators/choroplethmapbox/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickvalssrc.py rename to plotly/validators/choroplethmapbox/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickwidth.py b/plotly/validators/choroplethmapbox/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_tickwidth.py rename to plotly/validators/choroplethmapbox/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_title.py b/plotly/validators/choroplethmapbox/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_title.py rename to plotly/validators/choroplethmapbox/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_x.py b/plotly/validators/choroplethmapbox/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_x.py rename to plotly/validators/choroplethmapbox/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_xanchor.py b/plotly/validators/choroplethmapbox/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_xanchor.py rename to plotly/validators/choroplethmapbox/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_xpad.py b/plotly/validators/choroplethmapbox/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_xpad.py rename to plotly/validators/choroplethmapbox/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_xref.py b/plotly/validators/choroplethmapbox/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_xref.py rename to plotly/validators/choroplethmapbox/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_y.py b/plotly/validators/choroplethmapbox/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_y.py rename to plotly/validators/choroplethmapbox/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_yanchor.py b/plotly/validators/choroplethmapbox/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_yanchor.py rename to plotly/validators/choroplethmapbox/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ypad.py b/plotly/validators/choroplethmapbox/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_ypad.py rename to plotly/validators/choroplethmapbox/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_yref.py b/plotly/validators/choroplethmapbox/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/_yref.py rename to plotly/validators/choroplethmapbox/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/__init__.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/__init__.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_color.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_color.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_family.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_family.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_lineposition.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_lineposition.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_shadow.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_shadow.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_size.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_size.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_style.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_style.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_textcase.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_textcase.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_variant.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_variant.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_weight.py b/plotly/validators/choroplethmapbox/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickfont/_weight.py rename to plotly/validators/choroplethmapbox/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/__init__.py b/plotly/validators/choroplethmapbox/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/__init__.py rename to plotly/validators/choroplethmapbox/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/choroplethmapbox/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_enabled.py b/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_enabled.py rename to plotly/validators/choroplethmapbox/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_name.py b/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_name.py rename to plotly/validators/choroplethmapbox/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/choroplethmapbox/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_value.py b/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/tickformatstop/_value.py rename to plotly/validators/choroplethmapbox/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/__init__.py b/plotly/validators/choroplethmapbox/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/__init__.py rename to plotly/validators/choroplethmapbox/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/_font.py b/plotly/validators/choroplethmapbox/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/_font.py rename to plotly/validators/choroplethmapbox/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/_side.py b/plotly/validators/choroplethmapbox/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/_side.py rename to plotly/validators/choroplethmapbox/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/_text.py b/plotly/validators/choroplethmapbox/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/_text.py rename to plotly/validators/choroplethmapbox/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/__init__.py b/plotly/validators/choroplethmapbox/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/__init__.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_color.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_color.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_family.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_family.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_lineposition.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_lineposition.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_shadow.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_shadow.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_size.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_size.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_style.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_style.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_textcase.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_textcase.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_variant.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_variant.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_weight.py b/plotly/validators/choroplethmapbox/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/colorbar/title/font/_weight.py rename to plotly/validators/choroplethmapbox/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/__init__.py b/plotly/validators/choroplethmapbox/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/__init__.py rename to plotly/validators/choroplethmapbox/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_align.py b/plotly/validators/choroplethmapbox/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_align.py rename to plotly/validators/choroplethmapbox/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_alignsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_alignsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bgcolor.py b/plotly/validators/choroplethmapbox/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bgcolor.py rename to plotly/validators/choroplethmapbox/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bgcolorsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bgcolorsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bordercolor.py b/plotly/validators/choroplethmapbox/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bordercolor.py rename to plotly/validators/choroplethmapbox/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bordercolorsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_bordercolorsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_font.py b/plotly/validators/choroplethmapbox/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_font.py rename to plotly/validators/choroplethmapbox/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_namelength.py b/plotly/validators/choroplethmapbox/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_namelength.py rename to plotly/validators/choroplethmapbox/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_namelengthsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/_namelengthsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/__init__.py b/plotly/validators/choroplethmapbox/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/__init__.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_color.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_color.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_colorsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_colorsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_family.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_family.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_familysrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_familysrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_lineposition.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_lineposition.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_linepositionsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_shadow.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_shadow.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_shadowsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_shadowsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_size.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_size.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_sizesrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_sizesrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_style.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_style.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_stylesrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_stylesrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_textcase.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_textcase.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_textcasesrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_textcasesrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_variant.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_variant.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_variantsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_variantsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_weight.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_weight.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_weightsrc.py b/plotly/validators/choroplethmapbox/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/hoverlabel/font/_weightsrc.py rename to plotly/validators/choroplethmapbox/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/__init__.py b/plotly/validators/choroplethmapbox/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/__init__.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/_font.py b/plotly/validators/choroplethmapbox/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/_font.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/_text.py b/plotly/validators/choroplethmapbox/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/_text.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/__init__.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/__init__.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_color.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_color.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_family.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_family.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_lineposition.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_lineposition.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_shadow.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_shadow.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_size.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_size.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_style.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_style.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_textcase.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_textcase.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_variant.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_variant.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_weight.py b/plotly/validators/choroplethmapbox/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/legendgrouptitle/font/_weight.py rename to plotly/validators/choroplethmapbox/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/__init__.py b/plotly/validators/choroplethmapbox/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/__init__.py rename to plotly/validators/choroplethmapbox/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/_line.py b/plotly/validators/choroplethmapbox/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/_line.py rename to plotly/validators/choroplethmapbox/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/_opacity.py b/plotly/validators/choroplethmapbox/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/_opacity.py rename to plotly/validators/choroplethmapbox/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/_opacitysrc.py b/plotly/validators/choroplethmapbox/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/_opacitysrc.py rename to plotly/validators/choroplethmapbox/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/__init__.py b/plotly/validators/choroplethmapbox/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/__init__.py rename to plotly/validators/choroplethmapbox/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_color.py b/plotly/validators/choroplethmapbox/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_color.py rename to plotly/validators/choroplethmapbox/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_colorsrc.py b/plotly/validators/choroplethmapbox/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_colorsrc.py rename to plotly/validators/choroplethmapbox/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_width.py b/plotly/validators/choroplethmapbox/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_width.py rename to plotly/validators/choroplethmapbox/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_widthsrc.py b/plotly/validators/choroplethmapbox/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/marker/line/_widthsrc.py rename to plotly/validators/choroplethmapbox/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/selected/__init__.py b/plotly/validators/choroplethmapbox/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/selected/__init__.py rename to plotly/validators/choroplethmapbox/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/selected/_marker.py b/plotly/validators/choroplethmapbox/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/selected/_marker.py rename to plotly/validators/choroplethmapbox/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/selected/marker/__init__.py b/plotly/validators/choroplethmapbox/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/selected/marker/__init__.py rename to plotly/validators/choroplethmapbox/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/selected/marker/_opacity.py b/plotly/validators/choroplethmapbox/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/selected/marker/_opacity.py rename to plotly/validators/choroplethmapbox/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/stream/__init__.py b/plotly/validators/choroplethmapbox/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/stream/__init__.py rename to plotly/validators/choroplethmapbox/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/stream/_maxpoints.py b/plotly/validators/choroplethmapbox/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/stream/_maxpoints.py rename to plotly/validators/choroplethmapbox/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/stream/_token.py b/plotly/validators/choroplethmapbox/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/stream/_token.py rename to plotly/validators/choroplethmapbox/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/unselected/__init__.py b/plotly/validators/choroplethmapbox/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/unselected/__init__.py rename to plotly/validators/choroplethmapbox/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/unselected/_marker.py b/plotly/validators/choroplethmapbox/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/unselected/_marker.py rename to plotly/validators/choroplethmapbox/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/unselected/marker/__init__.py b/plotly/validators/choroplethmapbox/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/unselected/marker/__init__.py rename to plotly/validators/choroplethmapbox/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/choroplethmapbox/unselected/marker/_opacity.py b/plotly/validators/choroplethmapbox/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/choroplethmapbox/unselected/marker/_opacity.py rename to plotly/validators/choroplethmapbox/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/cone/__init__.py b/plotly/validators/cone/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/__init__.py rename to plotly/validators/cone/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/_anchor.py b/plotly/validators/cone/_anchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_anchor.py rename to plotly/validators/cone/_anchor.py diff --git a/packages/python/plotly/plotly/validators/cone/_autocolorscale.py b/plotly/validators/cone/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_autocolorscale.py rename to plotly/validators/cone/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/cone/_cauto.py b/plotly/validators/cone/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_cauto.py rename to plotly/validators/cone/_cauto.py diff --git a/packages/python/plotly/plotly/validators/cone/_cmax.py b/plotly/validators/cone/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_cmax.py rename to plotly/validators/cone/_cmax.py diff --git a/packages/python/plotly/plotly/validators/cone/_cmid.py b/plotly/validators/cone/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_cmid.py rename to plotly/validators/cone/_cmid.py diff --git a/packages/python/plotly/plotly/validators/cone/_cmin.py b/plotly/validators/cone/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_cmin.py rename to plotly/validators/cone/_cmin.py diff --git a/packages/python/plotly/plotly/validators/cone/_coloraxis.py b/plotly/validators/cone/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_coloraxis.py rename to plotly/validators/cone/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/cone/_colorbar.py b/plotly/validators/cone/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_colorbar.py rename to plotly/validators/cone/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/cone/_colorscale.py b/plotly/validators/cone/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_colorscale.py rename to plotly/validators/cone/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/cone/_customdata.py b/plotly/validators/cone/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_customdata.py rename to plotly/validators/cone/_customdata.py diff --git a/packages/python/plotly/plotly/validators/cone/_customdatasrc.py b/plotly/validators/cone/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_customdatasrc.py rename to plotly/validators/cone/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_hoverinfo.py b/plotly/validators/cone/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hoverinfo.py rename to plotly/validators/cone/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/cone/_hoverinfosrc.py b/plotly/validators/cone/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hoverinfosrc.py rename to plotly/validators/cone/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_hoverlabel.py b/plotly/validators/cone/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hoverlabel.py rename to plotly/validators/cone/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/cone/_hovertemplate.py b/plotly/validators/cone/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hovertemplate.py rename to plotly/validators/cone/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/cone/_hovertemplatesrc.py b/plotly/validators/cone/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hovertemplatesrc.py rename to plotly/validators/cone/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_hovertext.py b/plotly/validators/cone/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hovertext.py rename to plotly/validators/cone/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/cone/_hovertextsrc.py b/plotly/validators/cone/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_hovertextsrc.py rename to plotly/validators/cone/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_ids.py b/plotly/validators/cone/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_ids.py rename to plotly/validators/cone/_ids.py diff --git a/packages/python/plotly/plotly/validators/cone/_idssrc.py b/plotly/validators/cone/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_idssrc.py rename to plotly/validators/cone/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_legend.py b/plotly/validators/cone/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_legend.py rename to plotly/validators/cone/_legend.py diff --git a/packages/python/plotly/plotly/validators/cone/_legendgroup.py b/plotly/validators/cone/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_legendgroup.py rename to plotly/validators/cone/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/cone/_legendgrouptitle.py b/plotly/validators/cone/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_legendgrouptitle.py rename to plotly/validators/cone/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/cone/_legendrank.py b/plotly/validators/cone/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_legendrank.py rename to plotly/validators/cone/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/cone/_legendwidth.py b/plotly/validators/cone/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_legendwidth.py rename to plotly/validators/cone/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/cone/_lighting.py b/plotly/validators/cone/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_lighting.py rename to plotly/validators/cone/_lighting.py diff --git a/packages/python/plotly/plotly/validators/cone/_lightposition.py b/plotly/validators/cone/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_lightposition.py rename to plotly/validators/cone/_lightposition.py diff --git a/packages/python/plotly/plotly/validators/cone/_meta.py b/plotly/validators/cone/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_meta.py rename to plotly/validators/cone/_meta.py diff --git a/packages/python/plotly/plotly/validators/cone/_metasrc.py b/plotly/validators/cone/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_metasrc.py rename to plotly/validators/cone/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_name.py b/plotly/validators/cone/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_name.py rename to plotly/validators/cone/_name.py diff --git a/packages/python/plotly/plotly/validators/cone/_opacity.py b/plotly/validators/cone/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_opacity.py rename to plotly/validators/cone/_opacity.py diff --git a/packages/python/plotly/plotly/validators/cone/_reversescale.py b/plotly/validators/cone/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_reversescale.py rename to plotly/validators/cone/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/cone/_scene.py b/plotly/validators/cone/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_scene.py rename to plotly/validators/cone/_scene.py diff --git a/packages/python/plotly/plotly/validators/cone/_showlegend.py b/plotly/validators/cone/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_showlegend.py rename to plotly/validators/cone/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/cone/_showscale.py b/plotly/validators/cone/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_showscale.py rename to plotly/validators/cone/_showscale.py diff --git a/packages/python/plotly/plotly/validators/cone/_sizemode.py b/plotly/validators/cone/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_sizemode.py rename to plotly/validators/cone/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/cone/_sizeref.py b/plotly/validators/cone/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_sizeref.py rename to plotly/validators/cone/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/cone/_stream.py b/plotly/validators/cone/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_stream.py rename to plotly/validators/cone/_stream.py diff --git a/packages/python/plotly/plotly/validators/cone/_text.py b/plotly/validators/cone/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_text.py rename to plotly/validators/cone/_text.py diff --git a/packages/python/plotly/plotly/validators/cone/_textsrc.py b/plotly/validators/cone/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_textsrc.py rename to plotly/validators/cone/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_u.py b/plotly/validators/cone/_u.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_u.py rename to plotly/validators/cone/_u.py diff --git a/packages/python/plotly/plotly/validators/cone/_uhoverformat.py b/plotly/validators/cone/_uhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_uhoverformat.py rename to plotly/validators/cone/_uhoverformat.py diff --git a/packages/python/plotly/plotly/validators/cone/_uid.py b/plotly/validators/cone/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_uid.py rename to plotly/validators/cone/_uid.py diff --git a/packages/python/plotly/plotly/validators/cone/_uirevision.py b/plotly/validators/cone/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_uirevision.py rename to plotly/validators/cone/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/cone/_usrc.py b/plotly/validators/cone/_usrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_usrc.py rename to plotly/validators/cone/_usrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_v.py b/plotly/validators/cone/_v.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_v.py rename to plotly/validators/cone/_v.py diff --git a/packages/python/plotly/plotly/validators/cone/_vhoverformat.py b/plotly/validators/cone/_vhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_vhoverformat.py rename to plotly/validators/cone/_vhoverformat.py diff --git a/packages/python/plotly/plotly/validators/cone/_visible.py b/plotly/validators/cone/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_visible.py rename to plotly/validators/cone/_visible.py diff --git a/packages/python/plotly/plotly/validators/cone/_vsrc.py b/plotly/validators/cone/_vsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_vsrc.py rename to plotly/validators/cone/_vsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_w.py b/plotly/validators/cone/_w.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_w.py rename to plotly/validators/cone/_w.py diff --git a/packages/python/plotly/plotly/validators/cone/_whoverformat.py b/plotly/validators/cone/_whoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_whoverformat.py rename to plotly/validators/cone/_whoverformat.py diff --git a/packages/python/plotly/plotly/validators/cone/_wsrc.py b/plotly/validators/cone/_wsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_wsrc.py rename to plotly/validators/cone/_wsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_x.py b/plotly/validators/cone/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_x.py rename to plotly/validators/cone/_x.py diff --git a/packages/python/plotly/plotly/validators/cone/_xhoverformat.py b/plotly/validators/cone/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_xhoverformat.py rename to plotly/validators/cone/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/cone/_xsrc.py b/plotly/validators/cone/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_xsrc.py rename to plotly/validators/cone/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_y.py b/plotly/validators/cone/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_y.py rename to plotly/validators/cone/_y.py diff --git a/packages/python/plotly/plotly/validators/cone/_yhoverformat.py b/plotly/validators/cone/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_yhoverformat.py rename to plotly/validators/cone/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/cone/_ysrc.py b/plotly/validators/cone/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_ysrc.py rename to plotly/validators/cone/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/cone/_z.py b/plotly/validators/cone/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_z.py rename to plotly/validators/cone/_z.py diff --git a/packages/python/plotly/plotly/validators/cone/_zhoverformat.py b/plotly/validators/cone/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_zhoverformat.py rename to plotly/validators/cone/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/cone/_zsrc.py b/plotly/validators/cone/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/_zsrc.py rename to plotly/validators/cone/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/__init__.py b/plotly/validators/cone/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/__init__.py rename to plotly/validators/cone/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_bgcolor.py b/plotly/validators/cone/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_bgcolor.py rename to plotly/validators/cone/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_bordercolor.py b/plotly/validators/cone/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_bordercolor.py rename to plotly/validators/cone/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_borderwidth.py b/plotly/validators/cone/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_borderwidth.py rename to plotly/validators/cone/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_dtick.py b/plotly/validators/cone/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_dtick.py rename to plotly/validators/cone/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_exponentformat.py b/plotly/validators/cone/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_exponentformat.py rename to plotly/validators/cone/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_labelalias.py b/plotly/validators/cone/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_labelalias.py rename to plotly/validators/cone/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_len.py b/plotly/validators/cone/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_len.py rename to plotly/validators/cone/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_lenmode.py b/plotly/validators/cone/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_lenmode.py rename to plotly/validators/cone/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_minexponent.py b/plotly/validators/cone/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_minexponent.py rename to plotly/validators/cone/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_nticks.py b/plotly/validators/cone/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_nticks.py rename to plotly/validators/cone/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_orientation.py b/plotly/validators/cone/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_orientation.py rename to plotly/validators/cone/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_outlinecolor.py b/plotly/validators/cone/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_outlinecolor.py rename to plotly/validators/cone/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_outlinewidth.py b/plotly/validators/cone/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_outlinewidth.py rename to plotly/validators/cone/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_separatethousands.py b/plotly/validators/cone/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_separatethousands.py rename to plotly/validators/cone/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_showexponent.py b/plotly/validators/cone/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_showexponent.py rename to plotly/validators/cone/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_showticklabels.py b/plotly/validators/cone/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_showticklabels.py rename to plotly/validators/cone/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_showtickprefix.py b/plotly/validators/cone/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_showtickprefix.py rename to plotly/validators/cone/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_showticksuffix.py b/plotly/validators/cone/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_showticksuffix.py rename to plotly/validators/cone/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_thickness.py b/plotly/validators/cone/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_thickness.py rename to plotly/validators/cone/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_thicknessmode.py b/plotly/validators/cone/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_thicknessmode.py rename to plotly/validators/cone/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tick0.py b/plotly/validators/cone/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tick0.py rename to plotly/validators/cone/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickangle.py b/plotly/validators/cone/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickangle.py rename to plotly/validators/cone/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickcolor.py b/plotly/validators/cone/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickcolor.py rename to plotly/validators/cone/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickfont.py b/plotly/validators/cone/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickfont.py rename to plotly/validators/cone/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickformat.py b/plotly/validators/cone/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickformat.py rename to plotly/validators/cone/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickformatstopdefaults.py b/plotly/validators/cone/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickformatstopdefaults.py rename to plotly/validators/cone/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickformatstops.py b/plotly/validators/cone/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickformatstops.py rename to plotly/validators/cone/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticklabeloverflow.py b/plotly/validators/cone/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticklabeloverflow.py rename to plotly/validators/cone/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticklabelposition.py b/plotly/validators/cone/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticklabelposition.py rename to plotly/validators/cone/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticklabelstep.py b/plotly/validators/cone/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticklabelstep.py rename to plotly/validators/cone/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticklen.py b/plotly/validators/cone/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticklen.py rename to plotly/validators/cone/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickmode.py b/plotly/validators/cone/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickmode.py rename to plotly/validators/cone/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickprefix.py b/plotly/validators/cone/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickprefix.py rename to plotly/validators/cone/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticks.py b/plotly/validators/cone/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticks.py rename to plotly/validators/cone/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticksuffix.py b/plotly/validators/cone/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticksuffix.py rename to plotly/validators/cone/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticktext.py b/plotly/validators/cone/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticktext.py rename to plotly/validators/cone/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ticktextsrc.py b/plotly/validators/cone/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ticktextsrc.py rename to plotly/validators/cone/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickvals.py b/plotly/validators/cone/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickvals.py rename to plotly/validators/cone/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickvalssrc.py b/plotly/validators/cone/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickvalssrc.py rename to plotly/validators/cone/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_tickwidth.py b/plotly/validators/cone/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_tickwidth.py rename to plotly/validators/cone/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_title.py b/plotly/validators/cone/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_title.py rename to plotly/validators/cone/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_x.py b/plotly/validators/cone/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_x.py rename to plotly/validators/cone/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_xanchor.py b/plotly/validators/cone/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_xanchor.py rename to plotly/validators/cone/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_xpad.py b/plotly/validators/cone/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_xpad.py rename to plotly/validators/cone/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_xref.py b/plotly/validators/cone/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_xref.py rename to plotly/validators/cone/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_y.py b/plotly/validators/cone/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_y.py rename to plotly/validators/cone/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_yanchor.py b/plotly/validators/cone/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_yanchor.py rename to plotly/validators/cone/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_ypad.py b/plotly/validators/cone/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_ypad.py rename to plotly/validators/cone/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/_yref.py b/plotly/validators/cone/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/_yref.py rename to plotly/validators/cone/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/__init__.py b/plotly/validators/cone/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/__init__.py rename to plotly/validators/cone/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_color.py b/plotly/validators/cone/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_color.py rename to plotly/validators/cone/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_family.py b/plotly/validators/cone/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_family.py rename to plotly/validators/cone/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_lineposition.py b/plotly/validators/cone/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_lineposition.py rename to plotly/validators/cone/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_shadow.py b/plotly/validators/cone/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_shadow.py rename to plotly/validators/cone/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_size.py b/plotly/validators/cone/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_size.py rename to plotly/validators/cone/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_style.py b/plotly/validators/cone/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_style.py rename to plotly/validators/cone/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_textcase.py b/plotly/validators/cone/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_textcase.py rename to plotly/validators/cone/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_variant.py b/plotly/validators/cone/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_variant.py rename to plotly/validators/cone/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_weight.py b/plotly/validators/cone/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickfont/_weight.py rename to plotly/validators/cone/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/__init__.py b/plotly/validators/cone/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/__init__.py rename to plotly/validators/cone/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/cone/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/cone/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_enabled.py b/plotly/validators/cone/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_enabled.py rename to plotly/validators/cone/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_name.py b/plotly/validators/cone/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_name.py rename to plotly/validators/cone/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/cone/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/cone/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_value.py b/plotly/validators/cone/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/tickformatstop/_value.py rename to plotly/validators/cone/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/__init__.py b/plotly/validators/cone/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/__init__.py rename to plotly/validators/cone/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/_font.py b/plotly/validators/cone/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/_font.py rename to plotly/validators/cone/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/_side.py b/plotly/validators/cone/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/_side.py rename to plotly/validators/cone/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/_text.py b/plotly/validators/cone/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/_text.py rename to plotly/validators/cone/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/__init__.py b/plotly/validators/cone/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/__init__.py rename to plotly/validators/cone/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_color.py b/plotly/validators/cone/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_color.py rename to plotly/validators/cone/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_family.py b/plotly/validators/cone/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_family.py rename to plotly/validators/cone/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_lineposition.py b/plotly/validators/cone/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_lineposition.py rename to plotly/validators/cone/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_shadow.py b/plotly/validators/cone/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_shadow.py rename to plotly/validators/cone/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_size.py b/plotly/validators/cone/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_size.py rename to plotly/validators/cone/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_style.py b/plotly/validators/cone/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_style.py rename to plotly/validators/cone/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_textcase.py b/plotly/validators/cone/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_textcase.py rename to plotly/validators/cone/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_variant.py b/plotly/validators/cone/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_variant.py rename to plotly/validators/cone/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/cone/colorbar/title/font/_weight.py b/plotly/validators/cone/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/colorbar/title/font/_weight.py rename to plotly/validators/cone/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/__init__.py b/plotly/validators/cone/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/__init__.py rename to plotly/validators/cone/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_align.py b/plotly/validators/cone/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_align.py rename to plotly/validators/cone/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_alignsrc.py b/plotly/validators/cone/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_alignsrc.py rename to plotly/validators/cone/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_bgcolor.py b/plotly/validators/cone/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_bgcolor.py rename to plotly/validators/cone/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_bgcolorsrc.py b/plotly/validators/cone/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_bgcolorsrc.py rename to plotly/validators/cone/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_bordercolor.py b/plotly/validators/cone/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_bordercolor.py rename to plotly/validators/cone/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_bordercolorsrc.py b/plotly/validators/cone/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_bordercolorsrc.py rename to plotly/validators/cone/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_font.py b/plotly/validators/cone/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_font.py rename to plotly/validators/cone/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_namelength.py b/plotly/validators/cone/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_namelength.py rename to plotly/validators/cone/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/_namelengthsrc.py b/plotly/validators/cone/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/_namelengthsrc.py rename to plotly/validators/cone/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/__init__.py b/plotly/validators/cone/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/__init__.py rename to plotly/validators/cone/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_color.py b/plotly/validators/cone/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_color.py rename to plotly/validators/cone/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_colorsrc.py b/plotly/validators/cone/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_colorsrc.py rename to plotly/validators/cone/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_family.py b/plotly/validators/cone/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_family.py rename to plotly/validators/cone/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_familysrc.py b/plotly/validators/cone/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_familysrc.py rename to plotly/validators/cone/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_lineposition.py b/plotly/validators/cone/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_lineposition.py rename to plotly/validators/cone/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_linepositionsrc.py b/plotly/validators/cone/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/cone/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_shadow.py b/plotly/validators/cone/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_shadow.py rename to plotly/validators/cone/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_shadowsrc.py b/plotly/validators/cone/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_shadowsrc.py rename to plotly/validators/cone/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_size.py b/plotly/validators/cone/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_size.py rename to plotly/validators/cone/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_sizesrc.py b/plotly/validators/cone/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_sizesrc.py rename to plotly/validators/cone/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_style.py b/plotly/validators/cone/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_style.py rename to plotly/validators/cone/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_stylesrc.py b/plotly/validators/cone/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_stylesrc.py rename to plotly/validators/cone/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_textcase.py b/plotly/validators/cone/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_textcase.py rename to plotly/validators/cone/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_textcasesrc.py b/plotly/validators/cone/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_textcasesrc.py rename to plotly/validators/cone/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_variant.py b/plotly/validators/cone/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_variant.py rename to plotly/validators/cone/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_variantsrc.py b/plotly/validators/cone/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_variantsrc.py rename to plotly/validators/cone/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_weight.py b/plotly/validators/cone/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_weight.py rename to plotly/validators/cone/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/cone/hoverlabel/font/_weightsrc.py b/plotly/validators/cone/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/hoverlabel/font/_weightsrc.py rename to plotly/validators/cone/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/__init__.py b/plotly/validators/cone/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/__init__.py rename to plotly/validators/cone/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/_font.py b/plotly/validators/cone/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/_font.py rename to plotly/validators/cone/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/_text.py b/plotly/validators/cone/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/_text.py rename to plotly/validators/cone/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/__init__.py b/plotly/validators/cone/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/__init__.py rename to plotly/validators/cone/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_color.py b/plotly/validators/cone/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_color.py rename to plotly/validators/cone/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_family.py b/plotly/validators/cone/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_family.py rename to plotly/validators/cone/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_lineposition.py b/plotly/validators/cone/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_lineposition.py rename to plotly/validators/cone/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_shadow.py b/plotly/validators/cone/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_shadow.py rename to plotly/validators/cone/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_size.py b/plotly/validators/cone/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_size.py rename to plotly/validators/cone/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_style.py b/plotly/validators/cone/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_style.py rename to plotly/validators/cone/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_textcase.py b/plotly/validators/cone/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_textcase.py rename to plotly/validators/cone/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_variant.py b/plotly/validators/cone/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_variant.py rename to plotly/validators/cone/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_weight.py b/plotly/validators/cone/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/legendgrouptitle/font/_weight.py rename to plotly/validators/cone/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/__init__.py b/plotly/validators/cone/lighting/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/__init__.py rename to plotly/validators/cone/lighting/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_ambient.py b/plotly/validators/cone/lighting/_ambient.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_ambient.py rename to plotly/validators/cone/lighting/_ambient.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_diffuse.py b/plotly/validators/cone/lighting/_diffuse.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_diffuse.py rename to plotly/validators/cone/lighting/_diffuse.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_facenormalsepsilon.py b/plotly/validators/cone/lighting/_facenormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_facenormalsepsilon.py rename to plotly/validators/cone/lighting/_facenormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_fresnel.py b/plotly/validators/cone/lighting/_fresnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_fresnel.py rename to plotly/validators/cone/lighting/_fresnel.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_roughness.py b/plotly/validators/cone/lighting/_roughness.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_roughness.py rename to plotly/validators/cone/lighting/_roughness.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_specular.py b/plotly/validators/cone/lighting/_specular.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_specular.py rename to plotly/validators/cone/lighting/_specular.py diff --git a/packages/python/plotly/plotly/validators/cone/lighting/_vertexnormalsepsilon.py b/plotly/validators/cone/lighting/_vertexnormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lighting/_vertexnormalsepsilon.py rename to plotly/validators/cone/lighting/_vertexnormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/cone/lightposition/__init__.py b/plotly/validators/cone/lightposition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lightposition/__init__.py rename to plotly/validators/cone/lightposition/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/lightposition/_x.py b/plotly/validators/cone/lightposition/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lightposition/_x.py rename to plotly/validators/cone/lightposition/_x.py diff --git a/packages/python/plotly/plotly/validators/cone/lightposition/_y.py b/plotly/validators/cone/lightposition/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lightposition/_y.py rename to plotly/validators/cone/lightposition/_y.py diff --git a/packages/python/plotly/plotly/validators/cone/lightposition/_z.py b/plotly/validators/cone/lightposition/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/lightposition/_z.py rename to plotly/validators/cone/lightposition/_z.py diff --git a/packages/python/plotly/plotly/validators/cone/stream/__init__.py b/plotly/validators/cone/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/stream/__init__.py rename to plotly/validators/cone/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/cone/stream/_maxpoints.py b/plotly/validators/cone/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/stream/_maxpoints.py rename to plotly/validators/cone/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/cone/stream/_token.py b/plotly/validators/cone/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/cone/stream/_token.py rename to plotly/validators/cone/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/contour/__init__.py b/plotly/validators/contour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/__init__.py rename to plotly/validators/contour/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/_autocolorscale.py b/plotly/validators/contour/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_autocolorscale.py rename to plotly/validators/contour/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/contour/_autocontour.py b/plotly/validators/contour/_autocontour.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_autocontour.py rename to plotly/validators/contour/_autocontour.py diff --git a/packages/python/plotly/plotly/validators/contour/_coloraxis.py b/plotly/validators/contour/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_coloraxis.py rename to plotly/validators/contour/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/contour/_colorbar.py b/plotly/validators/contour/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_colorbar.py rename to plotly/validators/contour/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/contour/_colorscale.py b/plotly/validators/contour/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_colorscale.py rename to plotly/validators/contour/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/contour/_connectgaps.py b/plotly/validators/contour/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_connectgaps.py rename to plotly/validators/contour/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/contour/_contours.py b/plotly/validators/contour/_contours.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_contours.py rename to plotly/validators/contour/_contours.py diff --git a/packages/python/plotly/plotly/validators/contour/_customdata.py b/plotly/validators/contour/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_customdata.py rename to plotly/validators/contour/_customdata.py diff --git a/packages/python/plotly/plotly/validators/contour/_customdatasrc.py b/plotly/validators/contour/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_customdatasrc.py rename to plotly/validators/contour/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_dx.py b/plotly/validators/contour/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_dx.py rename to plotly/validators/contour/_dx.py diff --git a/packages/python/plotly/plotly/validators/contour/_dy.py b/plotly/validators/contour/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_dy.py rename to plotly/validators/contour/_dy.py diff --git a/packages/python/plotly/plotly/validators/contour/_fillcolor.py b/plotly/validators/contour/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_fillcolor.py rename to plotly/validators/contour/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/contour/_hoverinfo.py b/plotly/validators/contour/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hoverinfo.py rename to plotly/validators/contour/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/contour/_hoverinfosrc.py b/plotly/validators/contour/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hoverinfosrc.py rename to plotly/validators/contour/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_hoverlabel.py b/plotly/validators/contour/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hoverlabel.py rename to plotly/validators/contour/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/contour/_hoverongaps.py b/plotly/validators/contour/_hoverongaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hoverongaps.py rename to plotly/validators/contour/_hoverongaps.py diff --git a/packages/python/plotly/plotly/validators/contour/_hovertemplate.py b/plotly/validators/contour/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hovertemplate.py rename to plotly/validators/contour/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/contour/_hovertemplatesrc.py b/plotly/validators/contour/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hovertemplatesrc.py rename to plotly/validators/contour/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_hovertext.py b/plotly/validators/contour/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hovertext.py rename to plotly/validators/contour/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/contour/_hovertextsrc.py b/plotly/validators/contour/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_hovertextsrc.py rename to plotly/validators/contour/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_ids.py b/plotly/validators/contour/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_ids.py rename to plotly/validators/contour/_ids.py diff --git a/packages/python/plotly/plotly/validators/contour/_idssrc.py b/plotly/validators/contour/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_idssrc.py rename to plotly/validators/contour/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_legend.py b/plotly/validators/contour/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_legend.py rename to plotly/validators/contour/_legend.py diff --git a/packages/python/plotly/plotly/validators/contour/_legendgroup.py b/plotly/validators/contour/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_legendgroup.py rename to plotly/validators/contour/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/contour/_legendgrouptitle.py b/plotly/validators/contour/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_legendgrouptitle.py rename to plotly/validators/contour/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/contour/_legendrank.py b/plotly/validators/contour/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_legendrank.py rename to plotly/validators/contour/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/contour/_legendwidth.py b/plotly/validators/contour/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_legendwidth.py rename to plotly/validators/contour/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/contour/_line.py b/plotly/validators/contour/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_line.py rename to plotly/validators/contour/_line.py diff --git a/packages/python/plotly/plotly/validators/contour/_meta.py b/plotly/validators/contour/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_meta.py rename to plotly/validators/contour/_meta.py diff --git a/packages/python/plotly/plotly/validators/contour/_metasrc.py b/plotly/validators/contour/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_metasrc.py rename to plotly/validators/contour/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_name.py b/plotly/validators/contour/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_name.py rename to plotly/validators/contour/_name.py diff --git a/packages/python/plotly/plotly/validators/contour/_ncontours.py b/plotly/validators/contour/_ncontours.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_ncontours.py rename to plotly/validators/contour/_ncontours.py diff --git a/packages/python/plotly/plotly/validators/contour/_opacity.py b/plotly/validators/contour/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_opacity.py rename to plotly/validators/contour/_opacity.py diff --git a/packages/python/plotly/plotly/validators/contour/_reversescale.py b/plotly/validators/contour/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_reversescale.py rename to plotly/validators/contour/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/contour/_showlegend.py b/plotly/validators/contour/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_showlegend.py rename to plotly/validators/contour/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/contour/_showscale.py b/plotly/validators/contour/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_showscale.py rename to plotly/validators/contour/_showscale.py diff --git a/packages/python/plotly/plotly/validators/contour/_stream.py b/plotly/validators/contour/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_stream.py rename to plotly/validators/contour/_stream.py diff --git a/packages/python/plotly/plotly/validators/contour/_text.py b/plotly/validators/contour/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_text.py rename to plotly/validators/contour/_text.py diff --git a/packages/python/plotly/plotly/validators/contour/_textfont.py b/plotly/validators/contour/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_textfont.py rename to plotly/validators/contour/_textfont.py diff --git a/packages/python/plotly/plotly/validators/contour/_textsrc.py b/plotly/validators/contour/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_textsrc.py rename to plotly/validators/contour/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_texttemplate.py b/plotly/validators/contour/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_texttemplate.py rename to plotly/validators/contour/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/contour/_transpose.py b/plotly/validators/contour/_transpose.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_transpose.py rename to plotly/validators/contour/_transpose.py diff --git a/packages/python/plotly/plotly/validators/contour/_uid.py b/plotly/validators/contour/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_uid.py rename to plotly/validators/contour/_uid.py diff --git a/packages/python/plotly/plotly/validators/contour/_uirevision.py b/plotly/validators/contour/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_uirevision.py rename to plotly/validators/contour/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/contour/_visible.py b/plotly/validators/contour/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_visible.py rename to plotly/validators/contour/_visible.py diff --git a/packages/python/plotly/plotly/validators/contour/_x.py b/plotly/validators/contour/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_x.py rename to plotly/validators/contour/_x.py diff --git a/packages/python/plotly/plotly/validators/contour/_x0.py b/plotly/validators/contour/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_x0.py rename to plotly/validators/contour/_x0.py diff --git a/packages/python/plotly/plotly/validators/contour/_xaxis.py b/plotly/validators/contour/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xaxis.py rename to plotly/validators/contour/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/contour/_xcalendar.py b/plotly/validators/contour/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xcalendar.py rename to plotly/validators/contour/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/contour/_xhoverformat.py b/plotly/validators/contour/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xhoverformat.py rename to plotly/validators/contour/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/contour/_xperiod.py b/plotly/validators/contour/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xperiod.py rename to plotly/validators/contour/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/contour/_xperiod0.py b/plotly/validators/contour/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xperiod0.py rename to plotly/validators/contour/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/contour/_xperiodalignment.py b/plotly/validators/contour/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xperiodalignment.py rename to plotly/validators/contour/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/contour/_xsrc.py b/plotly/validators/contour/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xsrc.py rename to plotly/validators/contour/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_xtype.py b/plotly/validators/contour/_xtype.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_xtype.py rename to plotly/validators/contour/_xtype.py diff --git a/packages/python/plotly/plotly/validators/contour/_y.py b/plotly/validators/contour/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_y.py rename to plotly/validators/contour/_y.py diff --git a/packages/python/plotly/plotly/validators/contour/_y0.py b/plotly/validators/contour/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_y0.py rename to plotly/validators/contour/_y0.py diff --git a/packages/python/plotly/plotly/validators/contour/_yaxis.py b/plotly/validators/contour/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_yaxis.py rename to plotly/validators/contour/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/contour/_ycalendar.py b/plotly/validators/contour/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_ycalendar.py rename to plotly/validators/contour/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/contour/_yhoverformat.py b/plotly/validators/contour/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_yhoverformat.py rename to plotly/validators/contour/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/contour/_yperiod.py b/plotly/validators/contour/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_yperiod.py rename to plotly/validators/contour/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/contour/_yperiod0.py b/plotly/validators/contour/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_yperiod0.py rename to plotly/validators/contour/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/contour/_yperiodalignment.py b/plotly/validators/contour/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_yperiodalignment.py rename to plotly/validators/contour/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/contour/_ysrc.py b/plotly/validators/contour/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_ysrc.py rename to plotly/validators/contour/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/contour/_ytype.py b/plotly/validators/contour/_ytype.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_ytype.py rename to plotly/validators/contour/_ytype.py diff --git a/packages/python/plotly/plotly/validators/contour/_z.py b/plotly/validators/contour/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_z.py rename to plotly/validators/contour/_z.py diff --git a/packages/python/plotly/plotly/validators/contour/_zauto.py b/plotly/validators/contour/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zauto.py rename to plotly/validators/contour/_zauto.py diff --git a/packages/python/plotly/plotly/validators/contour/_zhoverformat.py b/plotly/validators/contour/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zhoverformat.py rename to plotly/validators/contour/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/contour/_zmax.py b/plotly/validators/contour/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zmax.py rename to plotly/validators/contour/_zmax.py diff --git a/packages/python/plotly/plotly/validators/contour/_zmid.py b/plotly/validators/contour/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zmid.py rename to plotly/validators/contour/_zmid.py diff --git a/packages/python/plotly/plotly/validators/contour/_zmin.py b/plotly/validators/contour/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zmin.py rename to plotly/validators/contour/_zmin.py diff --git a/packages/python/plotly/plotly/validators/contour/_zorder.py b/plotly/validators/contour/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zorder.py rename to plotly/validators/contour/_zorder.py diff --git a/packages/python/plotly/plotly/validators/contour/_zsrc.py b/plotly/validators/contour/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/_zsrc.py rename to plotly/validators/contour/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/__init__.py b/plotly/validators/contour/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/__init__.py rename to plotly/validators/contour/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_bgcolor.py b/plotly/validators/contour/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_bgcolor.py rename to plotly/validators/contour/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_bordercolor.py b/plotly/validators/contour/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_bordercolor.py rename to plotly/validators/contour/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_borderwidth.py b/plotly/validators/contour/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_borderwidth.py rename to plotly/validators/contour/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_dtick.py b/plotly/validators/contour/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_dtick.py rename to plotly/validators/contour/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_exponentformat.py b/plotly/validators/contour/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_exponentformat.py rename to plotly/validators/contour/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_labelalias.py b/plotly/validators/contour/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_labelalias.py rename to plotly/validators/contour/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_len.py b/plotly/validators/contour/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_len.py rename to plotly/validators/contour/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_lenmode.py b/plotly/validators/contour/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_lenmode.py rename to plotly/validators/contour/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_minexponent.py b/plotly/validators/contour/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_minexponent.py rename to plotly/validators/contour/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_nticks.py b/plotly/validators/contour/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_nticks.py rename to plotly/validators/contour/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_orientation.py b/plotly/validators/contour/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_orientation.py rename to plotly/validators/contour/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_outlinecolor.py b/plotly/validators/contour/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_outlinecolor.py rename to plotly/validators/contour/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_outlinewidth.py b/plotly/validators/contour/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_outlinewidth.py rename to plotly/validators/contour/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_separatethousands.py b/plotly/validators/contour/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_separatethousands.py rename to plotly/validators/contour/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_showexponent.py b/plotly/validators/contour/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_showexponent.py rename to plotly/validators/contour/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_showticklabels.py b/plotly/validators/contour/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_showticklabels.py rename to plotly/validators/contour/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_showtickprefix.py b/plotly/validators/contour/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_showtickprefix.py rename to plotly/validators/contour/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_showticksuffix.py b/plotly/validators/contour/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_showticksuffix.py rename to plotly/validators/contour/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_thickness.py b/plotly/validators/contour/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_thickness.py rename to plotly/validators/contour/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_thicknessmode.py b/plotly/validators/contour/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_thicknessmode.py rename to plotly/validators/contour/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tick0.py b/plotly/validators/contour/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tick0.py rename to plotly/validators/contour/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickangle.py b/plotly/validators/contour/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickangle.py rename to plotly/validators/contour/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickcolor.py b/plotly/validators/contour/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickcolor.py rename to plotly/validators/contour/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickfont.py b/plotly/validators/contour/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickfont.py rename to plotly/validators/contour/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickformat.py b/plotly/validators/contour/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickformat.py rename to plotly/validators/contour/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickformatstopdefaults.py b/plotly/validators/contour/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickformatstopdefaults.py rename to plotly/validators/contour/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickformatstops.py b/plotly/validators/contour/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickformatstops.py rename to plotly/validators/contour/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticklabeloverflow.py b/plotly/validators/contour/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticklabeloverflow.py rename to plotly/validators/contour/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticklabelposition.py b/plotly/validators/contour/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticklabelposition.py rename to plotly/validators/contour/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticklabelstep.py b/plotly/validators/contour/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticklabelstep.py rename to plotly/validators/contour/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticklen.py b/plotly/validators/contour/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticklen.py rename to plotly/validators/contour/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickmode.py b/plotly/validators/contour/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickmode.py rename to plotly/validators/contour/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickprefix.py b/plotly/validators/contour/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickprefix.py rename to plotly/validators/contour/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticks.py b/plotly/validators/contour/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticks.py rename to plotly/validators/contour/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticksuffix.py b/plotly/validators/contour/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticksuffix.py rename to plotly/validators/contour/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticktext.py b/plotly/validators/contour/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticktext.py rename to plotly/validators/contour/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ticktextsrc.py b/plotly/validators/contour/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ticktextsrc.py rename to plotly/validators/contour/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickvals.py b/plotly/validators/contour/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickvals.py rename to plotly/validators/contour/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickvalssrc.py b/plotly/validators/contour/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickvalssrc.py rename to plotly/validators/contour/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_tickwidth.py b/plotly/validators/contour/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_tickwidth.py rename to plotly/validators/contour/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_title.py b/plotly/validators/contour/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_title.py rename to plotly/validators/contour/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_x.py b/plotly/validators/contour/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_x.py rename to plotly/validators/contour/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_xanchor.py b/plotly/validators/contour/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_xanchor.py rename to plotly/validators/contour/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_xpad.py b/plotly/validators/contour/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_xpad.py rename to plotly/validators/contour/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_xref.py b/plotly/validators/contour/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_xref.py rename to plotly/validators/contour/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_y.py b/plotly/validators/contour/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_y.py rename to plotly/validators/contour/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_yanchor.py b/plotly/validators/contour/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_yanchor.py rename to plotly/validators/contour/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_ypad.py b/plotly/validators/contour/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_ypad.py rename to plotly/validators/contour/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/_yref.py b/plotly/validators/contour/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/_yref.py rename to plotly/validators/contour/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/__init__.py b/plotly/validators/contour/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/__init__.py rename to plotly/validators/contour/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_color.py b/plotly/validators/contour/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_color.py rename to plotly/validators/contour/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_family.py b/plotly/validators/contour/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_family.py rename to plotly/validators/contour/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_lineposition.py b/plotly/validators/contour/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_lineposition.py rename to plotly/validators/contour/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_shadow.py b/plotly/validators/contour/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_shadow.py rename to plotly/validators/contour/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_size.py b/plotly/validators/contour/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_size.py rename to plotly/validators/contour/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_style.py b/plotly/validators/contour/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_style.py rename to plotly/validators/contour/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_textcase.py b/plotly/validators/contour/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_textcase.py rename to plotly/validators/contour/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_variant.py b/plotly/validators/contour/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_variant.py rename to plotly/validators/contour/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_weight.py b/plotly/validators/contour/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickfont/_weight.py rename to plotly/validators/contour/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/__init__.py b/plotly/validators/contour/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/__init__.py rename to plotly/validators/contour/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/contour/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/contour/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_enabled.py b/plotly/validators/contour/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_enabled.py rename to plotly/validators/contour/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_name.py b/plotly/validators/contour/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_name.py rename to plotly/validators/contour/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/contour/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/contour/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_value.py b/plotly/validators/contour/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/tickformatstop/_value.py rename to plotly/validators/contour/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/__init__.py b/plotly/validators/contour/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/__init__.py rename to plotly/validators/contour/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/_font.py b/plotly/validators/contour/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/_font.py rename to plotly/validators/contour/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/_side.py b/plotly/validators/contour/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/_side.py rename to plotly/validators/contour/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/_text.py b/plotly/validators/contour/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/_text.py rename to plotly/validators/contour/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/__init__.py b/plotly/validators/contour/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/__init__.py rename to plotly/validators/contour/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_color.py b/plotly/validators/contour/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_color.py rename to plotly/validators/contour/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_family.py b/plotly/validators/contour/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_family.py rename to plotly/validators/contour/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_lineposition.py b/plotly/validators/contour/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_lineposition.py rename to plotly/validators/contour/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_shadow.py b/plotly/validators/contour/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_shadow.py rename to plotly/validators/contour/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_size.py b/plotly/validators/contour/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_size.py rename to plotly/validators/contour/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_style.py b/plotly/validators/contour/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_style.py rename to plotly/validators/contour/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_textcase.py b/plotly/validators/contour/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_textcase.py rename to plotly/validators/contour/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_variant.py b/plotly/validators/contour/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_variant.py rename to plotly/validators/contour/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/contour/colorbar/title/font/_weight.py b/plotly/validators/contour/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/colorbar/title/font/_weight.py rename to plotly/validators/contour/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/__init__.py b/plotly/validators/contour/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/__init__.py rename to plotly/validators/contour/contours/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_coloring.py b/plotly/validators/contour/contours/_coloring.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_coloring.py rename to plotly/validators/contour/contours/_coloring.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_end.py b/plotly/validators/contour/contours/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_end.py rename to plotly/validators/contour/contours/_end.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_labelfont.py b/plotly/validators/contour/contours/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_labelfont.py rename to plotly/validators/contour/contours/_labelfont.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_labelformat.py b/plotly/validators/contour/contours/_labelformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_labelformat.py rename to plotly/validators/contour/contours/_labelformat.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_operation.py b/plotly/validators/contour/contours/_operation.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_operation.py rename to plotly/validators/contour/contours/_operation.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_showlabels.py b/plotly/validators/contour/contours/_showlabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_showlabels.py rename to plotly/validators/contour/contours/_showlabels.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_showlines.py b/plotly/validators/contour/contours/_showlines.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_showlines.py rename to plotly/validators/contour/contours/_showlines.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_size.py b/plotly/validators/contour/contours/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_size.py rename to plotly/validators/contour/contours/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_start.py b/plotly/validators/contour/contours/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_start.py rename to plotly/validators/contour/contours/_start.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_type.py b/plotly/validators/contour/contours/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_type.py rename to plotly/validators/contour/contours/_type.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/_value.py b/plotly/validators/contour/contours/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/_value.py rename to plotly/validators/contour/contours/_value.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/__init__.py b/plotly/validators/contour/contours/labelfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/__init__.py rename to plotly/validators/contour/contours/labelfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_color.py b/plotly/validators/contour/contours/labelfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_color.py rename to plotly/validators/contour/contours/labelfont/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_family.py b/plotly/validators/contour/contours/labelfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_family.py rename to plotly/validators/contour/contours/labelfont/_family.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_lineposition.py b/plotly/validators/contour/contours/labelfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_lineposition.py rename to plotly/validators/contour/contours/labelfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_shadow.py b/plotly/validators/contour/contours/labelfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_shadow.py rename to plotly/validators/contour/contours/labelfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_size.py b/plotly/validators/contour/contours/labelfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_size.py rename to plotly/validators/contour/contours/labelfont/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_style.py b/plotly/validators/contour/contours/labelfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_style.py rename to plotly/validators/contour/contours/labelfont/_style.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_textcase.py b/plotly/validators/contour/contours/labelfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_textcase.py rename to plotly/validators/contour/contours/labelfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_variant.py b/plotly/validators/contour/contours/labelfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_variant.py rename to plotly/validators/contour/contours/labelfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/contour/contours/labelfont/_weight.py b/plotly/validators/contour/contours/labelfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/contours/labelfont/_weight.py rename to plotly/validators/contour/contours/labelfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/__init__.py b/plotly/validators/contour/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/__init__.py rename to plotly/validators/contour/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_align.py b/plotly/validators/contour/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_align.py rename to plotly/validators/contour/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_alignsrc.py b/plotly/validators/contour/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_alignsrc.py rename to plotly/validators/contour/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_bgcolor.py b/plotly/validators/contour/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_bgcolor.py rename to plotly/validators/contour/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_bgcolorsrc.py b/plotly/validators/contour/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_bgcolorsrc.py rename to plotly/validators/contour/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_bordercolor.py b/plotly/validators/contour/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_bordercolor.py rename to plotly/validators/contour/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_bordercolorsrc.py b/plotly/validators/contour/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_bordercolorsrc.py rename to plotly/validators/contour/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_font.py b/plotly/validators/contour/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_font.py rename to plotly/validators/contour/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_namelength.py b/plotly/validators/contour/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_namelength.py rename to plotly/validators/contour/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/_namelengthsrc.py b/plotly/validators/contour/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/_namelengthsrc.py rename to plotly/validators/contour/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/__init__.py b/plotly/validators/contour/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/__init__.py rename to plotly/validators/contour/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_color.py b/plotly/validators/contour/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_color.py rename to plotly/validators/contour/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_colorsrc.py b/plotly/validators/contour/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_colorsrc.py rename to plotly/validators/contour/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_family.py b/plotly/validators/contour/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_family.py rename to plotly/validators/contour/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_familysrc.py b/plotly/validators/contour/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_familysrc.py rename to plotly/validators/contour/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_lineposition.py b/plotly/validators/contour/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_lineposition.py rename to plotly/validators/contour/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_linepositionsrc.py b/plotly/validators/contour/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/contour/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_shadow.py b/plotly/validators/contour/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_shadow.py rename to plotly/validators/contour/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_shadowsrc.py b/plotly/validators/contour/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_shadowsrc.py rename to plotly/validators/contour/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_size.py b/plotly/validators/contour/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_size.py rename to plotly/validators/contour/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_sizesrc.py b/plotly/validators/contour/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_sizesrc.py rename to plotly/validators/contour/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_style.py b/plotly/validators/contour/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_style.py rename to plotly/validators/contour/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_stylesrc.py b/plotly/validators/contour/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_stylesrc.py rename to plotly/validators/contour/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_textcase.py b/plotly/validators/contour/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_textcase.py rename to plotly/validators/contour/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_textcasesrc.py b/plotly/validators/contour/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_textcasesrc.py rename to plotly/validators/contour/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_variant.py b/plotly/validators/contour/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_variant.py rename to plotly/validators/contour/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_variantsrc.py b/plotly/validators/contour/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_variantsrc.py rename to plotly/validators/contour/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_weight.py b/plotly/validators/contour/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_weight.py rename to plotly/validators/contour/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/contour/hoverlabel/font/_weightsrc.py b/plotly/validators/contour/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/hoverlabel/font/_weightsrc.py rename to plotly/validators/contour/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/__init__.py b/plotly/validators/contour/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/__init__.py rename to plotly/validators/contour/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/_font.py b/plotly/validators/contour/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/_font.py rename to plotly/validators/contour/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/_text.py b/plotly/validators/contour/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/_text.py rename to plotly/validators/contour/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/__init__.py b/plotly/validators/contour/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/__init__.py rename to plotly/validators/contour/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_color.py b/plotly/validators/contour/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_color.py rename to plotly/validators/contour/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_family.py b/plotly/validators/contour/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_family.py rename to plotly/validators/contour/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_lineposition.py b/plotly/validators/contour/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_lineposition.py rename to plotly/validators/contour/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_shadow.py b/plotly/validators/contour/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_shadow.py rename to plotly/validators/contour/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_size.py b/plotly/validators/contour/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_size.py rename to plotly/validators/contour/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_style.py b/plotly/validators/contour/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_style.py rename to plotly/validators/contour/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_textcase.py b/plotly/validators/contour/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_textcase.py rename to plotly/validators/contour/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_variant.py b/plotly/validators/contour/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_variant.py rename to plotly/validators/contour/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_weight.py b/plotly/validators/contour/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/legendgrouptitle/font/_weight.py rename to plotly/validators/contour/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/contour/line/__init__.py b/plotly/validators/contour/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/line/__init__.py rename to plotly/validators/contour/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/line/_color.py b/plotly/validators/contour/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/line/_color.py rename to plotly/validators/contour/line/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/line/_dash.py b/plotly/validators/contour/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/line/_dash.py rename to plotly/validators/contour/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/contour/line/_smoothing.py b/plotly/validators/contour/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/line/_smoothing.py rename to plotly/validators/contour/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/contour/line/_width.py b/plotly/validators/contour/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/line/_width.py rename to plotly/validators/contour/line/_width.py diff --git a/packages/python/plotly/plotly/validators/contour/stream/__init__.py b/plotly/validators/contour/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/stream/__init__.py rename to plotly/validators/contour/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/stream/_maxpoints.py b/plotly/validators/contour/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/stream/_maxpoints.py rename to plotly/validators/contour/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/contour/stream/_token.py b/plotly/validators/contour/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/stream/_token.py rename to plotly/validators/contour/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/__init__.py b/plotly/validators/contour/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/__init__.py rename to plotly/validators/contour/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_color.py b/plotly/validators/contour/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_color.py rename to plotly/validators/contour/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_family.py b/plotly/validators/contour/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_family.py rename to plotly/validators/contour/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_lineposition.py b/plotly/validators/contour/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_lineposition.py rename to plotly/validators/contour/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_shadow.py b/plotly/validators/contour/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_shadow.py rename to plotly/validators/contour/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_size.py b/plotly/validators/contour/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_size.py rename to plotly/validators/contour/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_style.py b/plotly/validators/contour/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_style.py rename to plotly/validators/contour/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_textcase.py b/plotly/validators/contour/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_textcase.py rename to plotly/validators/contour/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_variant.py b/plotly/validators/contour/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_variant.py rename to plotly/validators/contour/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/contour/textfont/_weight.py b/plotly/validators/contour/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contour/textfont/_weight.py rename to plotly/validators/contour/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/__init__.py b/plotly/validators/contourcarpet/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/__init__.py rename to plotly/validators/contourcarpet/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_a.py b/plotly/validators/contourcarpet/_a.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_a.py rename to plotly/validators/contourcarpet/_a.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_a0.py b/plotly/validators/contourcarpet/_a0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_a0.py rename to plotly/validators/contourcarpet/_a0.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_asrc.py b/plotly/validators/contourcarpet/_asrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_asrc.py rename to plotly/validators/contourcarpet/_asrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_atype.py b/plotly/validators/contourcarpet/_atype.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_atype.py rename to plotly/validators/contourcarpet/_atype.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_autocolorscale.py b/plotly/validators/contourcarpet/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_autocolorscale.py rename to plotly/validators/contourcarpet/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_autocontour.py b/plotly/validators/contourcarpet/_autocontour.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_autocontour.py rename to plotly/validators/contourcarpet/_autocontour.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_b.py b/plotly/validators/contourcarpet/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_b.py rename to plotly/validators/contourcarpet/_b.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_b0.py b/plotly/validators/contourcarpet/_b0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_b0.py rename to plotly/validators/contourcarpet/_b0.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_bsrc.py b/plotly/validators/contourcarpet/_bsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_bsrc.py rename to plotly/validators/contourcarpet/_bsrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_btype.py b/plotly/validators/contourcarpet/_btype.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_btype.py rename to plotly/validators/contourcarpet/_btype.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_carpet.py b/plotly/validators/contourcarpet/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_carpet.py rename to plotly/validators/contourcarpet/_carpet.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_coloraxis.py b/plotly/validators/contourcarpet/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_coloraxis.py rename to plotly/validators/contourcarpet/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_colorbar.py b/plotly/validators/contourcarpet/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_colorbar.py rename to plotly/validators/contourcarpet/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_colorscale.py b/plotly/validators/contourcarpet/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_colorscale.py rename to plotly/validators/contourcarpet/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_contours.py b/plotly/validators/contourcarpet/_contours.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_contours.py rename to plotly/validators/contourcarpet/_contours.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_customdata.py b/plotly/validators/contourcarpet/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_customdata.py rename to plotly/validators/contourcarpet/_customdata.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_customdatasrc.py b/plotly/validators/contourcarpet/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_customdatasrc.py rename to plotly/validators/contourcarpet/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_da.py b/plotly/validators/contourcarpet/_da.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_da.py rename to plotly/validators/contourcarpet/_da.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_db.py b/plotly/validators/contourcarpet/_db.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_db.py rename to plotly/validators/contourcarpet/_db.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_fillcolor.py b/plotly/validators/contourcarpet/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_fillcolor.py rename to plotly/validators/contourcarpet/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_hovertext.py b/plotly/validators/contourcarpet/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_hovertext.py rename to plotly/validators/contourcarpet/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_hovertextsrc.py b/plotly/validators/contourcarpet/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_hovertextsrc.py rename to plotly/validators/contourcarpet/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_ids.py b/plotly/validators/contourcarpet/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_ids.py rename to plotly/validators/contourcarpet/_ids.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_idssrc.py b/plotly/validators/contourcarpet/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_idssrc.py rename to plotly/validators/contourcarpet/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_legend.py b/plotly/validators/contourcarpet/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_legend.py rename to plotly/validators/contourcarpet/_legend.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_legendgroup.py b/plotly/validators/contourcarpet/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_legendgroup.py rename to plotly/validators/contourcarpet/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_legendgrouptitle.py b/plotly/validators/contourcarpet/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_legendgrouptitle.py rename to plotly/validators/contourcarpet/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_legendrank.py b/plotly/validators/contourcarpet/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_legendrank.py rename to plotly/validators/contourcarpet/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_legendwidth.py b/plotly/validators/contourcarpet/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_legendwidth.py rename to plotly/validators/contourcarpet/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_line.py b/plotly/validators/contourcarpet/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_line.py rename to plotly/validators/contourcarpet/_line.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_meta.py b/plotly/validators/contourcarpet/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_meta.py rename to plotly/validators/contourcarpet/_meta.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_metasrc.py b/plotly/validators/contourcarpet/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_metasrc.py rename to plotly/validators/contourcarpet/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_name.py b/plotly/validators/contourcarpet/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_name.py rename to plotly/validators/contourcarpet/_name.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_ncontours.py b/plotly/validators/contourcarpet/_ncontours.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_ncontours.py rename to plotly/validators/contourcarpet/_ncontours.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_opacity.py b/plotly/validators/contourcarpet/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_opacity.py rename to plotly/validators/contourcarpet/_opacity.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_reversescale.py b/plotly/validators/contourcarpet/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_reversescale.py rename to plotly/validators/contourcarpet/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_showlegend.py b/plotly/validators/contourcarpet/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_showlegend.py rename to plotly/validators/contourcarpet/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_showscale.py b/plotly/validators/contourcarpet/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_showscale.py rename to plotly/validators/contourcarpet/_showscale.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_stream.py b/plotly/validators/contourcarpet/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_stream.py rename to plotly/validators/contourcarpet/_stream.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_text.py b/plotly/validators/contourcarpet/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_text.py rename to plotly/validators/contourcarpet/_text.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_textsrc.py b/plotly/validators/contourcarpet/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_textsrc.py rename to plotly/validators/contourcarpet/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_transpose.py b/plotly/validators/contourcarpet/_transpose.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_transpose.py rename to plotly/validators/contourcarpet/_transpose.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_uid.py b/plotly/validators/contourcarpet/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_uid.py rename to plotly/validators/contourcarpet/_uid.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_uirevision.py b/plotly/validators/contourcarpet/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_uirevision.py rename to plotly/validators/contourcarpet/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_visible.py b/plotly/validators/contourcarpet/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_visible.py rename to plotly/validators/contourcarpet/_visible.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_xaxis.py b/plotly/validators/contourcarpet/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_xaxis.py rename to plotly/validators/contourcarpet/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_yaxis.py b/plotly/validators/contourcarpet/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_yaxis.py rename to plotly/validators/contourcarpet/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_z.py b/plotly/validators/contourcarpet/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_z.py rename to plotly/validators/contourcarpet/_z.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_zauto.py b/plotly/validators/contourcarpet/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_zauto.py rename to plotly/validators/contourcarpet/_zauto.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_zmax.py b/plotly/validators/contourcarpet/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_zmax.py rename to plotly/validators/contourcarpet/_zmax.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_zmid.py b/plotly/validators/contourcarpet/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_zmid.py rename to plotly/validators/contourcarpet/_zmid.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_zmin.py b/plotly/validators/contourcarpet/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_zmin.py rename to plotly/validators/contourcarpet/_zmin.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_zorder.py b/plotly/validators/contourcarpet/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_zorder.py rename to plotly/validators/contourcarpet/_zorder.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/_zsrc.py b/plotly/validators/contourcarpet/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/_zsrc.py rename to plotly/validators/contourcarpet/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/__init__.py b/plotly/validators/contourcarpet/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/__init__.py rename to plotly/validators/contourcarpet/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_bgcolor.py b/plotly/validators/contourcarpet/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_bgcolor.py rename to plotly/validators/contourcarpet/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_bordercolor.py b/plotly/validators/contourcarpet/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_bordercolor.py rename to plotly/validators/contourcarpet/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_borderwidth.py b/plotly/validators/contourcarpet/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_borderwidth.py rename to plotly/validators/contourcarpet/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_dtick.py b/plotly/validators/contourcarpet/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_dtick.py rename to plotly/validators/contourcarpet/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_exponentformat.py b/plotly/validators/contourcarpet/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_exponentformat.py rename to plotly/validators/contourcarpet/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_labelalias.py b/plotly/validators/contourcarpet/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_labelalias.py rename to plotly/validators/contourcarpet/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_len.py b/plotly/validators/contourcarpet/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_len.py rename to plotly/validators/contourcarpet/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_lenmode.py b/plotly/validators/contourcarpet/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_lenmode.py rename to plotly/validators/contourcarpet/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_minexponent.py b/plotly/validators/contourcarpet/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_minexponent.py rename to plotly/validators/contourcarpet/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_nticks.py b/plotly/validators/contourcarpet/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_nticks.py rename to plotly/validators/contourcarpet/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_orientation.py b/plotly/validators/contourcarpet/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_orientation.py rename to plotly/validators/contourcarpet/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_outlinecolor.py b/plotly/validators/contourcarpet/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_outlinecolor.py rename to plotly/validators/contourcarpet/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_outlinewidth.py b/plotly/validators/contourcarpet/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_outlinewidth.py rename to plotly/validators/contourcarpet/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_separatethousands.py b/plotly/validators/contourcarpet/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_separatethousands.py rename to plotly/validators/contourcarpet/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showexponent.py b/plotly/validators/contourcarpet/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showexponent.py rename to plotly/validators/contourcarpet/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showticklabels.py b/plotly/validators/contourcarpet/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showticklabels.py rename to plotly/validators/contourcarpet/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showtickprefix.py b/plotly/validators/contourcarpet/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showtickprefix.py rename to plotly/validators/contourcarpet/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showticksuffix.py b/plotly/validators/contourcarpet/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_showticksuffix.py rename to plotly/validators/contourcarpet/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_thickness.py b/plotly/validators/contourcarpet/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_thickness.py rename to plotly/validators/contourcarpet/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_thicknessmode.py b/plotly/validators/contourcarpet/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_thicknessmode.py rename to plotly/validators/contourcarpet/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tick0.py b/plotly/validators/contourcarpet/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tick0.py rename to plotly/validators/contourcarpet/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickangle.py b/plotly/validators/contourcarpet/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickangle.py rename to plotly/validators/contourcarpet/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickcolor.py b/plotly/validators/contourcarpet/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickcolor.py rename to plotly/validators/contourcarpet/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickfont.py b/plotly/validators/contourcarpet/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickfont.py rename to plotly/validators/contourcarpet/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickformat.py b/plotly/validators/contourcarpet/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickformat.py rename to plotly/validators/contourcarpet/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py b/plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py rename to plotly/validators/contourcarpet/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickformatstops.py b/plotly/validators/contourcarpet/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickformatstops.py rename to plotly/validators/contourcarpet/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklabeloverflow.py b/plotly/validators/contourcarpet/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklabeloverflow.py rename to plotly/validators/contourcarpet/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklabelposition.py b/plotly/validators/contourcarpet/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklabelposition.py rename to plotly/validators/contourcarpet/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklabelstep.py b/plotly/validators/contourcarpet/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklabelstep.py rename to plotly/validators/contourcarpet/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklen.py b/plotly/validators/contourcarpet/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticklen.py rename to plotly/validators/contourcarpet/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickmode.py b/plotly/validators/contourcarpet/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickmode.py rename to plotly/validators/contourcarpet/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickprefix.py b/plotly/validators/contourcarpet/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickprefix.py rename to plotly/validators/contourcarpet/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticks.py b/plotly/validators/contourcarpet/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticks.py rename to plotly/validators/contourcarpet/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticksuffix.py b/plotly/validators/contourcarpet/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticksuffix.py rename to plotly/validators/contourcarpet/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticktext.py b/plotly/validators/contourcarpet/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticktext.py rename to plotly/validators/contourcarpet/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticktextsrc.py b/plotly/validators/contourcarpet/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ticktextsrc.py rename to plotly/validators/contourcarpet/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickvals.py b/plotly/validators/contourcarpet/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickvals.py rename to plotly/validators/contourcarpet/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickvalssrc.py b/plotly/validators/contourcarpet/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickvalssrc.py rename to plotly/validators/contourcarpet/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickwidth.py b/plotly/validators/contourcarpet/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_tickwidth.py rename to plotly/validators/contourcarpet/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_title.py b/plotly/validators/contourcarpet/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_title.py rename to plotly/validators/contourcarpet/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_x.py b/plotly/validators/contourcarpet/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_x.py rename to plotly/validators/contourcarpet/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_xanchor.py b/plotly/validators/contourcarpet/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_xanchor.py rename to plotly/validators/contourcarpet/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_xpad.py b/plotly/validators/contourcarpet/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_xpad.py rename to plotly/validators/contourcarpet/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_xref.py b/plotly/validators/contourcarpet/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_xref.py rename to plotly/validators/contourcarpet/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_y.py b/plotly/validators/contourcarpet/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_y.py rename to plotly/validators/contourcarpet/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_yanchor.py b/plotly/validators/contourcarpet/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_yanchor.py rename to plotly/validators/contourcarpet/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ypad.py b/plotly/validators/contourcarpet/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_ypad.py rename to plotly/validators/contourcarpet/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/_yref.py b/plotly/validators/contourcarpet/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/_yref.py rename to plotly/validators/contourcarpet/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/__init__.py b/plotly/validators/contourcarpet/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/__init__.py rename to plotly/validators/contourcarpet/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_color.py b/plotly/validators/contourcarpet/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_color.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_family.py b/plotly/validators/contourcarpet/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_family.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_lineposition.py b/plotly/validators/contourcarpet/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_lineposition.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_shadow.py b/plotly/validators/contourcarpet/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_shadow.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_size.py b/plotly/validators/contourcarpet/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_size.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_style.py b/plotly/validators/contourcarpet/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_style.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_textcase.py b/plotly/validators/contourcarpet/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_textcase.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_variant.py b/plotly/validators/contourcarpet/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_variant.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_weight.py b/plotly/validators/contourcarpet/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickfont/_weight.py rename to plotly/validators/contourcarpet/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/__init__.py b/plotly/validators/contourcarpet/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/__init__.py rename to plotly/validators/contourcarpet/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/contourcarpet/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/contourcarpet/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_enabled.py b/plotly/validators/contourcarpet/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_enabled.py rename to plotly/validators/contourcarpet/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_name.py b/plotly/validators/contourcarpet/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_name.py rename to plotly/validators/contourcarpet/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/contourcarpet/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/contourcarpet/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_value.py b/plotly/validators/contourcarpet/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/tickformatstop/_value.py rename to plotly/validators/contourcarpet/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/__init__.py b/plotly/validators/contourcarpet/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/__init__.py rename to plotly/validators/contourcarpet/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/_font.py b/plotly/validators/contourcarpet/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/_font.py rename to plotly/validators/contourcarpet/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/_side.py b/plotly/validators/contourcarpet/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/_side.py rename to plotly/validators/contourcarpet/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/_text.py b/plotly/validators/contourcarpet/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/_text.py rename to plotly/validators/contourcarpet/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/__init__.py b/plotly/validators/contourcarpet/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/__init__.py rename to plotly/validators/contourcarpet/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_color.py b/plotly/validators/contourcarpet/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_color.py rename to plotly/validators/contourcarpet/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_family.py b/plotly/validators/contourcarpet/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_family.py rename to plotly/validators/contourcarpet/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_lineposition.py b/plotly/validators/contourcarpet/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_lineposition.py rename to plotly/validators/contourcarpet/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_shadow.py b/plotly/validators/contourcarpet/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_shadow.py rename to plotly/validators/contourcarpet/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_size.py b/plotly/validators/contourcarpet/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_size.py rename to plotly/validators/contourcarpet/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_style.py b/plotly/validators/contourcarpet/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_style.py rename to plotly/validators/contourcarpet/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_textcase.py b/plotly/validators/contourcarpet/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_textcase.py rename to plotly/validators/contourcarpet/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_variant.py b/plotly/validators/contourcarpet/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_variant.py rename to plotly/validators/contourcarpet/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_weight.py b/plotly/validators/contourcarpet/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/colorbar/title/font/_weight.py rename to plotly/validators/contourcarpet/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/__init__.py b/plotly/validators/contourcarpet/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/__init__.py rename to plotly/validators/contourcarpet/contours/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_coloring.py b/plotly/validators/contourcarpet/contours/_coloring.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_coloring.py rename to plotly/validators/contourcarpet/contours/_coloring.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_end.py b/plotly/validators/contourcarpet/contours/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_end.py rename to plotly/validators/contourcarpet/contours/_end.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_labelfont.py b/plotly/validators/contourcarpet/contours/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_labelfont.py rename to plotly/validators/contourcarpet/contours/_labelfont.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_labelformat.py b/plotly/validators/contourcarpet/contours/_labelformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_labelformat.py rename to plotly/validators/contourcarpet/contours/_labelformat.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_operation.py b/plotly/validators/contourcarpet/contours/_operation.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_operation.py rename to plotly/validators/contourcarpet/contours/_operation.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_showlabels.py b/plotly/validators/contourcarpet/contours/_showlabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_showlabels.py rename to plotly/validators/contourcarpet/contours/_showlabels.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_showlines.py b/plotly/validators/contourcarpet/contours/_showlines.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_showlines.py rename to plotly/validators/contourcarpet/contours/_showlines.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_size.py b/plotly/validators/contourcarpet/contours/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_size.py rename to plotly/validators/contourcarpet/contours/_size.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_start.py b/plotly/validators/contourcarpet/contours/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_start.py rename to plotly/validators/contourcarpet/contours/_start.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_type.py b/plotly/validators/contourcarpet/contours/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_type.py rename to plotly/validators/contourcarpet/contours/_type.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/_value.py b/plotly/validators/contourcarpet/contours/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/_value.py rename to plotly/validators/contourcarpet/contours/_value.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/__init__.py b/plotly/validators/contourcarpet/contours/labelfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/__init__.py rename to plotly/validators/contourcarpet/contours/labelfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_color.py b/plotly/validators/contourcarpet/contours/labelfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_color.py rename to plotly/validators/contourcarpet/contours/labelfont/_color.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_family.py b/plotly/validators/contourcarpet/contours/labelfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_family.py rename to plotly/validators/contourcarpet/contours/labelfont/_family.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_lineposition.py b/plotly/validators/contourcarpet/contours/labelfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_lineposition.py rename to plotly/validators/contourcarpet/contours/labelfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_shadow.py b/plotly/validators/contourcarpet/contours/labelfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_shadow.py rename to plotly/validators/contourcarpet/contours/labelfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_size.py b/plotly/validators/contourcarpet/contours/labelfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_size.py rename to plotly/validators/contourcarpet/contours/labelfont/_size.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_style.py b/plotly/validators/contourcarpet/contours/labelfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_style.py rename to plotly/validators/contourcarpet/contours/labelfont/_style.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_textcase.py b/plotly/validators/contourcarpet/contours/labelfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_textcase.py rename to plotly/validators/contourcarpet/contours/labelfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_variant.py b/plotly/validators/contourcarpet/contours/labelfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_variant.py rename to plotly/validators/contourcarpet/contours/labelfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_weight.py b/plotly/validators/contourcarpet/contours/labelfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/contours/labelfont/_weight.py rename to plotly/validators/contourcarpet/contours/labelfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/__init__.py b/plotly/validators/contourcarpet/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/__init__.py rename to plotly/validators/contourcarpet/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/_font.py b/plotly/validators/contourcarpet/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/_font.py rename to plotly/validators/contourcarpet/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/_text.py b/plotly/validators/contourcarpet/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/_text.py rename to plotly/validators/contourcarpet/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/__init__.py b/plotly/validators/contourcarpet/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/__init__.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_color.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_color.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_family.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_family.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_lineposition.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_lineposition.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_shadow.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_shadow.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_size.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_size.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_style.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_style.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_textcase.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_textcase.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_variant.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_variant.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_weight.py b/plotly/validators/contourcarpet/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/legendgrouptitle/font/_weight.py rename to plotly/validators/contourcarpet/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/line/__init__.py b/plotly/validators/contourcarpet/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/line/__init__.py rename to plotly/validators/contourcarpet/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/line/_color.py b/plotly/validators/contourcarpet/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/line/_color.py rename to plotly/validators/contourcarpet/line/_color.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/line/_dash.py b/plotly/validators/contourcarpet/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/line/_dash.py rename to plotly/validators/contourcarpet/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/line/_smoothing.py b/plotly/validators/contourcarpet/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/line/_smoothing.py rename to plotly/validators/contourcarpet/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/line/_width.py b/plotly/validators/contourcarpet/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/line/_width.py rename to plotly/validators/contourcarpet/line/_width.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/stream/__init__.py b/plotly/validators/contourcarpet/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/stream/__init__.py rename to plotly/validators/contourcarpet/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/stream/_maxpoints.py b/plotly/validators/contourcarpet/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/stream/_maxpoints.py rename to plotly/validators/contourcarpet/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/contourcarpet/stream/_token.py b/plotly/validators/contourcarpet/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/contourcarpet/stream/_token.py rename to plotly/validators/contourcarpet/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/densitymap/__init__.py b/plotly/validators/densitymap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/__init__.py rename to plotly/validators/densitymap/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_autocolorscale.py b/plotly/validators/densitymap/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_autocolorscale.py rename to plotly/validators/densitymap/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_below.py b/plotly/validators/densitymap/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_below.py rename to plotly/validators/densitymap/_below.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_coloraxis.py b/plotly/validators/densitymap/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_coloraxis.py rename to plotly/validators/densitymap/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_colorbar.py b/plotly/validators/densitymap/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_colorbar.py rename to plotly/validators/densitymap/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_colorscale.py b/plotly/validators/densitymap/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_colorscale.py rename to plotly/validators/densitymap/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_customdata.py b/plotly/validators/densitymap/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_customdata.py rename to plotly/validators/densitymap/_customdata.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_customdatasrc.py b/plotly/validators/densitymap/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_customdatasrc.py rename to plotly/validators/densitymap/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hoverinfo.py b/plotly/validators/densitymap/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hoverinfo.py rename to plotly/validators/densitymap/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hoverinfosrc.py b/plotly/validators/densitymap/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hoverinfosrc.py rename to plotly/validators/densitymap/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hoverlabel.py b/plotly/validators/densitymap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hoverlabel.py rename to plotly/validators/densitymap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hovertemplate.py b/plotly/validators/densitymap/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hovertemplate.py rename to plotly/validators/densitymap/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hovertemplatesrc.py b/plotly/validators/densitymap/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hovertemplatesrc.py rename to plotly/validators/densitymap/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hovertext.py b/plotly/validators/densitymap/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hovertext.py rename to plotly/validators/densitymap/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_hovertextsrc.py b/plotly/validators/densitymap/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_hovertextsrc.py rename to plotly/validators/densitymap/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_ids.py b/plotly/validators/densitymap/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_ids.py rename to plotly/validators/densitymap/_ids.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_idssrc.py b/plotly/validators/densitymap/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_idssrc.py rename to plotly/validators/densitymap/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_lat.py b/plotly/validators/densitymap/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_lat.py rename to plotly/validators/densitymap/_lat.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_latsrc.py b/plotly/validators/densitymap/_latsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_latsrc.py rename to plotly/validators/densitymap/_latsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_legend.py b/plotly/validators/densitymap/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_legend.py rename to plotly/validators/densitymap/_legend.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_legendgroup.py b/plotly/validators/densitymap/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_legendgroup.py rename to plotly/validators/densitymap/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_legendgrouptitle.py b/plotly/validators/densitymap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_legendgrouptitle.py rename to plotly/validators/densitymap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_legendrank.py b/plotly/validators/densitymap/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_legendrank.py rename to plotly/validators/densitymap/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_legendwidth.py b/plotly/validators/densitymap/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_legendwidth.py rename to plotly/validators/densitymap/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_lon.py b/plotly/validators/densitymap/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_lon.py rename to plotly/validators/densitymap/_lon.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_lonsrc.py b/plotly/validators/densitymap/_lonsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_lonsrc.py rename to plotly/validators/densitymap/_lonsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_meta.py b/plotly/validators/densitymap/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_meta.py rename to plotly/validators/densitymap/_meta.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_metasrc.py b/plotly/validators/densitymap/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_metasrc.py rename to plotly/validators/densitymap/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_name.py b/plotly/validators/densitymap/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_name.py rename to plotly/validators/densitymap/_name.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_opacity.py b/plotly/validators/densitymap/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_opacity.py rename to plotly/validators/densitymap/_opacity.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_radius.py b/plotly/validators/densitymap/_radius.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_radius.py rename to plotly/validators/densitymap/_radius.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_radiussrc.py b/plotly/validators/densitymap/_radiussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_radiussrc.py rename to plotly/validators/densitymap/_radiussrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_reversescale.py b/plotly/validators/densitymap/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_reversescale.py rename to plotly/validators/densitymap/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_showlegend.py b/plotly/validators/densitymap/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_showlegend.py rename to plotly/validators/densitymap/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_showscale.py b/plotly/validators/densitymap/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_showscale.py rename to plotly/validators/densitymap/_showscale.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_stream.py b/plotly/validators/densitymap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_stream.py rename to plotly/validators/densitymap/_stream.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_subplot.py b/plotly/validators/densitymap/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_subplot.py rename to plotly/validators/densitymap/_subplot.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_text.py b/plotly/validators/densitymap/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_text.py rename to plotly/validators/densitymap/_text.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_textsrc.py b/plotly/validators/densitymap/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_textsrc.py rename to plotly/validators/densitymap/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_uid.py b/plotly/validators/densitymap/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_uid.py rename to plotly/validators/densitymap/_uid.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_uirevision.py b/plotly/validators/densitymap/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_uirevision.py rename to plotly/validators/densitymap/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_visible.py b/plotly/validators/densitymap/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_visible.py rename to plotly/validators/densitymap/_visible.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_z.py b/plotly/validators/densitymap/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_z.py rename to plotly/validators/densitymap/_z.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_zauto.py b/plotly/validators/densitymap/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_zauto.py rename to plotly/validators/densitymap/_zauto.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_zmax.py b/plotly/validators/densitymap/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_zmax.py rename to plotly/validators/densitymap/_zmax.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_zmid.py b/plotly/validators/densitymap/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_zmid.py rename to plotly/validators/densitymap/_zmid.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_zmin.py b/plotly/validators/densitymap/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_zmin.py rename to plotly/validators/densitymap/_zmin.py diff --git a/packages/python/plotly/plotly/validators/densitymap/_zsrc.py b/plotly/validators/densitymap/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/_zsrc.py rename to plotly/validators/densitymap/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/__init__.py b/plotly/validators/densitymap/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/__init__.py rename to plotly/validators/densitymap/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_bgcolor.py b/plotly/validators/densitymap/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_bgcolor.py rename to plotly/validators/densitymap/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_bordercolor.py b/plotly/validators/densitymap/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_bordercolor.py rename to plotly/validators/densitymap/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_borderwidth.py b/plotly/validators/densitymap/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_borderwidth.py rename to plotly/validators/densitymap/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_dtick.py b/plotly/validators/densitymap/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_dtick.py rename to plotly/validators/densitymap/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_exponentformat.py b/plotly/validators/densitymap/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_exponentformat.py rename to plotly/validators/densitymap/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_labelalias.py b/plotly/validators/densitymap/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_labelalias.py rename to plotly/validators/densitymap/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_len.py b/plotly/validators/densitymap/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_len.py rename to plotly/validators/densitymap/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_lenmode.py b/plotly/validators/densitymap/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_lenmode.py rename to plotly/validators/densitymap/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_minexponent.py b/plotly/validators/densitymap/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_minexponent.py rename to plotly/validators/densitymap/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_nticks.py b/plotly/validators/densitymap/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_nticks.py rename to plotly/validators/densitymap/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_orientation.py b/plotly/validators/densitymap/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_orientation.py rename to plotly/validators/densitymap/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_outlinecolor.py b/plotly/validators/densitymap/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_outlinecolor.py rename to plotly/validators/densitymap/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_outlinewidth.py b/plotly/validators/densitymap/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_outlinewidth.py rename to plotly/validators/densitymap/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_separatethousands.py b/plotly/validators/densitymap/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_separatethousands.py rename to plotly/validators/densitymap/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_showexponent.py b/plotly/validators/densitymap/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_showexponent.py rename to plotly/validators/densitymap/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_showticklabels.py b/plotly/validators/densitymap/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_showticklabels.py rename to plotly/validators/densitymap/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_showtickprefix.py b/plotly/validators/densitymap/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_showtickprefix.py rename to plotly/validators/densitymap/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_showticksuffix.py b/plotly/validators/densitymap/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_showticksuffix.py rename to plotly/validators/densitymap/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_thickness.py b/plotly/validators/densitymap/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_thickness.py rename to plotly/validators/densitymap/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_thicknessmode.py b/plotly/validators/densitymap/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_thicknessmode.py rename to plotly/validators/densitymap/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tick0.py b/plotly/validators/densitymap/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tick0.py rename to plotly/validators/densitymap/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickangle.py b/plotly/validators/densitymap/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickangle.py rename to plotly/validators/densitymap/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickcolor.py b/plotly/validators/densitymap/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickcolor.py rename to plotly/validators/densitymap/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickfont.py b/plotly/validators/densitymap/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickfont.py rename to plotly/validators/densitymap/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickformat.py b/plotly/validators/densitymap/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickformat.py rename to plotly/validators/densitymap/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickformatstopdefaults.py b/plotly/validators/densitymap/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickformatstopdefaults.py rename to plotly/validators/densitymap/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickformatstops.py b/plotly/validators/densitymap/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickformatstops.py rename to plotly/validators/densitymap/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklabeloverflow.py b/plotly/validators/densitymap/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklabeloverflow.py rename to plotly/validators/densitymap/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklabelposition.py b/plotly/validators/densitymap/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklabelposition.py rename to plotly/validators/densitymap/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklabelstep.py b/plotly/validators/densitymap/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklabelstep.py rename to plotly/validators/densitymap/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklen.py b/plotly/validators/densitymap/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticklen.py rename to plotly/validators/densitymap/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickmode.py b/plotly/validators/densitymap/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickmode.py rename to plotly/validators/densitymap/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickprefix.py b/plotly/validators/densitymap/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickprefix.py rename to plotly/validators/densitymap/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticks.py b/plotly/validators/densitymap/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticks.py rename to plotly/validators/densitymap/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticksuffix.py b/plotly/validators/densitymap/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticksuffix.py rename to plotly/validators/densitymap/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticktext.py b/plotly/validators/densitymap/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticktext.py rename to plotly/validators/densitymap/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ticktextsrc.py b/plotly/validators/densitymap/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ticktextsrc.py rename to plotly/validators/densitymap/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickvals.py b/plotly/validators/densitymap/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickvals.py rename to plotly/validators/densitymap/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickvalssrc.py b/plotly/validators/densitymap/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickvalssrc.py rename to plotly/validators/densitymap/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_tickwidth.py b/plotly/validators/densitymap/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_tickwidth.py rename to plotly/validators/densitymap/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_title.py b/plotly/validators/densitymap/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_title.py rename to plotly/validators/densitymap/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_x.py b/plotly/validators/densitymap/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_x.py rename to plotly/validators/densitymap/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_xanchor.py b/plotly/validators/densitymap/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_xanchor.py rename to plotly/validators/densitymap/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_xpad.py b/plotly/validators/densitymap/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_xpad.py rename to plotly/validators/densitymap/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_xref.py b/plotly/validators/densitymap/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_xref.py rename to plotly/validators/densitymap/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_y.py b/plotly/validators/densitymap/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_y.py rename to plotly/validators/densitymap/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_yanchor.py b/plotly/validators/densitymap/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_yanchor.py rename to plotly/validators/densitymap/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_ypad.py b/plotly/validators/densitymap/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_ypad.py rename to plotly/validators/densitymap/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/_yref.py b/plotly/validators/densitymap/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/_yref.py rename to plotly/validators/densitymap/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/__init__.py b/plotly/validators/densitymap/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/__init__.py rename to plotly/validators/densitymap/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_color.py b/plotly/validators/densitymap/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_color.py rename to plotly/validators/densitymap/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_family.py b/plotly/validators/densitymap/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_family.py rename to plotly/validators/densitymap/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_lineposition.py b/plotly/validators/densitymap/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_lineposition.py rename to plotly/validators/densitymap/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_shadow.py b/plotly/validators/densitymap/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_shadow.py rename to plotly/validators/densitymap/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_size.py b/plotly/validators/densitymap/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_size.py rename to plotly/validators/densitymap/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_style.py b/plotly/validators/densitymap/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_style.py rename to plotly/validators/densitymap/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_textcase.py b/plotly/validators/densitymap/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_textcase.py rename to plotly/validators/densitymap/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_variant.py b/plotly/validators/densitymap/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_variant.py rename to plotly/validators/densitymap/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_weight.py b/plotly/validators/densitymap/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickfont/_weight.py rename to plotly/validators/densitymap/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/__init__.py b/plotly/validators/densitymap/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/__init__.py rename to plotly/validators/densitymap/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/densitymap/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/densitymap/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_enabled.py b/plotly/validators/densitymap/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_enabled.py rename to plotly/validators/densitymap/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_name.py b/plotly/validators/densitymap/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_name.py rename to plotly/validators/densitymap/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/densitymap/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/densitymap/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_value.py b/plotly/validators/densitymap/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/tickformatstop/_value.py rename to plotly/validators/densitymap/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/__init__.py b/plotly/validators/densitymap/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/__init__.py rename to plotly/validators/densitymap/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/_font.py b/plotly/validators/densitymap/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/_font.py rename to plotly/validators/densitymap/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/_side.py b/plotly/validators/densitymap/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/_side.py rename to plotly/validators/densitymap/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/_text.py b/plotly/validators/densitymap/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/_text.py rename to plotly/validators/densitymap/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/__init__.py b/plotly/validators/densitymap/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/__init__.py rename to plotly/validators/densitymap/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_color.py b/plotly/validators/densitymap/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_color.py rename to plotly/validators/densitymap/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_family.py b/plotly/validators/densitymap/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_family.py rename to plotly/validators/densitymap/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_lineposition.py b/plotly/validators/densitymap/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_lineposition.py rename to plotly/validators/densitymap/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_shadow.py b/plotly/validators/densitymap/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_shadow.py rename to plotly/validators/densitymap/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_size.py b/plotly/validators/densitymap/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_size.py rename to plotly/validators/densitymap/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_style.py b/plotly/validators/densitymap/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_style.py rename to plotly/validators/densitymap/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_textcase.py b/plotly/validators/densitymap/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_textcase.py rename to plotly/validators/densitymap/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_variant.py b/plotly/validators/densitymap/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_variant.py rename to plotly/validators/densitymap/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_weight.py b/plotly/validators/densitymap/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/colorbar/title/font/_weight.py rename to plotly/validators/densitymap/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/__init__.py b/plotly/validators/densitymap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/__init__.py rename to plotly/validators/densitymap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_align.py b/plotly/validators/densitymap/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_align.py rename to plotly/validators/densitymap/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_alignsrc.py b/plotly/validators/densitymap/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_alignsrc.py rename to plotly/validators/densitymap/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bgcolor.py b/plotly/validators/densitymap/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bgcolor.py rename to plotly/validators/densitymap/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bgcolorsrc.py b/plotly/validators/densitymap/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bgcolorsrc.py rename to plotly/validators/densitymap/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bordercolor.py b/plotly/validators/densitymap/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bordercolor.py rename to plotly/validators/densitymap/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bordercolorsrc.py b/plotly/validators/densitymap/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_bordercolorsrc.py rename to plotly/validators/densitymap/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_font.py b/plotly/validators/densitymap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_font.py rename to plotly/validators/densitymap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_namelength.py b/plotly/validators/densitymap/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_namelength.py rename to plotly/validators/densitymap/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/_namelengthsrc.py b/plotly/validators/densitymap/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/_namelengthsrc.py rename to plotly/validators/densitymap/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/__init__.py b/plotly/validators/densitymap/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/__init__.py rename to plotly/validators/densitymap/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_color.py b/plotly/validators/densitymap/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_color.py rename to plotly/validators/densitymap/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_colorsrc.py b/plotly/validators/densitymap/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_colorsrc.py rename to plotly/validators/densitymap/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_family.py b/plotly/validators/densitymap/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_family.py rename to plotly/validators/densitymap/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_familysrc.py b/plotly/validators/densitymap/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_familysrc.py rename to plotly/validators/densitymap/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_lineposition.py b/plotly/validators/densitymap/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_lineposition.py rename to plotly/validators/densitymap/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_linepositionsrc.py b/plotly/validators/densitymap/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/densitymap/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_shadow.py b/plotly/validators/densitymap/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_shadow.py rename to plotly/validators/densitymap/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_shadowsrc.py b/plotly/validators/densitymap/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_shadowsrc.py rename to plotly/validators/densitymap/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_size.py b/plotly/validators/densitymap/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_size.py rename to plotly/validators/densitymap/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_sizesrc.py b/plotly/validators/densitymap/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_sizesrc.py rename to plotly/validators/densitymap/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_style.py b/plotly/validators/densitymap/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_style.py rename to plotly/validators/densitymap/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_stylesrc.py b/plotly/validators/densitymap/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_stylesrc.py rename to plotly/validators/densitymap/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_textcase.py b/plotly/validators/densitymap/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_textcase.py rename to plotly/validators/densitymap/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_textcasesrc.py b/plotly/validators/densitymap/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_textcasesrc.py rename to plotly/validators/densitymap/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_variant.py b/plotly/validators/densitymap/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_variant.py rename to plotly/validators/densitymap/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_variantsrc.py b/plotly/validators/densitymap/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_variantsrc.py rename to plotly/validators/densitymap/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_weight.py b/plotly/validators/densitymap/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_weight.py rename to plotly/validators/densitymap/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_weightsrc.py b/plotly/validators/densitymap/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/hoverlabel/font/_weightsrc.py rename to plotly/validators/densitymap/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/__init__.py b/plotly/validators/densitymap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/__init__.py rename to plotly/validators/densitymap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/_font.py b/plotly/validators/densitymap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/_font.py rename to plotly/validators/densitymap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/_text.py b/plotly/validators/densitymap/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/_text.py rename to plotly/validators/densitymap/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/__init__.py b/plotly/validators/densitymap/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/__init__.py rename to plotly/validators/densitymap/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_color.py b/plotly/validators/densitymap/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_color.py rename to plotly/validators/densitymap/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_family.py b/plotly/validators/densitymap/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_family.py rename to plotly/validators/densitymap/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_lineposition.py b/plotly/validators/densitymap/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_lineposition.py rename to plotly/validators/densitymap/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_shadow.py b/plotly/validators/densitymap/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_shadow.py rename to plotly/validators/densitymap/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_size.py b/plotly/validators/densitymap/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_size.py rename to plotly/validators/densitymap/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_style.py b/plotly/validators/densitymap/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_style.py rename to plotly/validators/densitymap/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_textcase.py b/plotly/validators/densitymap/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_textcase.py rename to plotly/validators/densitymap/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_variant.py b/plotly/validators/densitymap/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_variant.py rename to plotly/validators/densitymap/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_weight.py b/plotly/validators/densitymap/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/legendgrouptitle/font/_weight.py rename to plotly/validators/densitymap/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymap/stream/__init__.py b/plotly/validators/densitymap/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/stream/__init__.py rename to plotly/validators/densitymap/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymap/stream/_maxpoints.py b/plotly/validators/densitymap/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/stream/_maxpoints.py rename to plotly/validators/densitymap/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/densitymap/stream/_token.py b/plotly/validators/densitymap/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymap/stream/_token.py rename to plotly/validators/densitymap/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/__init__.py b/plotly/validators/densitymapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/__init__.py rename to plotly/validators/densitymapbox/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_autocolorscale.py b/plotly/validators/densitymapbox/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_autocolorscale.py rename to plotly/validators/densitymapbox/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_below.py b/plotly/validators/densitymapbox/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_below.py rename to plotly/validators/densitymapbox/_below.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_coloraxis.py b/plotly/validators/densitymapbox/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_coloraxis.py rename to plotly/validators/densitymapbox/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_colorbar.py b/plotly/validators/densitymapbox/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_colorbar.py rename to plotly/validators/densitymapbox/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_colorscale.py b/plotly/validators/densitymapbox/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_colorscale.py rename to plotly/validators/densitymapbox/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_customdata.py b/plotly/validators/densitymapbox/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_customdata.py rename to plotly/validators/densitymapbox/_customdata.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_customdatasrc.py b/plotly/validators/densitymapbox/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_customdatasrc.py rename to plotly/validators/densitymapbox/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hoverinfo.py b/plotly/validators/densitymapbox/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hoverinfo.py rename to plotly/validators/densitymapbox/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hoverinfosrc.py b/plotly/validators/densitymapbox/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hoverinfosrc.py rename to plotly/validators/densitymapbox/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hoverlabel.py b/plotly/validators/densitymapbox/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hoverlabel.py rename to plotly/validators/densitymapbox/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hovertemplate.py b/plotly/validators/densitymapbox/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hovertemplate.py rename to plotly/validators/densitymapbox/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hovertemplatesrc.py b/plotly/validators/densitymapbox/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hovertemplatesrc.py rename to plotly/validators/densitymapbox/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hovertext.py b/plotly/validators/densitymapbox/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hovertext.py rename to plotly/validators/densitymapbox/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_hovertextsrc.py b/plotly/validators/densitymapbox/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_hovertextsrc.py rename to plotly/validators/densitymapbox/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_ids.py b/plotly/validators/densitymapbox/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_ids.py rename to plotly/validators/densitymapbox/_ids.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_idssrc.py b/plotly/validators/densitymapbox/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_idssrc.py rename to plotly/validators/densitymapbox/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_lat.py b/plotly/validators/densitymapbox/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_lat.py rename to plotly/validators/densitymapbox/_lat.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_latsrc.py b/plotly/validators/densitymapbox/_latsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_latsrc.py rename to plotly/validators/densitymapbox/_latsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_legend.py b/plotly/validators/densitymapbox/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_legend.py rename to plotly/validators/densitymapbox/_legend.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_legendgroup.py b/plotly/validators/densitymapbox/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_legendgroup.py rename to plotly/validators/densitymapbox/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_legendgrouptitle.py b/plotly/validators/densitymapbox/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_legendgrouptitle.py rename to plotly/validators/densitymapbox/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_legendrank.py b/plotly/validators/densitymapbox/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_legendrank.py rename to plotly/validators/densitymapbox/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_legendwidth.py b/plotly/validators/densitymapbox/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_legendwidth.py rename to plotly/validators/densitymapbox/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_lon.py b/plotly/validators/densitymapbox/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_lon.py rename to plotly/validators/densitymapbox/_lon.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_lonsrc.py b/plotly/validators/densitymapbox/_lonsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_lonsrc.py rename to plotly/validators/densitymapbox/_lonsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_meta.py b/plotly/validators/densitymapbox/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_meta.py rename to plotly/validators/densitymapbox/_meta.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_metasrc.py b/plotly/validators/densitymapbox/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_metasrc.py rename to plotly/validators/densitymapbox/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_name.py b/plotly/validators/densitymapbox/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_name.py rename to plotly/validators/densitymapbox/_name.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_opacity.py b/plotly/validators/densitymapbox/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_opacity.py rename to plotly/validators/densitymapbox/_opacity.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_radius.py b/plotly/validators/densitymapbox/_radius.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_radius.py rename to plotly/validators/densitymapbox/_radius.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_radiussrc.py b/plotly/validators/densitymapbox/_radiussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_radiussrc.py rename to plotly/validators/densitymapbox/_radiussrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_reversescale.py b/plotly/validators/densitymapbox/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_reversescale.py rename to plotly/validators/densitymapbox/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_showlegend.py b/plotly/validators/densitymapbox/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_showlegend.py rename to plotly/validators/densitymapbox/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_showscale.py b/plotly/validators/densitymapbox/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_showscale.py rename to plotly/validators/densitymapbox/_showscale.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_stream.py b/plotly/validators/densitymapbox/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_stream.py rename to plotly/validators/densitymapbox/_stream.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_subplot.py b/plotly/validators/densitymapbox/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_subplot.py rename to plotly/validators/densitymapbox/_subplot.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_text.py b/plotly/validators/densitymapbox/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_text.py rename to plotly/validators/densitymapbox/_text.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_textsrc.py b/plotly/validators/densitymapbox/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_textsrc.py rename to plotly/validators/densitymapbox/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_uid.py b/plotly/validators/densitymapbox/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_uid.py rename to plotly/validators/densitymapbox/_uid.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_uirevision.py b/plotly/validators/densitymapbox/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_uirevision.py rename to plotly/validators/densitymapbox/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_visible.py b/plotly/validators/densitymapbox/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_visible.py rename to plotly/validators/densitymapbox/_visible.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_z.py b/plotly/validators/densitymapbox/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_z.py rename to plotly/validators/densitymapbox/_z.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_zauto.py b/plotly/validators/densitymapbox/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_zauto.py rename to plotly/validators/densitymapbox/_zauto.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_zmax.py b/plotly/validators/densitymapbox/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_zmax.py rename to plotly/validators/densitymapbox/_zmax.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_zmid.py b/plotly/validators/densitymapbox/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_zmid.py rename to plotly/validators/densitymapbox/_zmid.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_zmin.py b/plotly/validators/densitymapbox/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_zmin.py rename to plotly/validators/densitymapbox/_zmin.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/_zsrc.py b/plotly/validators/densitymapbox/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/_zsrc.py rename to plotly/validators/densitymapbox/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/__init__.py b/plotly/validators/densitymapbox/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/__init__.py rename to plotly/validators/densitymapbox/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_bgcolor.py b/plotly/validators/densitymapbox/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_bgcolor.py rename to plotly/validators/densitymapbox/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_bordercolor.py b/plotly/validators/densitymapbox/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_bordercolor.py rename to plotly/validators/densitymapbox/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_borderwidth.py b/plotly/validators/densitymapbox/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_borderwidth.py rename to plotly/validators/densitymapbox/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_dtick.py b/plotly/validators/densitymapbox/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_dtick.py rename to plotly/validators/densitymapbox/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_exponentformat.py b/plotly/validators/densitymapbox/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_exponentformat.py rename to plotly/validators/densitymapbox/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_labelalias.py b/plotly/validators/densitymapbox/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_labelalias.py rename to plotly/validators/densitymapbox/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_len.py b/plotly/validators/densitymapbox/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_len.py rename to plotly/validators/densitymapbox/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_lenmode.py b/plotly/validators/densitymapbox/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_lenmode.py rename to plotly/validators/densitymapbox/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_minexponent.py b/plotly/validators/densitymapbox/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_minexponent.py rename to plotly/validators/densitymapbox/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_nticks.py b/plotly/validators/densitymapbox/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_nticks.py rename to plotly/validators/densitymapbox/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_orientation.py b/plotly/validators/densitymapbox/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_orientation.py rename to plotly/validators/densitymapbox/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_outlinecolor.py b/plotly/validators/densitymapbox/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_outlinecolor.py rename to plotly/validators/densitymapbox/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_outlinewidth.py b/plotly/validators/densitymapbox/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_outlinewidth.py rename to plotly/validators/densitymapbox/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_separatethousands.py b/plotly/validators/densitymapbox/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_separatethousands.py rename to plotly/validators/densitymapbox/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showexponent.py b/plotly/validators/densitymapbox/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showexponent.py rename to plotly/validators/densitymapbox/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showticklabels.py b/plotly/validators/densitymapbox/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showticklabels.py rename to plotly/validators/densitymapbox/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showtickprefix.py b/plotly/validators/densitymapbox/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showtickprefix.py rename to plotly/validators/densitymapbox/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showticksuffix.py b/plotly/validators/densitymapbox/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_showticksuffix.py rename to plotly/validators/densitymapbox/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_thickness.py b/plotly/validators/densitymapbox/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_thickness.py rename to plotly/validators/densitymapbox/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_thicknessmode.py b/plotly/validators/densitymapbox/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_thicknessmode.py rename to plotly/validators/densitymapbox/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tick0.py b/plotly/validators/densitymapbox/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tick0.py rename to plotly/validators/densitymapbox/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickangle.py b/plotly/validators/densitymapbox/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickangle.py rename to plotly/validators/densitymapbox/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickcolor.py b/plotly/validators/densitymapbox/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickcolor.py rename to plotly/validators/densitymapbox/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickfont.py b/plotly/validators/densitymapbox/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickfont.py rename to plotly/validators/densitymapbox/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickformat.py b/plotly/validators/densitymapbox/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickformat.py rename to plotly/validators/densitymapbox/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickformatstopdefaults.py b/plotly/validators/densitymapbox/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickformatstopdefaults.py rename to plotly/validators/densitymapbox/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickformatstops.py b/plotly/validators/densitymapbox/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickformatstops.py rename to plotly/validators/densitymapbox/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklabeloverflow.py b/plotly/validators/densitymapbox/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklabeloverflow.py rename to plotly/validators/densitymapbox/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklabelposition.py b/plotly/validators/densitymapbox/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklabelposition.py rename to plotly/validators/densitymapbox/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklabelstep.py b/plotly/validators/densitymapbox/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklabelstep.py rename to plotly/validators/densitymapbox/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklen.py b/plotly/validators/densitymapbox/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticklen.py rename to plotly/validators/densitymapbox/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickmode.py b/plotly/validators/densitymapbox/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickmode.py rename to plotly/validators/densitymapbox/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickprefix.py b/plotly/validators/densitymapbox/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickprefix.py rename to plotly/validators/densitymapbox/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticks.py b/plotly/validators/densitymapbox/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticks.py rename to plotly/validators/densitymapbox/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticksuffix.py b/plotly/validators/densitymapbox/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticksuffix.py rename to plotly/validators/densitymapbox/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticktext.py b/plotly/validators/densitymapbox/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticktext.py rename to plotly/validators/densitymapbox/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticktextsrc.py b/plotly/validators/densitymapbox/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ticktextsrc.py rename to plotly/validators/densitymapbox/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickvals.py b/plotly/validators/densitymapbox/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickvals.py rename to plotly/validators/densitymapbox/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickvalssrc.py b/plotly/validators/densitymapbox/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickvalssrc.py rename to plotly/validators/densitymapbox/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickwidth.py b/plotly/validators/densitymapbox/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_tickwidth.py rename to plotly/validators/densitymapbox/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_title.py b/plotly/validators/densitymapbox/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_title.py rename to plotly/validators/densitymapbox/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_x.py b/plotly/validators/densitymapbox/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_x.py rename to plotly/validators/densitymapbox/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_xanchor.py b/plotly/validators/densitymapbox/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_xanchor.py rename to plotly/validators/densitymapbox/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_xpad.py b/plotly/validators/densitymapbox/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_xpad.py rename to plotly/validators/densitymapbox/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_xref.py b/plotly/validators/densitymapbox/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_xref.py rename to plotly/validators/densitymapbox/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_y.py b/plotly/validators/densitymapbox/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_y.py rename to plotly/validators/densitymapbox/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_yanchor.py b/plotly/validators/densitymapbox/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_yanchor.py rename to plotly/validators/densitymapbox/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ypad.py b/plotly/validators/densitymapbox/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_ypad.py rename to plotly/validators/densitymapbox/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/_yref.py b/plotly/validators/densitymapbox/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/_yref.py rename to plotly/validators/densitymapbox/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/__init__.py b/plotly/validators/densitymapbox/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/__init__.py rename to plotly/validators/densitymapbox/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_color.py b/plotly/validators/densitymapbox/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_color.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_family.py b/plotly/validators/densitymapbox/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_family.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_lineposition.py b/plotly/validators/densitymapbox/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_lineposition.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_shadow.py b/plotly/validators/densitymapbox/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_shadow.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_size.py b/plotly/validators/densitymapbox/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_size.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_style.py b/plotly/validators/densitymapbox/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_style.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_textcase.py b/plotly/validators/densitymapbox/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_textcase.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_variant.py b/plotly/validators/densitymapbox/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_variant.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_weight.py b/plotly/validators/densitymapbox/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickfont/_weight.py rename to plotly/validators/densitymapbox/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/__init__.py b/plotly/validators/densitymapbox/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/__init__.py rename to plotly/validators/densitymapbox/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/densitymapbox/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/densitymapbox/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_enabled.py b/plotly/validators/densitymapbox/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_enabled.py rename to plotly/validators/densitymapbox/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_name.py b/plotly/validators/densitymapbox/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_name.py rename to plotly/validators/densitymapbox/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/densitymapbox/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/densitymapbox/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_value.py b/plotly/validators/densitymapbox/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/tickformatstop/_value.py rename to plotly/validators/densitymapbox/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/__init__.py b/plotly/validators/densitymapbox/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/__init__.py rename to plotly/validators/densitymapbox/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/_font.py b/plotly/validators/densitymapbox/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/_font.py rename to plotly/validators/densitymapbox/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/_side.py b/plotly/validators/densitymapbox/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/_side.py rename to plotly/validators/densitymapbox/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/_text.py b/plotly/validators/densitymapbox/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/_text.py rename to plotly/validators/densitymapbox/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/__init__.py b/plotly/validators/densitymapbox/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/__init__.py rename to plotly/validators/densitymapbox/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_color.py b/plotly/validators/densitymapbox/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_color.py rename to plotly/validators/densitymapbox/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_family.py b/plotly/validators/densitymapbox/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_family.py rename to plotly/validators/densitymapbox/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_lineposition.py b/plotly/validators/densitymapbox/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_lineposition.py rename to plotly/validators/densitymapbox/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_shadow.py b/plotly/validators/densitymapbox/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_shadow.py rename to plotly/validators/densitymapbox/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_size.py b/plotly/validators/densitymapbox/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_size.py rename to plotly/validators/densitymapbox/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_style.py b/plotly/validators/densitymapbox/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_style.py rename to plotly/validators/densitymapbox/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_textcase.py b/plotly/validators/densitymapbox/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_textcase.py rename to plotly/validators/densitymapbox/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_variant.py b/plotly/validators/densitymapbox/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_variant.py rename to plotly/validators/densitymapbox/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_weight.py b/plotly/validators/densitymapbox/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/colorbar/title/font/_weight.py rename to plotly/validators/densitymapbox/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/__init__.py b/plotly/validators/densitymapbox/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/__init__.py rename to plotly/validators/densitymapbox/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_align.py b/plotly/validators/densitymapbox/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_align.py rename to plotly/validators/densitymapbox/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_alignsrc.py b/plotly/validators/densitymapbox/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_alignsrc.py rename to plotly/validators/densitymapbox/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bgcolor.py b/plotly/validators/densitymapbox/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bgcolor.py rename to plotly/validators/densitymapbox/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bgcolorsrc.py b/plotly/validators/densitymapbox/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bgcolorsrc.py rename to plotly/validators/densitymapbox/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bordercolor.py b/plotly/validators/densitymapbox/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bordercolor.py rename to plotly/validators/densitymapbox/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bordercolorsrc.py b/plotly/validators/densitymapbox/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_bordercolorsrc.py rename to plotly/validators/densitymapbox/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_font.py b/plotly/validators/densitymapbox/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_font.py rename to plotly/validators/densitymapbox/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_namelength.py b/plotly/validators/densitymapbox/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_namelength.py rename to plotly/validators/densitymapbox/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_namelengthsrc.py b/plotly/validators/densitymapbox/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/_namelengthsrc.py rename to plotly/validators/densitymapbox/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/__init__.py b/plotly/validators/densitymapbox/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/__init__.py rename to plotly/validators/densitymapbox/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_color.py b/plotly/validators/densitymapbox/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_color.py rename to plotly/validators/densitymapbox/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_colorsrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_colorsrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_family.py b/plotly/validators/densitymapbox/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_family.py rename to plotly/validators/densitymapbox/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_familysrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_familysrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_lineposition.py b/plotly/validators/densitymapbox/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_lineposition.py rename to plotly/validators/densitymapbox/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_linepositionsrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_shadow.py b/plotly/validators/densitymapbox/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_shadow.py rename to plotly/validators/densitymapbox/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_shadowsrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_shadowsrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_size.py b/plotly/validators/densitymapbox/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_size.py rename to plotly/validators/densitymapbox/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_sizesrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_sizesrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_style.py b/plotly/validators/densitymapbox/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_style.py rename to plotly/validators/densitymapbox/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_stylesrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_stylesrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_textcase.py b/plotly/validators/densitymapbox/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_textcase.py rename to plotly/validators/densitymapbox/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_textcasesrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_textcasesrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_variant.py b/plotly/validators/densitymapbox/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_variant.py rename to plotly/validators/densitymapbox/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_variantsrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_variantsrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_weight.py b/plotly/validators/densitymapbox/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_weight.py rename to plotly/validators/densitymapbox/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_weightsrc.py b/plotly/validators/densitymapbox/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/hoverlabel/font/_weightsrc.py rename to plotly/validators/densitymapbox/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/__init__.py b/plotly/validators/densitymapbox/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/__init__.py rename to plotly/validators/densitymapbox/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/_font.py b/plotly/validators/densitymapbox/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/_font.py rename to plotly/validators/densitymapbox/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/_text.py b/plotly/validators/densitymapbox/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/_text.py rename to plotly/validators/densitymapbox/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/__init__.py b/plotly/validators/densitymapbox/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/__init__.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_color.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_color.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_family.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_family.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_lineposition.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_lineposition.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_shadow.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_shadow.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_size.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_size.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_style.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_style.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_textcase.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_textcase.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_variant.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_variant.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_weight.py b/plotly/validators/densitymapbox/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/legendgrouptitle/font/_weight.py rename to plotly/validators/densitymapbox/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/stream/__init__.py b/plotly/validators/densitymapbox/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/stream/__init__.py rename to plotly/validators/densitymapbox/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/stream/_maxpoints.py b/plotly/validators/densitymapbox/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/stream/_maxpoints.py rename to plotly/validators/densitymapbox/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/densitymapbox/stream/_token.py b/plotly/validators/densitymapbox/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/densitymapbox/stream/_token.py rename to plotly/validators/densitymapbox/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/frame/__init__.py b/plotly/validators/frame/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/__init__.py rename to plotly/validators/frame/__init__.py diff --git a/packages/python/plotly/plotly/validators/frame/_baseframe.py b/plotly/validators/frame/_baseframe.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/_baseframe.py rename to plotly/validators/frame/_baseframe.py diff --git a/packages/python/plotly/plotly/validators/frame/_data.py b/plotly/validators/frame/_data.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/_data.py rename to plotly/validators/frame/_data.py diff --git a/packages/python/plotly/plotly/validators/frame/_group.py b/plotly/validators/frame/_group.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/_group.py rename to plotly/validators/frame/_group.py diff --git a/packages/python/plotly/plotly/validators/frame/_layout.py b/plotly/validators/frame/_layout.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/_layout.py rename to plotly/validators/frame/_layout.py diff --git a/packages/python/plotly/plotly/validators/frame/_name.py b/plotly/validators/frame/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/_name.py rename to plotly/validators/frame/_name.py diff --git a/packages/python/plotly/plotly/validators/frame/_traces.py b/plotly/validators/frame/_traces.py similarity index 100% rename from packages/python/plotly/plotly/validators/frame/_traces.py rename to plotly/validators/frame/_traces.py diff --git a/packages/python/plotly/plotly/validators/funnel/__init__.py b/plotly/validators/funnel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/__init__.py rename to plotly/validators/funnel/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/_alignmentgroup.py b/plotly/validators/funnel/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_alignmentgroup.py rename to plotly/validators/funnel/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/funnel/_cliponaxis.py b/plotly/validators/funnel/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_cliponaxis.py rename to plotly/validators/funnel/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/funnel/_connector.py b/plotly/validators/funnel/_connector.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_connector.py rename to plotly/validators/funnel/_connector.py diff --git a/packages/python/plotly/plotly/validators/funnel/_constraintext.py b/plotly/validators/funnel/_constraintext.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_constraintext.py rename to plotly/validators/funnel/_constraintext.py diff --git a/packages/python/plotly/plotly/validators/funnel/_customdata.py b/plotly/validators/funnel/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_customdata.py rename to plotly/validators/funnel/_customdata.py diff --git a/packages/python/plotly/plotly/validators/funnel/_customdatasrc.py b/plotly/validators/funnel/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_customdatasrc.py rename to plotly/validators/funnel/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_dx.py b/plotly/validators/funnel/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_dx.py rename to plotly/validators/funnel/_dx.py diff --git a/packages/python/plotly/plotly/validators/funnel/_dy.py b/plotly/validators/funnel/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_dy.py rename to plotly/validators/funnel/_dy.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hoverinfo.py b/plotly/validators/funnel/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hoverinfo.py rename to plotly/validators/funnel/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hoverinfosrc.py b/plotly/validators/funnel/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hoverinfosrc.py rename to plotly/validators/funnel/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hoverlabel.py b/plotly/validators/funnel/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hoverlabel.py rename to plotly/validators/funnel/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hovertemplate.py b/plotly/validators/funnel/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hovertemplate.py rename to plotly/validators/funnel/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hovertemplatesrc.py b/plotly/validators/funnel/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hovertemplatesrc.py rename to plotly/validators/funnel/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hovertext.py b/plotly/validators/funnel/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hovertext.py rename to plotly/validators/funnel/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/funnel/_hovertextsrc.py b/plotly/validators/funnel/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_hovertextsrc.py rename to plotly/validators/funnel/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_ids.py b/plotly/validators/funnel/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_ids.py rename to plotly/validators/funnel/_ids.py diff --git a/packages/python/plotly/plotly/validators/funnel/_idssrc.py b/plotly/validators/funnel/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_idssrc.py rename to plotly/validators/funnel/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_insidetextanchor.py b/plotly/validators/funnel/_insidetextanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_insidetextanchor.py rename to plotly/validators/funnel/_insidetextanchor.py diff --git a/packages/python/plotly/plotly/validators/funnel/_insidetextfont.py b/plotly/validators/funnel/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_insidetextfont.py rename to plotly/validators/funnel/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/funnel/_legend.py b/plotly/validators/funnel/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_legend.py rename to plotly/validators/funnel/_legend.py diff --git a/packages/python/plotly/plotly/validators/funnel/_legendgroup.py b/plotly/validators/funnel/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_legendgroup.py rename to plotly/validators/funnel/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/funnel/_legendgrouptitle.py b/plotly/validators/funnel/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_legendgrouptitle.py rename to plotly/validators/funnel/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/funnel/_legendrank.py b/plotly/validators/funnel/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_legendrank.py rename to plotly/validators/funnel/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/funnel/_legendwidth.py b/plotly/validators/funnel/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_legendwidth.py rename to plotly/validators/funnel/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/funnel/_marker.py b/plotly/validators/funnel/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_marker.py rename to plotly/validators/funnel/_marker.py diff --git a/packages/python/plotly/plotly/validators/funnel/_meta.py b/plotly/validators/funnel/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_meta.py rename to plotly/validators/funnel/_meta.py diff --git a/packages/python/plotly/plotly/validators/funnel/_metasrc.py b/plotly/validators/funnel/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_metasrc.py rename to plotly/validators/funnel/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_name.py b/plotly/validators/funnel/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_name.py rename to plotly/validators/funnel/_name.py diff --git a/packages/python/plotly/plotly/validators/funnel/_offset.py b/plotly/validators/funnel/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_offset.py rename to plotly/validators/funnel/_offset.py diff --git a/packages/python/plotly/plotly/validators/funnel/_offsetgroup.py b/plotly/validators/funnel/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_offsetgroup.py rename to plotly/validators/funnel/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/funnel/_opacity.py b/plotly/validators/funnel/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_opacity.py rename to plotly/validators/funnel/_opacity.py diff --git a/packages/python/plotly/plotly/validators/funnel/_orientation.py b/plotly/validators/funnel/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_orientation.py rename to plotly/validators/funnel/_orientation.py diff --git a/packages/python/plotly/plotly/validators/funnel/_outsidetextfont.py b/plotly/validators/funnel/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_outsidetextfont.py rename to plotly/validators/funnel/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/funnel/_selectedpoints.py b/plotly/validators/funnel/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_selectedpoints.py rename to plotly/validators/funnel/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/funnel/_showlegend.py b/plotly/validators/funnel/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_showlegend.py rename to plotly/validators/funnel/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/funnel/_stream.py b/plotly/validators/funnel/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_stream.py rename to plotly/validators/funnel/_stream.py diff --git a/packages/python/plotly/plotly/validators/funnel/_text.py b/plotly/validators/funnel/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_text.py rename to plotly/validators/funnel/_text.py diff --git a/packages/python/plotly/plotly/validators/funnel/_textangle.py b/plotly/validators/funnel/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_textangle.py rename to plotly/validators/funnel/_textangle.py diff --git a/packages/python/plotly/plotly/validators/funnel/_textfont.py b/plotly/validators/funnel/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_textfont.py rename to plotly/validators/funnel/_textfont.py diff --git a/packages/python/plotly/plotly/validators/funnel/_textinfo.py b/plotly/validators/funnel/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_textinfo.py rename to plotly/validators/funnel/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/funnel/_textposition.py b/plotly/validators/funnel/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_textposition.py rename to plotly/validators/funnel/_textposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/_textpositionsrc.py b/plotly/validators/funnel/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_textpositionsrc.py rename to plotly/validators/funnel/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_textsrc.py b/plotly/validators/funnel/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_textsrc.py rename to plotly/validators/funnel/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_texttemplate.py b/plotly/validators/funnel/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_texttemplate.py rename to plotly/validators/funnel/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/funnel/_texttemplatesrc.py b/plotly/validators/funnel/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_texttemplatesrc.py rename to plotly/validators/funnel/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_uid.py b/plotly/validators/funnel/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_uid.py rename to plotly/validators/funnel/_uid.py diff --git a/packages/python/plotly/plotly/validators/funnel/_uirevision.py b/plotly/validators/funnel/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_uirevision.py rename to plotly/validators/funnel/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/funnel/_visible.py b/plotly/validators/funnel/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_visible.py rename to plotly/validators/funnel/_visible.py diff --git a/packages/python/plotly/plotly/validators/funnel/_width.py b/plotly/validators/funnel/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_width.py rename to plotly/validators/funnel/_width.py diff --git a/packages/python/plotly/plotly/validators/funnel/_x.py b/plotly/validators/funnel/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_x.py rename to plotly/validators/funnel/_x.py diff --git a/packages/python/plotly/plotly/validators/funnel/_x0.py b/plotly/validators/funnel/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_x0.py rename to plotly/validators/funnel/_x0.py diff --git a/packages/python/plotly/plotly/validators/funnel/_xaxis.py b/plotly/validators/funnel/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_xaxis.py rename to plotly/validators/funnel/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/funnel/_xhoverformat.py b/plotly/validators/funnel/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_xhoverformat.py rename to plotly/validators/funnel/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/funnel/_xperiod.py b/plotly/validators/funnel/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_xperiod.py rename to plotly/validators/funnel/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/funnel/_xperiod0.py b/plotly/validators/funnel/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_xperiod0.py rename to plotly/validators/funnel/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/funnel/_xperiodalignment.py b/plotly/validators/funnel/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_xperiodalignment.py rename to plotly/validators/funnel/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/funnel/_xsrc.py b/plotly/validators/funnel/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_xsrc.py rename to plotly/validators/funnel/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_y.py b/plotly/validators/funnel/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_y.py rename to plotly/validators/funnel/_y.py diff --git a/packages/python/plotly/plotly/validators/funnel/_y0.py b/plotly/validators/funnel/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_y0.py rename to plotly/validators/funnel/_y0.py diff --git a/packages/python/plotly/plotly/validators/funnel/_yaxis.py b/plotly/validators/funnel/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_yaxis.py rename to plotly/validators/funnel/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/funnel/_yhoverformat.py b/plotly/validators/funnel/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_yhoverformat.py rename to plotly/validators/funnel/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/funnel/_yperiod.py b/plotly/validators/funnel/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_yperiod.py rename to plotly/validators/funnel/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/funnel/_yperiod0.py b/plotly/validators/funnel/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_yperiod0.py rename to plotly/validators/funnel/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/funnel/_yperiodalignment.py b/plotly/validators/funnel/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_yperiodalignment.py rename to plotly/validators/funnel/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/funnel/_ysrc.py b/plotly/validators/funnel/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_ysrc.py rename to plotly/validators/funnel/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/_zorder.py b/plotly/validators/funnel/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/_zorder.py rename to plotly/validators/funnel/_zorder.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/__init__.py b/plotly/validators/funnel/connector/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/__init__.py rename to plotly/validators/funnel/connector/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/_fillcolor.py b/plotly/validators/funnel/connector/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/_fillcolor.py rename to plotly/validators/funnel/connector/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/_line.py b/plotly/validators/funnel/connector/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/_line.py rename to plotly/validators/funnel/connector/_line.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/_visible.py b/plotly/validators/funnel/connector/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/_visible.py rename to plotly/validators/funnel/connector/_visible.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/line/__init__.py b/plotly/validators/funnel/connector/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/line/__init__.py rename to plotly/validators/funnel/connector/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/line/_color.py b/plotly/validators/funnel/connector/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/line/_color.py rename to plotly/validators/funnel/connector/line/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/line/_dash.py b/plotly/validators/funnel/connector/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/line/_dash.py rename to plotly/validators/funnel/connector/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/funnel/connector/line/_width.py b/plotly/validators/funnel/connector/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/connector/line/_width.py rename to plotly/validators/funnel/connector/line/_width.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/__init__.py b/plotly/validators/funnel/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/__init__.py rename to plotly/validators/funnel/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_align.py b/plotly/validators/funnel/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_align.py rename to plotly/validators/funnel/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_alignsrc.py b/plotly/validators/funnel/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_alignsrc.py rename to plotly/validators/funnel/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_bgcolor.py b/plotly/validators/funnel/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_bgcolor.py rename to plotly/validators/funnel/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_bgcolorsrc.py b/plotly/validators/funnel/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_bgcolorsrc.py rename to plotly/validators/funnel/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_bordercolor.py b/plotly/validators/funnel/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_bordercolor.py rename to plotly/validators/funnel/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_bordercolorsrc.py b/plotly/validators/funnel/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_bordercolorsrc.py rename to plotly/validators/funnel/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_font.py b/plotly/validators/funnel/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_font.py rename to plotly/validators/funnel/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_namelength.py b/plotly/validators/funnel/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_namelength.py rename to plotly/validators/funnel/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/_namelengthsrc.py b/plotly/validators/funnel/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/_namelengthsrc.py rename to plotly/validators/funnel/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/__init__.py b/plotly/validators/funnel/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/__init__.py rename to plotly/validators/funnel/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_color.py b/plotly/validators/funnel/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_color.py rename to plotly/validators/funnel/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_colorsrc.py b/plotly/validators/funnel/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_colorsrc.py rename to plotly/validators/funnel/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_family.py b/plotly/validators/funnel/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_family.py rename to plotly/validators/funnel/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_familysrc.py b/plotly/validators/funnel/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_familysrc.py rename to plotly/validators/funnel/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_lineposition.py b/plotly/validators/funnel/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_lineposition.py rename to plotly/validators/funnel/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_linepositionsrc.py b/plotly/validators/funnel/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/funnel/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_shadow.py b/plotly/validators/funnel/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_shadow.py rename to plotly/validators/funnel/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_shadowsrc.py b/plotly/validators/funnel/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_shadowsrc.py rename to plotly/validators/funnel/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_size.py b/plotly/validators/funnel/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_size.py rename to plotly/validators/funnel/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_sizesrc.py b/plotly/validators/funnel/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_sizesrc.py rename to plotly/validators/funnel/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_style.py b/plotly/validators/funnel/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_style.py rename to plotly/validators/funnel/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_stylesrc.py b/plotly/validators/funnel/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_stylesrc.py rename to plotly/validators/funnel/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_textcase.py b/plotly/validators/funnel/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_textcase.py rename to plotly/validators/funnel/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_textcasesrc.py b/plotly/validators/funnel/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_textcasesrc.py rename to plotly/validators/funnel/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_variant.py b/plotly/validators/funnel/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_variant.py rename to plotly/validators/funnel/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_variantsrc.py b/plotly/validators/funnel/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_variantsrc.py rename to plotly/validators/funnel/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_weight.py b/plotly/validators/funnel/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_weight.py rename to plotly/validators/funnel/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_weightsrc.py b/plotly/validators/funnel/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/hoverlabel/font/_weightsrc.py rename to plotly/validators/funnel/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/__init__.py b/plotly/validators/funnel/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/__init__.py rename to plotly/validators/funnel/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_color.py b/plotly/validators/funnel/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_color.py rename to plotly/validators/funnel/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_colorsrc.py b/plotly/validators/funnel/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_colorsrc.py rename to plotly/validators/funnel/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_family.py b/plotly/validators/funnel/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_family.py rename to plotly/validators/funnel/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_familysrc.py b/plotly/validators/funnel/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_familysrc.py rename to plotly/validators/funnel/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_lineposition.py b/plotly/validators/funnel/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_lineposition.py rename to plotly/validators/funnel/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_linepositionsrc.py b/plotly/validators/funnel/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_linepositionsrc.py rename to plotly/validators/funnel/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_shadow.py b/plotly/validators/funnel/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_shadow.py rename to plotly/validators/funnel/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_shadowsrc.py b/plotly/validators/funnel/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_shadowsrc.py rename to plotly/validators/funnel/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_size.py b/plotly/validators/funnel/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_size.py rename to plotly/validators/funnel/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_sizesrc.py b/plotly/validators/funnel/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_sizesrc.py rename to plotly/validators/funnel/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_style.py b/plotly/validators/funnel/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_style.py rename to plotly/validators/funnel/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_stylesrc.py b/plotly/validators/funnel/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_stylesrc.py rename to plotly/validators/funnel/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_textcase.py b/plotly/validators/funnel/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_textcase.py rename to plotly/validators/funnel/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_textcasesrc.py b/plotly/validators/funnel/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_textcasesrc.py rename to plotly/validators/funnel/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_variant.py b/plotly/validators/funnel/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_variant.py rename to plotly/validators/funnel/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_variantsrc.py b/plotly/validators/funnel/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_variantsrc.py rename to plotly/validators/funnel/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_weight.py b/plotly/validators/funnel/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_weight.py rename to plotly/validators/funnel/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/insidetextfont/_weightsrc.py b/plotly/validators/funnel/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/insidetextfont/_weightsrc.py rename to plotly/validators/funnel/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/__init__.py b/plotly/validators/funnel/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/__init__.py rename to plotly/validators/funnel/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/_font.py b/plotly/validators/funnel/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/_font.py rename to plotly/validators/funnel/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/_text.py b/plotly/validators/funnel/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/_text.py rename to plotly/validators/funnel/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/__init__.py b/plotly/validators/funnel/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/__init__.py rename to plotly/validators/funnel/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_color.py b/plotly/validators/funnel/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_color.py rename to plotly/validators/funnel/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_family.py b/plotly/validators/funnel/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_family.py rename to plotly/validators/funnel/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_lineposition.py b/plotly/validators/funnel/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_lineposition.py rename to plotly/validators/funnel/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_shadow.py b/plotly/validators/funnel/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_shadow.py rename to plotly/validators/funnel/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_size.py b/plotly/validators/funnel/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_size.py rename to plotly/validators/funnel/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_style.py b/plotly/validators/funnel/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_style.py rename to plotly/validators/funnel/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_textcase.py b/plotly/validators/funnel/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_textcase.py rename to plotly/validators/funnel/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_variant.py b/plotly/validators/funnel/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_variant.py rename to plotly/validators/funnel/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_weight.py b/plotly/validators/funnel/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/legendgrouptitle/font/_weight.py rename to plotly/validators/funnel/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/__init__.py b/plotly/validators/funnel/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/__init__.py rename to plotly/validators/funnel/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_autocolorscale.py b/plotly/validators/funnel/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_autocolorscale.py rename to plotly/validators/funnel/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_cauto.py b/plotly/validators/funnel/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_cauto.py rename to plotly/validators/funnel/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_cmax.py b/plotly/validators/funnel/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_cmax.py rename to plotly/validators/funnel/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_cmid.py b/plotly/validators/funnel/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_cmid.py rename to plotly/validators/funnel/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_cmin.py b/plotly/validators/funnel/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_cmin.py rename to plotly/validators/funnel/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_color.py b/plotly/validators/funnel/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_color.py rename to plotly/validators/funnel/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_coloraxis.py b/plotly/validators/funnel/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_coloraxis.py rename to plotly/validators/funnel/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_colorbar.py b/plotly/validators/funnel/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_colorbar.py rename to plotly/validators/funnel/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_colorscale.py b/plotly/validators/funnel/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_colorscale.py rename to plotly/validators/funnel/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_colorsrc.py b/plotly/validators/funnel/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_colorsrc.py rename to plotly/validators/funnel/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_line.py b/plotly/validators/funnel/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_line.py rename to plotly/validators/funnel/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_opacity.py b/plotly/validators/funnel/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_opacity.py rename to plotly/validators/funnel/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_opacitysrc.py b/plotly/validators/funnel/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_opacitysrc.py rename to plotly/validators/funnel/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_reversescale.py b/plotly/validators/funnel/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_reversescale.py rename to plotly/validators/funnel/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/_showscale.py b/plotly/validators/funnel/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/_showscale.py rename to plotly/validators/funnel/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/__init__.py b/plotly/validators/funnel/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/__init__.py rename to plotly/validators/funnel/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_bgcolor.py b/plotly/validators/funnel/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_bgcolor.py rename to plotly/validators/funnel/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_bordercolor.py b/plotly/validators/funnel/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_bordercolor.py rename to plotly/validators/funnel/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_borderwidth.py b/plotly/validators/funnel/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_borderwidth.py rename to plotly/validators/funnel/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_dtick.py b/plotly/validators/funnel/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_dtick.py rename to plotly/validators/funnel/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_exponentformat.py b/plotly/validators/funnel/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_exponentformat.py rename to plotly/validators/funnel/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_labelalias.py b/plotly/validators/funnel/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_labelalias.py rename to plotly/validators/funnel/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_len.py b/plotly/validators/funnel/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_len.py rename to plotly/validators/funnel/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_lenmode.py b/plotly/validators/funnel/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_lenmode.py rename to plotly/validators/funnel/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_minexponent.py b/plotly/validators/funnel/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_minexponent.py rename to plotly/validators/funnel/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_nticks.py b/plotly/validators/funnel/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_nticks.py rename to plotly/validators/funnel/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_orientation.py b/plotly/validators/funnel/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_orientation.py rename to plotly/validators/funnel/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_outlinecolor.py b/plotly/validators/funnel/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_outlinecolor.py rename to plotly/validators/funnel/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_outlinewidth.py b/plotly/validators/funnel/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_outlinewidth.py rename to plotly/validators/funnel/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_separatethousands.py b/plotly/validators/funnel/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_separatethousands.py rename to plotly/validators/funnel/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showexponent.py b/plotly/validators/funnel/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showexponent.py rename to plotly/validators/funnel/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showticklabels.py b/plotly/validators/funnel/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showticklabels.py rename to plotly/validators/funnel/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showtickprefix.py b/plotly/validators/funnel/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showtickprefix.py rename to plotly/validators/funnel/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showticksuffix.py b/plotly/validators/funnel/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_showticksuffix.py rename to plotly/validators/funnel/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_thickness.py b/plotly/validators/funnel/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_thickness.py rename to plotly/validators/funnel/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_thicknessmode.py b/plotly/validators/funnel/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_thicknessmode.py rename to plotly/validators/funnel/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tick0.py b/plotly/validators/funnel/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tick0.py rename to plotly/validators/funnel/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickangle.py b/plotly/validators/funnel/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickangle.py rename to plotly/validators/funnel/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickcolor.py b/plotly/validators/funnel/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickcolor.py rename to plotly/validators/funnel/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickfont.py b/plotly/validators/funnel/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickfont.py rename to plotly/validators/funnel/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickformat.py b/plotly/validators/funnel/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickformat.py rename to plotly/validators/funnel/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/funnel/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/funnel/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickformatstops.py b/plotly/validators/funnel/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickformatstops.py rename to plotly/validators/funnel/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/funnel/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/funnel/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklabelposition.py b/plotly/validators/funnel/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklabelposition.py rename to plotly/validators/funnel/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklabelstep.py b/plotly/validators/funnel/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklabelstep.py rename to plotly/validators/funnel/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklen.py b/plotly/validators/funnel/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticklen.py rename to plotly/validators/funnel/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickmode.py b/plotly/validators/funnel/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickmode.py rename to plotly/validators/funnel/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickprefix.py b/plotly/validators/funnel/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickprefix.py rename to plotly/validators/funnel/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticks.py b/plotly/validators/funnel/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticks.py rename to plotly/validators/funnel/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticksuffix.py b/plotly/validators/funnel/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticksuffix.py rename to plotly/validators/funnel/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticktext.py b/plotly/validators/funnel/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticktext.py rename to plotly/validators/funnel/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticktextsrc.py b/plotly/validators/funnel/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ticktextsrc.py rename to plotly/validators/funnel/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickvals.py b/plotly/validators/funnel/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickvals.py rename to plotly/validators/funnel/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickvalssrc.py b/plotly/validators/funnel/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickvalssrc.py rename to plotly/validators/funnel/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickwidth.py b/plotly/validators/funnel/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_tickwidth.py rename to plotly/validators/funnel/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_title.py b/plotly/validators/funnel/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_title.py rename to plotly/validators/funnel/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_x.py b/plotly/validators/funnel/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_x.py rename to plotly/validators/funnel/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_xanchor.py b/plotly/validators/funnel/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_xanchor.py rename to plotly/validators/funnel/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_xpad.py b/plotly/validators/funnel/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_xpad.py rename to plotly/validators/funnel/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_xref.py b/plotly/validators/funnel/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_xref.py rename to plotly/validators/funnel/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_y.py b/plotly/validators/funnel/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_y.py rename to plotly/validators/funnel/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_yanchor.py b/plotly/validators/funnel/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_yanchor.py rename to plotly/validators/funnel/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ypad.py b/plotly/validators/funnel/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_ypad.py rename to plotly/validators/funnel/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/_yref.py b/plotly/validators/funnel/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/_yref.py rename to plotly/validators/funnel/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/__init__.py b/plotly/validators/funnel/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/__init__.py rename to plotly/validators/funnel/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_color.py b/plotly/validators/funnel/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_color.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_family.py b/plotly/validators/funnel/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_family.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/funnel/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_shadow.py b/plotly/validators/funnel/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_size.py b/plotly/validators/funnel/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_size.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_style.py b/plotly/validators/funnel/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_style.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_textcase.py b/plotly/validators/funnel/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_variant.py b/plotly/validators/funnel/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_variant.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_weight.py b/plotly/validators/funnel/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickfont/_weight.py rename to plotly/validators/funnel/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/funnel/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/funnel/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/funnel/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/funnel/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/funnel/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/funnel/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_name.py b/plotly/validators/funnel/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/funnel/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/funnel/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/funnel/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_value.py b/plotly/validators/funnel/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/funnel/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/__init__.py b/plotly/validators/funnel/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/__init__.py rename to plotly/validators/funnel/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/_font.py b/plotly/validators/funnel/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/_font.py rename to plotly/validators/funnel/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/_side.py b/plotly/validators/funnel/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/_side.py rename to plotly/validators/funnel/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/_text.py b/plotly/validators/funnel/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/_text.py rename to plotly/validators/funnel/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/__init__.py b/plotly/validators/funnel/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/__init__.py rename to plotly/validators/funnel/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_color.py b/plotly/validators/funnel/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_color.py rename to plotly/validators/funnel/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_family.py b/plotly/validators/funnel/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_family.py rename to plotly/validators/funnel/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_lineposition.py b/plotly/validators/funnel/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/funnel/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_shadow.py b/plotly/validators/funnel/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_shadow.py rename to plotly/validators/funnel/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_size.py b/plotly/validators/funnel/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_size.py rename to plotly/validators/funnel/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_style.py b/plotly/validators/funnel/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_style.py rename to plotly/validators/funnel/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_textcase.py b/plotly/validators/funnel/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_textcase.py rename to plotly/validators/funnel/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_variant.py b/plotly/validators/funnel/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_variant.py rename to plotly/validators/funnel/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_weight.py b/plotly/validators/funnel/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/colorbar/title/font/_weight.py rename to plotly/validators/funnel/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/__init__.py b/plotly/validators/funnel/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/__init__.py rename to plotly/validators/funnel/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_autocolorscale.py b/plotly/validators/funnel/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_autocolorscale.py rename to plotly/validators/funnel/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_cauto.py b/plotly/validators/funnel/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_cauto.py rename to plotly/validators/funnel/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_cmax.py b/plotly/validators/funnel/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_cmax.py rename to plotly/validators/funnel/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_cmid.py b/plotly/validators/funnel/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_cmid.py rename to plotly/validators/funnel/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_cmin.py b/plotly/validators/funnel/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_cmin.py rename to plotly/validators/funnel/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_color.py b/plotly/validators/funnel/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_color.py rename to plotly/validators/funnel/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_coloraxis.py b/plotly/validators/funnel/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_coloraxis.py rename to plotly/validators/funnel/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_colorscale.py b/plotly/validators/funnel/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_colorscale.py rename to plotly/validators/funnel/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_colorsrc.py b/plotly/validators/funnel/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_colorsrc.py rename to plotly/validators/funnel/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_reversescale.py b/plotly/validators/funnel/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_reversescale.py rename to plotly/validators/funnel/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_width.py b/plotly/validators/funnel/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_width.py rename to plotly/validators/funnel/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/funnel/marker/line/_widthsrc.py b/plotly/validators/funnel/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/marker/line/_widthsrc.py rename to plotly/validators/funnel/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/__init__.py b/plotly/validators/funnel/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/__init__.py rename to plotly/validators/funnel/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_color.py b/plotly/validators/funnel/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_color.py rename to plotly/validators/funnel/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_colorsrc.py b/plotly/validators/funnel/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_colorsrc.py rename to plotly/validators/funnel/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_family.py b/plotly/validators/funnel/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_family.py rename to plotly/validators/funnel/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_familysrc.py b/plotly/validators/funnel/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_familysrc.py rename to plotly/validators/funnel/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_lineposition.py b/plotly/validators/funnel/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_lineposition.py rename to plotly/validators/funnel/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_linepositionsrc.py b/plotly/validators/funnel/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_linepositionsrc.py rename to plotly/validators/funnel/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_shadow.py b/plotly/validators/funnel/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_shadow.py rename to plotly/validators/funnel/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_shadowsrc.py b/plotly/validators/funnel/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_shadowsrc.py rename to plotly/validators/funnel/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_size.py b/plotly/validators/funnel/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_size.py rename to plotly/validators/funnel/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_sizesrc.py b/plotly/validators/funnel/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_sizesrc.py rename to plotly/validators/funnel/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_style.py b/plotly/validators/funnel/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_style.py rename to plotly/validators/funnel/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_stylesrc.py b/plotly/validators/funnel/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_stylesrc.py rename to plotly/validators/funnel/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_textcase.py b/plotly/validators/funnel/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_textcase.py rename to plotly/validators/funnel/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_textcasesrc.py b/plotly/validators/funnel/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_textcasesrc.py rename to plotly/validators/funnel/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_variant.py b/plotly/validators/funnel/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_variant.py rename to plotly/validators/funnel/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_variantsrc.py b/plotly/validators/funnel/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_variantsrc.py rename to plotly/validators/funnel/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_weight.py b/plotly/validators/funnel/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_weight.py rename to plotly/validators/funnel/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/outsidetextfont/_weightsrc.py b/plotly/validators/funnel/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/outsidetextfont/_weightsrc.py rename to plotly/validators/funnel/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/stream/__init__.py b/plotly/validators/funnel/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/stream/__init__.py rename to plotly/validators/funnel/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/stream/_maxpoints.py b/plotly/validators/funnel/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/stream/_maxpoints.py rename to plotly/validators/funnel/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/funnel/stream/_token.py b/plotly/validators/funnel/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/stream/_token.py rename to plotly/validators/funnel/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/__init__.py b/plotly/validators/funnel/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/__init__.py rename to plotly/validators/funnel/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_color.py b/plotly/validators/funnel/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_color.py rename to plotly/validators/funnel/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_colorsrc.py b/plotly/validators/funnel/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_colorsrc.py rename to plotly/validators/funnel/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_family.py b/plotly/validators/funnel/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_family.py rename to plotly/validators/funnel/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_familysrc.py b/plotly/validators/funnel/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_familysrc.py rename to plotly/validators/funnel/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_lineposition.py b/plotly/validators/funnel/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_lineposition.py rename to plotly/validators/funnel/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_linepositionsrc.py b/plotly/validators/funnel/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_linepositionsrc.py rename to plotly/validators/funnel/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_shadow.py b/plotly/validators/funnel/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_shadow.py rename to plotly/validators/funnel/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_shadowsrc.py b/plotly/validators/funnel/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_shadowsrc.py rename to plotly/validators/funnel/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_size.py b/plotly/validators/funnel/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_size.py rename to plotly/validators/funnel/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_sizesrc.py b/plotly/validators/funnel/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_sizesrc.py rename to plotly/validators/funnel/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_style.py b/plotly/validators/funnel/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_style.py rename to plotly/validators/funnel/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_stylesrc.py b/plotly/validators/funnel/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_stylesrc.py rename to plotly/validators/funnel/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_textcase.py b/plotly/validators/funnel/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_textcase.py rename to plotly/validators/funnel/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_textcasesrc.py b/plotly/validators/funnel/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_textcasesrc.py rename to plotly/validators/funnel/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_variant.py b/plotly/validators/funnel/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_variant.py rename to plotly/validators/funnel/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_variantsrc.py b/plotly/validators/funnel/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_variantsrc.py rename to plotly/validators/funnel/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_weight.py b/plotly/validators/funnel/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_weight.py rename to plotly/validators/funnel/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnel/textfont/_weightsrc.py b/plotly/validators/funnel/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnel/textfont/_weightsrc.py rename to plotly/validators/funnel/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/__init__.py b/plotly/validators/funnelarea/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/__init__.py rename to plotly/validators/funnelarea/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_aspectratio.py b/plotly/validators/funnelarea/_aspectratio.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_aspectratio.py rename to plotly/validators/funnelarea/_aspectratio.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_baseratio.py b/plotly/validators/funnelarea/_baseratio.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_baseratio.py rename to plotly/validators/funnelarea/_baseratio.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_customdata.py b/plotly/validators/funnelarea/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_customdata.py rename to plotly/validators/funnelarea/_customdata.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_customdatasrc.py b/plotly/validators/funnelarea/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_customdatasrc.py rename to plotly/validators/funnelarea/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_dlabel.py b/plotly/validators/funnelarea/_dlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_dlabel.py rename to plotly/validators/funnelarea/_dlabel.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_domain.py b/plotly/validators/funnelarea/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_domain.py rename to plotly/validators/funnelarea/_domain.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hoverinfo.py b/plotly/validators/funnelarea/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hoverinfo.py rename to plotly/validators/funnelarea/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hoverinfosrc.py b/plotly/validators/funnelarea/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hoverinfosrc.py rename to plotly/validators/funnelarea/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hoverlabel.py b/plotly/validators/funnelarea/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hoverlabel.py rename to plotly/validators/funnelarea/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hovertemplate.py b/plotly/validators/funnelarea/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hovertemplate.py rename to plotly/validators/funnelarea/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hovertemplatesrc.py b/plotly/validators/funnelarea/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hovertemplatesrc.py rename to plotly/validators/funnelarea/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hovertext.py b/plotly/validators/funnelarea/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hovertext.py rename to plotly/validators/funnelarea/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_hovertextsrc.py b/plotly/validators/funnelarea/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_hovertextsrc.py rename to plotly/validators/funnelarea/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_ids.py b/plotly/validators/funnelarea/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_ids.py rename to plotly/validators/funnelarea/_ids.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_idssrc.py b/plotly/validators/funnelarea/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_idssrc.py rename to plotly/validators/funnelarea/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_insidetextfont.py b/plotly/validators/funnelarea/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_insidetextfont.py rename to plotly/validators/funnelarea/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_label0.py b/plotly/validators/funnelarea/_label0.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_label0.py rename to plotly/validators/funnelarea/_label0.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_labels.py b/plotly/validators/funnelarea/_labels.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_labels.py rename to plotly/validators/funnelarea/_labels.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_labelssrc.py b/plotly/validators/funnelarea/_labelssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_labelssrc.py rename to plotly/validators/funnelarea/_labelssrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_legend.py b/plotly/validators/funnelarea/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_legend.py rename to plotly/validators/funnelarea/_legend.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_legendgroup.py b/plotly/validators/funnelarea/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_legendgroup.py rename to plotly/validators/funnelarea/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_legendgrouptitle.py b/plotly/validators/funnelarea/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_legendgrouptitle.py rename to plotly/validators/funnelarea/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_legendrank.py b/plotly/validators/funnelarea/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_legendrank.py rename to plotly/validators/funnelarea/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_legendwidth.py b/plotly/validators/funnelarea/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_legendwidth.py rename to plotly/validators/funnelarea/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_marker.py b/plotly/validators/funnelarea/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_marker.py rename to plotly/validators/funnelarea/_marker.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_meta.py b/plotly/validators/funnelarea/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_meta.py rename to plotly/validators/funnelarea/_meta.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_metasrc.py b/plotly/validators/funnelarea/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_metasrc.py rename to plotly/validators/funnelarea/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_name.py b/plotly/validators/funnelarea/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_name.py rename to plotly/validators/funnelarea/_name.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_opacity.py b/plotly/validators/funnelarea/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_opacity.py rename to plotly/validators/funnelarea/_opacity.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_scalegroup.py b/plotly/validators/funnelarea/_scalegroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_scalegroup.py rename to plotly/validators/funnelarea/_scalegroup.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_showlegend.py b/plotly/validators/funnelarea/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_showlegend.py rename to plotly/validators/funnelarea/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_stream.py b/plotly/validators/funnelarea/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_stream.py rename to plotly/validators/funnelarea/_stream.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_text.py b/plotly/validators/funnelarea/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_text.py rename to plotly/validators/funnelarea/_text.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_textfont.py b/plotly/validators/funnelarea/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_textfont.py rename to plotly/validators/funnelarea/_textfont.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_textinfo.py b/plotly/validators/funnelarea/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_textinfo.py rename to plotly/validators/funnelarea/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_textposition.py b/plotly/validators/funnelarea/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_textposition.py rename to plotly/validators/funnelarea/_textposition.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_textpositionsrc.py b/plotly/validators/funnelarea/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_textpositionsrc.py rename to plotly/validators/funnelarea/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_textsrc.py b/plotly/validators/funnelarea/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_textsrc.py rename to plotly/validators/funnelarea/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_texttemplate.py b/plotly/validators/funnelarea/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_texttemplate.py rename to plotly/validators/funnelarea/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_texttemplatesrc.py b/plotly/validators/funnelarea/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_texttemplatesrc.py rename to plotly/validators/funnelarea/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_title.py b/plotly/validators/funnelarea/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_title.py rename to plotly/validators/funnelarea/_title.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_uid.py b/plotly/validators/funnelarea/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_uid.py rename to plotly/validators/funnelarea/_uid.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_uirevision.py b/plotly/validators/funnelarea/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_uirevision.py rename to plotly/validators/funnelarea/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_values.py b/plotly/validators/funnelarea/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_values.py rename to plotly/validators/funnelarea/_values.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_valuessrc.py b/plotly/validators/funnelarea/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_valuessrc.py rename to plotly/validators/funnelarea/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/_visible.py b/plotly/validators/funnelarea/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/_visible.py rename to plotly/validators/funnelarea/_visible.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/domain/__init__.py b/plotly/validators/funnelarea/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/domain/__init__.py rename to plotly/validators/funnelarea/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/domain/_column.py b/plotly/validators/funnelarea/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/domain/_column.py rename to plotly/validators/funnelarea/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/domain/_row.py b/plotly/validators/funnelarea/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/domain/_row.py rename to plotly/validators/funnelarea/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/domain/_x.py b/plotly/validators/funnelarea/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/domain/_x.py rename to plotly/validators/funnelarea/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/domain/_y.py b/plotly/validators/funnelarea/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/domain/_y.py rename to plotly/validators/funnelarea/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/__init__.py b/plotly/validators/funnelarea/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/__init__.py rename to plotly/validators/funnelarea/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_align.py b/plotly/validators/funnelarea/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_align.py rename to plotly/validators/funnelarea/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_alignsrc.py b/plotly/validators/funnelarea/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_alignsrc.py rename to plotly/validators/funnelarea/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bgcolor.py b/plotly/validators/funnelarea/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bgcolor.py rename to plotly/validators/funnelarea/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bgcolorsrc.py b/plotly/validators/funnelarea/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bgcolorsrc.py rename to plotly/validators/funnelarea/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bordercolor.py b/plotly/validators/funnelarea/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bordercolor.py rename to plotly/validators/funnelarea/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bordercolorsrc.py b/plotly/validators/funnelarea/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_bordercolorsrc.py rename to plotly/validators/funnelarea/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_font.py b/plotly/validators/funnelarea/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_font.py rename to plotly/validators/funnelarea/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_namelength.py b/plotly/validators/funnelarea/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_namelength.py rename to plotly/validators/funnelarea/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_namelengthsrc.py b/plotly/validators/funnelarea/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/_namelengthsrc.py rename to plotly/validators/funnelarea/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/__init__.py b/plotly/validators/funnelarea/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/__init__.py rename to plotly/validators/funnelarea/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_color.py b/plotly/validators/funnelarea/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_color.py rename to plotly/validators/funnelarea/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_colorsrc.py b/plotly/validators/funnelarea/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_colorsrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_family.py b/plotly/validators/funnelarea/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_family.py rename to plotly/validators/funnelarea/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_familysrc.py b/plotly/validators/funnelarea/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_familysrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_lineposition.py b/plotly/validators/funnelarea/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_lineposition.py rename to plotly/validators/funnelarea/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_linepositionsrc.py b/plotly/validators/funnelarea/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_shadow.py b/plotly/validators/funnelarea/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_shadow.py rename to plotly/validators/funnelarea/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_shadowsrc.py b/plotly/validators/funnelarea/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_shadowsrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_size.py b/plotly/validators/funnelarea/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_size.py rename to plotly/validators/funnelarea/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_sizesrc.py b/plotly/validators/funnelarea/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_sizesrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_style.py b/plotly/validators/funnelarea/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_style.py rename to plotly/validators/funnelarea/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_stylesrc.py b/plotly/validators/funnelarea/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_stylesrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_textcase.py b/plotly/validators/funnelarea/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_textcase.py rename to plotly/validators/funnelarea/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_textcasesrc.py b/plotly/validators/funnelarea/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_textcasesrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_variant.py b/plotly/validators/funnelarea/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_variant.py rename to plotly/validators/funnelarea/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_variantsrc.py b/plotly/validators/funnelarea/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_variantsrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_weight.py b/plotly/validators/funnelarea/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_weight.py rename to plotly/validators/funnelarea/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_weightsrc.py b/plotly/validators/funnelarea/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/hoverlabel/font/_weightsrc.py rename to plotly/validators/funnelarea/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/__init__.py b/plotly/validators/funnelarea/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/__init__.py rename to plotly/validators/funnelarea/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_color.py b/plotly/validators/funnelarea/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_color.py rename to plotly/validators/funnelarea/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_colorsrc.py b/plotly/validators/funnelarea/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_colorsrc.py rename to plotly/validators/funnelarea/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_family.py b/plotly/validators/funnelarea/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_family.py rename to plotly/validators/funnelarea/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_familysrc.py b/plotly/validators/funnelarea/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_familysrc.py rename to plotly/validators/funnelarea/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_lineposition.py b/plotly/validators/funnelarea/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_lineposition.py rename to plotly/validators/funnelarea/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_linepositionsrc.py b/plotly/validators/funnelarea/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_linepositionsrc.py rename to plotly/validators/funnelarea/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_shadow.py b/plotly/validators/funnelarea/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_shadow.py rename to plotly/validators/funnelarea/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_shadowsrc.py b/plotly/validators/funnelarea/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_shadowsrc.py rename to plotly/validators/funnelarea/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_size.py b/plotly/validators/funnelarea/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_size.py rename to plotly/validators/funnelarea/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_sizesrc.py b/plotly/validators/funnelarea/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_sizesrc.py rename to plotly/validators/funnelarea/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_style.py b/plotly/validators/funnelarea/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_style.py rename to plotly/validators/funnelarea/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_stylesrc.py b/plotly/validators/funnelarea/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_stylesrc.py rename to plotly/validators/funnelarea/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_textcase.py b/plotly/validators/funnelarea/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_textcase.py rename to plotly/validators/funnelarea/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_textcasesrc.py b/plotly/validators/funnelarea/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_textcasesrc.py rename to plotly/validators/funnelarea/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_variant.py b/plotly/validators/funnelarea/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_variant.py rename to plotly/validators/funnelarea/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_variantsrc.py b/plotly/validators/funnelarea/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_variantsrc.py rename to plotly/validators/funnelarea/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_weight.py b/plotly/validators/funnelarea/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_weight.py rename to plotly/validators/funnelarea/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_weightsrc.py b/plotly/validators/funnelarea/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/insidetextfont/_weightsrc.py rename to plotly/validators/funnelarea/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/__init__.py b/plotly/validators/funnelarea/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/__init__.py rename to plotly/validators/funnelarea/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/_font.py b/plotly/validators/funnelarea/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/_font.py rename to plotly/validators/funnelarea/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/_text.py b/plotly/validators/funnelarea/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/_text.py rename to plotly/validators/funnelarea/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/__init__.py b/plotly/validators/funnelarea/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/__init__.py rename to plotly/validators/funnelarea/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_color.py b/plotly/validators/funnelarea/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_color.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_family.py b/plotly/validators/funnelarea/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_family.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_lineposition.py b/plotly/validators/funnelarea/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_lineposition.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_shadow.py b/plotly/validators/funnelarea/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_shadow.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_size.py b/plotly/validators/funnelarea/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_size.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_style.py b/plotly/validators/funnelarea/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_style.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_textcase.py b/plotly/validators/funnelarea/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_textcase.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_variant.py b/plotly/validators/funnelarea/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_variant.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_weight.py b/plotly/validators/funnelarea/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/legendgrouptitle/font/_weight.py rename to plotly/validators/funnelarea/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/__init__.py b/plotly/validators/funnelarea/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/__init__.py rename to plotly/validators/funnelarea/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/_colors.py b/plotly/validators/funnelarea/marker/_colors.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/_colors.py rename to plotly/validators/funnelarea/marker/_colors.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/_colorssrc.py b/plotly/validators/funnelarea/marker/_colorssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/_colorssrc.py rename to plotly/validators/funnelarea/marker/_colorssrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/_line.py b/plotly/validators/funnelarea/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/_line.py rename to plotly/validators/funnelarea/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/_pattern.py b/plotly/validators/funnelarea/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/_pattern.py rename to plotly/validators/funnelarea/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/line/__init__.py b/plotly/validators/funnelarea/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/line/__init__.py rename to plotly/validators/funnelarea/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/line/_color.py b/plotly/validators/funnelarea/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/line/_color.py rename to plotly/validators/funnelarea/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/line/_colorsrc.py b/plotly/validators/funnelarea/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/line/_colorsrc.py rename to plotly/validators/funnelarea/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/line/_width.py b/plotly/validators/funnelarea/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/line/_width.py rename to plotly/validators/funnelarea/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/line/_widthsrc.py b/plotly/validators/funnelarea/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/line/_widthsrc.py rename to plotly/validators/funnelarea/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/__init__.py b/plotly/validators/funnelarea/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/__init__.py rename to plotly/validators/funnelarea/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_bgcolor.py b/plotly/validators/funnelarea/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_bgcolor.py rename to plotly/validators/funnelarea/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_bgcolorsrc.py b/plotly/validators/funnelarea/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_bgcolorsrc.py rename to plotly/validators/funnelarea/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fgcolor.py b/plotly/validators/funnelarea/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fgcolor.py rename to plotly/validators/funnelarea/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fgcolorsrc.py b/plotly/validators/funnelarea/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fgcolorsrc.py rename to plotly/validators/funnelarea/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fgopacity.py b/plotly/validators/funnelarea/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fgopacity.py rename to plotly/validators/funnelarea/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fillmode.py b/plotly/validators/funnelarea/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_fillmode.py rename to plotly/validators/funnelarea/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_shape.py b/plotly/validators/funnelarea/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_shape.py rename to plotly/validators/funnelarea/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_shapesrc.py b/plotly/validators/funnelarea/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_shapesrc.py rename to plotly/validators/funnelarea/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_size.py b/plotly/validators/funnelarea/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_size.py rename to plotly/validators/funnelarea/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_sizesrc.py b/plotly/validators/funnelarea/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_sizesrc.py rename to plotly/validators/funnelarea/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_solidity.py b/plotly/validators/funnelarea/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_solidity.py rename to plotly/validators/funnelarea/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_soliditysrc.py b/plotly/validators/funnelarea/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/marker/pattern/_soliditysrc.py rename to plotly/validators/funnelarea/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/stream/__init__.py b/plotly/validators/funnelarea/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/stream/__init__.py rename to plotly/validators/funnelarea/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/stream/_maxpoints.py b/plotly/validators/funnelarea/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/stream/_maxpoints.py rename to plotly/validators/funnelarea/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/stream/_token.py b/plotly/validators/funnelarea/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/stream/_token.py rename to plotly/validators/funnelarea/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/__init__.py b/plotly/validators/funnelarea/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/__init__.py rename to plotly/validators/funnelarea/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_color.py b/plotly/validators/funnelarea/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_color.py rename to plotly/validators/funnelarea/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_colorsrc.py b/plotly/validators/funnelarea/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_colorsrc.py rename to plotly/validators/funnelarea/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_family.py b/plotly/validators/funnelarea/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_family.py rename to plotly/validators/funnelarea/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_familysrc.py b/plotly/validators/funnelarea/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_familysrc.py rename to plotly/validators/funnelarea/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_lineposition.py b/plotly/validators/funnelarea/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_lineposition.py rename to plotly/validators/funnelarea/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_linepositionsrc.py b/plotly/validators/funnelarea/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_linepositionsrc.py rename to plotly/validators/funnelarea/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_shadow.py b/plotly/validators/funnelarea/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_shadow.py rename to plotly/validators/funnelarea/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_shadowsrc.py b/plotly/validators/funnelarea/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_shadowsrc.py rename to plotly/validators/funnelarea/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_size.py b/plotly/validators/funnelarea/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_size.py rename to plotly/validators/funnelarea/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_sizesrc.py b/plotly/validators/funnelarea/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_sizesrc.py rename to plotly/validators/funnelarea/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_style.py b/plotly/validators/funnelarea/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_style.py rename to plotly/validators/funnelarea/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_stylesrc.py b/plotly/validators/funnelarea/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_stylesrc.py rename to plotly/validators/funnelarea/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_textcase.py b/plotly/validators/funnelarea/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_textcase.py rename to plotly/validators/funnelarea/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_textcasesrc.py b/plotly/validators/funnelarea/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_textcasesrc.py rename to plotly/validators/funnelarea/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_variant.py b/plotly/validators/funnelarea/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_variant.py rename to plotly/validators/funnelarea/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_variantsrc.py b/plotly/validators/funnelarea/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_variantsrc.py rename to plotly/validators/funnelarea/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_weight.py b/plotly/validators/funnelarea/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_weight.py rename to plotly/validators/funnelarea/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/textfont/_weightsrc.py b/plotly/validators/funnelarea/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/textfont/_weightsrc.py rename to plotly/validators/funnelarea/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/__init__.py b/plotly/validators/funnelarea/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/__init__.py rename to plotly/validators/funnelarea/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/_font.py b/plotly/validators/funnelarea/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/_font.py rename to plotly/validators/funnelarea/title/_font.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/_position.py b/plotly/validators/funnelarea/title/_position.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/_position.py rename to plotly/validators/funnelarea/title/_position.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/_text.py b/plotly/validators/funnelarea/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/_text.py rename to plotly/validators/funnelarea/title/_text.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/__init__.py b/plotly/validators/funnelarea/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/__init__.py rename to plotly/validators/funnelarea/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_color.py b/plotly/validators/funnelarea/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_color.py rename to plotly/validators/funnelarea/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_colorsrc.py b/plotly/validators/funnelarea/title/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_colorsrc.py rename to plotly/validators/funnelarea/title/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_family.py b/plotly/validators/funnelarea/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_family.py rename to plotly/validators/funnelarea/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_familysrc.py b/plotly/validators/funnelarea/title/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_familysrc.py rename to plotly/validators/funnelarea/title/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_lineposition.py b/plotly/validators/funnelarea/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_lineposition.py rename to plotly/validators/funnelarea/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_linepositionsrc.py b/plotly/validators/funnelarea/title/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_linepositionsrc.py rename to plotly/validators/funnelarea/title/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_shadow.py b/plotly/validators/funnelarea/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_shadow.py rename to plotly/validators/funnelarea/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_shadowsrc.py b/plotly/validators/funnelarea/title/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_shadowsrc.py rename to plotly/validators/funnelarea/title/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_size.py b/plotly/validators/funnelarea/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_size.py rename to plotly/validators/funnelarea/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_sizesrc.py b/plotly/validators/funnelarea/title/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_sizesrc.py rename to plotly/validators/funnelarea/title/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_style.py b/plotly/validators/funnelarea/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_style.py rename to plotly/validators/funnelarea/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_stylesrc.py b/plotly/validators/funnelarea/title/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_stylesrc.py rename to plotly/validators/funnelarea/title/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_textcase.py b/plotly/validators/funnelarea/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_textcase.py rename to plotly/validators/funnelarea/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_textcasesrc.py b/plotly/validators/funnelarea/title/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_textcasesrc.py rename to plotly/validators/funnelarea/title/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_variant.py b/plotly/validators/funnelarea/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_variant.py rename to plotly/validators/funnelarea/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_variantsrc.py b/plotly/validators/funnelarea/title/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_variantsrc.py rename to plotly/validators/funnelarea/title/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_weight.py b/plotly/validators/funnelarea/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_weight.py rename to plotly/validators/funnelarea/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/funnelarea/title/font/_weightsrc.py b/plotly/validators/funnelarea/title/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/funnelarea/title/font/_weightsrc.py rename to plotly/validators/funnelarea/title/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/__init__.py b/plotly/validators/heatmap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/__init__.py rename to plotly/validators/heatmap/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_autocolorscale.py b/plotly/validators/heatmap/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_autocolorscale.py rename to plotly/validators/heatmap/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_coloraxis.py b/plotly/validators/heatmap/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_coloraxis.py rename to plotly/validators/heatmap/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_colorbar.py b/plotly/validators/heatmap/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_colorbar.py rename to plotly/validators/heatmap/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_colorscale.py b/plotly/validators/heatmap/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_colorscale.py rename to plotly/validators/heatmap/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_connectgaps.py b/plotly/validators/heatmap/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_connectgaps.py rename to plotly/validators/heatmap/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_customdata.py b/plotly/validators/heatmap/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_customdata.py rename to plotly/validators/heatmap/_customdata.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_customdatasrc.py b/plotly/validators/heatmap/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_customdatasrc.py rename to plotly/validators/heatmap/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_dx.py b/plotly/validators/heatmap/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_dx.py rename to plotly/validators/heatmap/_dx.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_dy.py b/plotly/validators/heatmap/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_dy.py rename to plotly/validators/heatmap/_dy.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hoverinfo.py b/plotly/validators/heatmap/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hoverinfo.py rename to plotly/validators/heatmap/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hoverinfosrc.py b/plotly/validators/heatmap/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hoverinfosrc.py rename to plotly/validators/heatmap/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hoverlabel.py b/plotly/validators/heatmap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hoverlabel.py rename to plotly/validators/heatmap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hoverongaps.py b/plotly/validators/heatmap/_hoverongaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hoverongaps.py rename to plotly/validators/heatmap/_hoverongaps.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hovertemplate.py b/plotly/validators/heatmap/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hovertemplate.py rename to plotly/validators/heatmap/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hovertemplatesrc.py b/plotly/validators/heatmap/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hovertemplatesrc.py rename to plotly/validators/heatmap/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hovertext.py b/plotly/validators/heatmap/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hovertext.py rename to plotly/validators/heatmap/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_hovertextsrc.py b/plotly/validators/heatmap/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_hovertextsrc.py rename to plotly/validators/heatmap/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_ids.py b/plotly/validators/heatmap/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_ids.py rename to plotly/validators/heatmap/_ids.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_idssrc.py b/plotly/validators/heatmap/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_idssrc.py rename to plotly/validators/heatmap/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_legend.py b/plotly/validators/heatmap/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_legend.py rename to plotly/validators/heatmap/_legend.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_legendgroup.py b/plotly/validators/heatmap/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_legendgroup.py rename to plotly/validators/heatmap/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_legendgrouptitle.py b/plotly/validators/heatmap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_legendgrouptitle.py rename to plotly/validators/heatmap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_legendrank.py b/plotly/validators/heatmap/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_legendrank.py rename to plotly/validators/heatmap/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_legendwidth.py b/plotly/validators/heatmap/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_legendwidth.py rename to plotly/validators/heatmap/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_meta.py b/plotly/validators/heatmap/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_meta.py rename to plotly/validators/heatmap/_meta.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_metasrc.py b/plotly/validators/heatmap/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_metasrc.py rename to plotly/validators/heatmap/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_name.py b/plotly/validators/heatmap/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_name.py rename to plotly/validators/heatmap/_name.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_opacity.py b/plotly/validators/heatmap/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_opacity.py rename to plotly/validators/heatmap/_opacity.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_reversescale.py b/plotly/validators/heatmap/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_reversescale.py rename to plotly/validators/heatmap/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_showlegend.py b/plotly/validators/heatmap/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_showlegend.py rename to plotly/validators/heatmap/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_showscale.py b/plotly/validators/heatmap/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_showscale.py rename to plotly/validators/heatmap/_showscale.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_stream.py b/plotly/validators/heatmap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_stream.py rename to plotly/validators/heatmap/_stream.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_text.py b/plotly/validators/heatmap/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_text.py rename to plotly/validators/heatmap/_text.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_textfont.py b/plotly/validators/heatmap/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_textfont.py rename to plotly/validators/heatmap/_textfont.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_textsrc.py b/plotly/validators/heatmap/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_textsrc.py rename to plotly/validators/heatmap/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_texttemplate.py b/plotly/validators/heatmap/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_texttemplate.py rename to plotly/validators/heatmap/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_transpose.py b/plotly/validators/heatmap/_transpose.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_transpose.py rename to plotly/validators/heatmap/_transpose.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_uid.py b/plotly/validators/heatmap/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_uid.py rename to plotly/validators/heatmap/_uid.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_uirevision.py b/plotly/validators/heatmap/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_uirevision.py rename to plotly/validators/heatmap/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_visible.py b/plotly/validators/heatmap/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_visible.py rename to plotly/validators/heatmap/_visible.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_x.py b/plotly/validators/heatmap/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_x.py rename to plotly/validators/heatmap/_x.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_x0.py b/plotly/validators/heatmap/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_x0.py rename to plotly/validators/heatmap/_x0.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xaxis.py b/plotly/validators/heatmap/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xaxis.py rename to plotly/validators/heatmap/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xcalendar.py b/plotly/validators/heatmap/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xcalendar.py rename to plotly/validators/heatmap/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xgap.py b/plotly/validators/heatmap/_xgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xgap.py rename to plotly/validators/heatmap/_xgap.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xhoverformat.py b/plotly/validators/heatmap/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xhoverformat.py rename to plotly/validators/heatmap/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xperiod.py b/plotly/validators/heatmap/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xperiod.py rename to plotly/validators/heatmap/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xperiod0.py b/plotly/validators/heatmap/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xperiod0.py rename to plotly/validators/heatmap/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xperiodalignment.py b/plotly/validators/heatmap/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xperiodalignment.py rename to plotly/validators/heatmap/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xsrc.py b/plotly/validators/heatmap/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xsrc.py rename to plotly/validators/heatmap/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_xtype.py b/plotly/validators/heatmap/_xtype.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_xtype.py rename to plotly/validators/heatmap/_xtype.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_y.py b/plotly/validators/heatmap/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_y.py rename to plotly/validators/heatmap/_y.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_y0.py b/plotly/validators/heatmap/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_y0.py rename to plotly/validators/heatmap/_y0.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_yaxis.py b/plotly/validators/heatmap/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_yaxis.py rename to plotly/validators/heatmap/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_ycalendar.py b/plotly/validators/heatmap/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_ycalendar.py rename to plotly/validators/heatmap/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_ygap.py b/plotly/validators/heatmap/_ygap.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_ygap.py rename to plotly/validators/heatmap/_ygap.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_yhoverformat.py b/plotly/validators/heatmap/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_yhoverformat.py rename to plotly/validators/heatmap/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_yperiod.py b/plotly/validators/heatmap/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_yperiod.py rename to plotly/validators/heatmap/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_yperiod0.py b/plotly/validators/heatmap/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_yperiod0.py rename to plotly/validators/heatmap/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_yperiodalignment.py b/plotly/validators/heatmap/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_yperiodalignment.py rename to plotly/validators/heatmap/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_ysrc.py b/plotly/validators/heatmap/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_ysrc.py rename to plotly/validators/heatmap/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_ytype.py b/plotly/validators/heatmap/_ytype.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_ytype.py rename to plotly/validators/heatmap/_ytype.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_z.py b/plotly/validators/heatmap/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_z.py rename to plotly/validators/heatmap/_z.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zauto.py b/plotly/validators/heatmap/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zauto.py rename to plotly/validators/heatmap/_zauto.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zhoverformat.py b/plotly/validators/heatmap/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zhoverformat.py rename to plotly/validators/heatmap/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zmax.py b/plotly/validators/heatmap/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zmax.py rename to plotly/validators/heatmap/_zmax.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zmid.py b/plotly/validators/heatmap/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zmid.py rename to plotly/validators/heatmap/_zmid.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zmin.py b/plotly/validators/heatmap/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zmin.py rename to plotly/validators/heatmap/_zmin.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zorder.py b/plotly/validators/heatmap/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zorder.py rename to plotly/validators/heatmap/_zorder.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zsmooth.py b/plotly/validators/heatmap/_zsmooth.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zsmooth.py rename to plotly/validators/heatmap/_zsmooth.py diff --git a/packages/python/plotly/plotly/validators/heatmap/_zsrc.py b/plotly/validators/heatmap/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/_zsrc.py rename to plotly/validators/heatmap/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/__init__.py b/plotly/validators/heatmap/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/__init__.py rename to plotly/validators/heatmap/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_bgcolor.py b/plotly/validators/heatmap/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_bgcolor.py rename to plotly/validators/heatmap/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_bordercolor.py b/plotly/validators/heatmap/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_bordercolor.py rename to plotly/validators/heatmap/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_borderwidth.py b/plotly/validators/heatmap/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_borderwidth.py rename to plotly/validators/heatmap/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_dtick.py b/plotly/validators/heatmap/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_dtick.py rename to plotly/validators/heatmap/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_exponentformat.py b/plotly/validators/heatmap/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_exponentformat.py rename to plotly/validators/heatmap/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_labelalias.py b/plotly/validators/heatmap/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_labelalias.py rename to plotly/validators/heatmap/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_len.py b/plotly/validators/heatmap/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_len.py rename to plotly/validators/heatmap/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_lenmode.py b/plotly/validators/heatmap/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_lenmode.py rename to plotly/validators/heatmap/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_minexponent.py b/plotly/validators/heatmap/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_minexponent.py rename to plotly/validators/heatmap/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_nticks.py b/plotly/validators/heatmap/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_nticks.py rename to plotly/validators/heatmap/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_orientation.py b/plotly/validators/heatmap/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_orientation.py rename to plotly/validators/heatmap/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_outlinecolor.py b/plotly/validators/heatmap/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_outlinecolor.py rename to plotly/validators/heatmap/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_outlinewidth.py b/plotly/validators/heatmap/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_outlinewidth.py rename to plotly/validators/heatmap/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_separatethousands.py b/plotly/validators/heatmap/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_separatethousands.py rename to plotly/validators/heatmap/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_showexponent.py b/plotly/validators/heatmap/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_showexponent.py rename to plotly/validators/heatmap/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_showticklabels.py b/plotly/validators/heatmap/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_showticklabels.py rename to plotly/validators/heatmap/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_showtickprefix.py b/plotly/validators/heatmap/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_showtickprefix.py rename to plotly/validators/heatmap/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_showticksuffix.py b/plotly/validators/heatmap/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_showticksuffix.py rename to plotly/validators/heatmap/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_thickness.py b/plotly/validators/heatmap/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_thickness.py rename to plotly/validators/heatmap/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_thicknessmode.py b/plotly/validators/heatmap/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_thicknessmode.py rename to plotly/validators/heatmap/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tick0.py b/plotly/validators/heatmap/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tick0.py rename to plotly/validators/heatmap/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickangle.py b/plotly/validators/heatmap/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickangle.py rename to plotly/validators/heatmap/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickcolor.py b/plotly/validators/heatmap/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickcolor.py rename to plotly/validators/heatmap/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickfont.py b/plotly/validators/heatmap/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickfont.py rename to plotly/validators/heatmap/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickformat.py b/plotly/validators/heatmap/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickformat.py rename to plotly/validators/heatmap/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py b/plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py rename to plotly/validators/heatmap/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickformatstops.py b/plotly/validators/heatmap/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickformatstops.py rename to plotly/validators/heatmap/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklabeloverflow.py b/plotly/validators/heatmap/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklabeloverflow.py rename to plotly/validators/heatmap/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklabelposition.py b/plotly/validators/heatmap/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklabelposition.py rename to plotly/validators/heatmap/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklabelstep.py b/plotly/validators/heatmap/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklabelstep.py rename to plotly/validators/heatmap/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklen.py b/plotly/validators/heatmap/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticklen.py rename to plotly/validators/heatmap/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickmode.py b/plotly/validators/heatmap/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickmode.py rename to plotly/validators/heatmap/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickprefix.py b/plotly/validators/heatmap/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickprefix.py rename to plotly/validators/heatmap/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticks.py b/plotly/validators/heatmap/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticks.py rename to plotly/validators/heatmap/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticksuffix.py b/plotly/validators/heatmap/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticksuffix.py rename to plotly/validators/heatmap/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticktext.py b/plotly/validators/heatmap/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticktext.py rename to plotly/validators/heatmap/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ticktextsrc.py b/plotly/validators/heatmap/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ticktextsrc.py rename to plotly/validators/heatmap/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickvals.py b/plotly/validators/heatmap/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickvals.py rename to plotly/validators/heatmap/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickvalssrc.py b/plotly/validators/heatmap/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickvalssrc.py rename to plotly/validators/heatmap/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_tickwidth.py b/plotly/validators/heatmap/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_tickwidth.py rename to plotly/validators/heatmap/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_title.py b/plotly/validators/heatmap/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_title.py rename to plotly/validators/heatmap/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_x.py b/plotly/validators/heatmap/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_x.py rename to plotly/validators/heatmap/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_xanchor.py b/plotly/validators/heatmap/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_xanchor.py rename to plotly/validators/heatmap/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_xpad.py b/plotly/validators/heatmap/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_xpad.py rename to plotly/validators/heatmap/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_xref.py b/plotly/validators/heatmap/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_xref.py rename to plotly/validators/heatmap/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_y.py b/plotly/validators/heatmap/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_y.py rename to plotly/validators/heatmap/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_yanchor.py b/plotly/validators/heatmap/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_yanchor.py rename to plotly/validators/heatmap/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_ypad.py b/plotly/validators/heatmap/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_ypad.py rename to plotly/validators/heatmap/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/_yref.py b/plotly/validators/heatmap/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/_yref.py rename to plotly/validators/heatmap/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/__init__.py b/plotly/validators/heatmap/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/__init__.py rename to plotly/validators/heatmap/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_color.py b/plotly/validators/heatmap/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_color.py rename to plotly/validators/heatmap/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_family.py b/plotly/validators/heatmap/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_family.py rename to plotly/validators/heatmap/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_lineposition.py b/plotly/validators/heatmap/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_lineposition.py rename to plotly/validators/heatmap/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_shadow.py b/plotly/validators/heatmap/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_shadow.py rename to plotly/validators/heatmap/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_size.py b/plotly/validators/heatmap/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_size.py rename to plotly/validators/heatmap/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_style.py b/plotly/validators/heatmap/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_style.py rename to plotly/validators/heatmap/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_textcase.py b/plotly/validators/heatmap/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_textcase.py rename to plotly/validators/heatmap/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_variant.py b/plotly/validators/heatmap/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_variant.py rename to plotly/validators/heatmap/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_weight.py b/plotly/validators/heatmap/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickfont/_weight.py rename to plotly/validators/heatmap/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/__init__.py b/plotly/validators/heatmap/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/__init__.py rename to plotly/validators/heatmap/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/heatmap/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/heatmap/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_enabled.py b/plotly/validators/heatmap/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_enabled.py rename to plotly/validators/heatmap/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_name.py b/plotly/validators/heatmap/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_name.py rename to plotly/validators/heatmap/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/heatmap/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/heatmap/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_value.py b/plotly/validators/heatmap/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/tickformatstop/_value.py rename to plotly/validators/heatmap/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/__init__.py b/plotly/validators/heatmap/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/__init__.py rename to plotly/validators/heatmap/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/_font.py b/plotly/validators/heatmap/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/_font.py rename to plotly/validators/heatmap/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/_side.py b/plotly/validators/heatmap/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/_side.py rename to plotly/validators/heatmap/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/_text.py b/plotly/validators/heatmap/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/_text.py rename to plotly/validators/heatmap/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/__init__.py b/plotly/validators/heatmap/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/__init__.py rename to plotly/validators/heatmap/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_color.py b/plotly/validators/heatmap/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_color.py rename to plotly/validators/heatmap/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_family.py b/plotly/validators/heatmap/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_family.py rename to plotly/validators/heatmap/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_lineposition.py b/plotly/validators/heatmap/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_lineposition.py rename to plotly/validators/heatmap/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_shadow.py b/plotly/validators/heatmap/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_shadow.py rename to plotly/validators/heatmap/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_size.py b/plotly/validators/heatmap/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_size.py rename to plotly/validators/heatmap/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_style.py b/plotly/validators/heatmap/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_style.py rename to plotly/validators/heatmap/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_textcase.py b/plotly/validators/heatmap/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_textcase.py rename to plotly/validators/heatmap/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_variant.py b/plotly/validators/heatmap/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_variant.py rename to plotly/validators/heatmap/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_weight.py b/plotly/validators/heatmap/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/colorbar/title/font/_weight.py rename to plotly/validators/heatmap/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/__init__.py b/plotly/validators/heatmap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/__init__.py rename to plotly/validators/heatmap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_align.py b/plotly/validators/heatmap/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_align.py rename to plotly/validators/heatmap/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_alignsrc.py b/plotly/validators/heatmap/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_alignsrc.py rename to plotly/validators/heatmap/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bgcolor.py b/plotly/validators/heatmap/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bgcolor.py rename to plotly/validators/heatmap/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bgcolorsrc.py b/plotly/validators/heatmap/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bgcolorsrc.py rename to plotly/validators/heatmap/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bordercolor.py b/plotly/validators/heatmap/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bordercolor.py rename to plotly/validators/heatmap/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bordercolorsrc.py b/plotly/validators/heatmap/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_bordercolorsrc.py rename to plotly/validators/heatmap/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_font.py b/plotly/validators/heatmap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_font.py rename to plotly/validators/heatmap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_namelength.py b/plotly/validators/heatmap/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_namelength.py rename to plotly/validators/heatmap/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/_namelengthsrc.py b/plotly/validators/heatmap/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/_namelengthsrc.py rename to plotly/validators/heatmap/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/__init__.py b/plotly/validators/heatmap/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/__init__.py rename to plotly/validators/heatmap/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_color.py b/plotly/validators/heatmap/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_color.py rename to plotly/validators/heatmap/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_colorsrc.py b/plotly/validators/heatmap/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_colorsrc.py rename to plotly/validators/heatmap/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_family.py b/plotly/validators/heatmap/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_family.py rename to plotly/validators/heatmap/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_familysrc.py b/plotly/validators/heatmap/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_familysrc.py rename to plotly/validators/heatmap/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_lineposition.py b/plotly/validators/heatmap/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_lineposition.py rename to plotly/validators/heatmap/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_linepositionsrc.py b/plotly/validators/heatmap/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/heatmap/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_shadow.py b/plotly/validators/heatmap/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_shadow.py rename to plotly/validators/heatmap/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_shadowsrc.py b/plotly/validators/heatmap/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_shadowsrc.py rename to plotly/validators/heatmap/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_size.py b/plotly/validators/heatmap/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_size.py rename to plotly/validators/heatmap/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_sizesrc.py b/plotly/validators/heatmap/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_sizesrc.py rename to plotly/validators/heatmap/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_style.py b/plotly/validators/heatmap/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_style.py rename to plotly/validators/heatmap/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_stylesrc.py b/plotly/validators/heatmap/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_stylesrc.py rename to plotly/validators/heatmap/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_textcase.py b/plotly/validators/heatmap/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_textcase.py rename to plotly/validators/heatmap/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_textcasesrc.py b/plotly/validators/heatmap/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_textcasesrc.py rename to plotly/validators/heatmap/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_variant.py b/plotly/validators/heatmap/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_variant.py rename to plotly/validators/heatmap/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_variantsrc.py b/plotly/validators/heatmap/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_variantsrc.py rename to plotly/validators/heatmap/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_weight.py b/plotly/validators/heatmap/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_weight.py rename to plotly/validators/heatmap/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_weightsrc.py b/plotly/validators/heatmap/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/hoverlabel/font/_weightsrc.py rename to plotly/validators/heatmap/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/__init__.py b/plotly/validators/heatmap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/__init__.py rename to plotly/validators/heatmap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/_font.py b/plotly/validators/heatmap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/_font.py rename to plotly/validators/heatmap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/_text.py b/plotly/validators/heatmap/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/_text.py rename to plotly/validators/heatmap/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/__init__.py b/plotly/validators/heatmap/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/__init__.py rename to plotly/validators/heatmap/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_color.py b/plotly/validators/heatmap/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_color.py rename to plotly/validators/heatmap/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_family.py b/plotly/validators/heatmap/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_family.py rename to plotly/validators/heatmap/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_lineposition.py b/plotly/validators/heatmap/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_lineposition.py rename to plotly/validators/heatmap/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_shadow.py b/plotly/validators/heatmap/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_shadow.py rename to plotly/validators/heatmap/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_size.py b/plotly/validators/heatmap/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_size.py rename to plotly/validators/heatmap/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_style.py b/plotly/validators/heatmap/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_style.py rename to plotly/validators/heatmap/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_textcase.py b/plotly/validators/heatmap/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_textcase.py rename to plotly/validators/heatmap/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_variant.py b/plotly/validators/heatmap/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_variant.py rename to plotly/validators/heatmap/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_weight.py b/plotly/validators/heatmap/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/legendgrouptitle/font/_weight.py rename to plotly/validators/heatmap/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/heatmap/stream/__init__.py b/plotly/validators/heatmap/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/stream/__init__.py rename to plotly/validators/heatmap/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/stream/_maxpoints.py b/plotly/validators/heatmap/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/stream/_maxpoints.py rename to plotly/validators/heatmap/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/heatmap/stream/_token.py b/plotly/validators/heatmap/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/stream/_token.py rename to plotly/validators/heatmap/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/__init__.py b/plotly/validators/heatmap/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/__init__.py rename to plotly/validators/heatmap/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_color.py b/plotly/validators/heatmap/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_color.py rename to plotly/validators/heatmap/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_family.py b/plotly/validators/heatmap/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_family.py rename to plotly/validators/heatmap/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_lineposition.py b/plotly/validators/heatmap/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_lineposition.py rename to plotly/validators/heatmap/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_shadow.py b/plotly/validators/heatmap/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_shadow.py rename to plotly/validators/heatmap/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_size.py b/plotly/validators/heatmap/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_size.py rename to plotly/validators/heatmap/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_style.py b/plotly/validators/heatmap/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_style.py rename to plotly/validators/heatmap/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_textcase.py b/plotly/validators/heatmap/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_textcase.py rename to plotly/validators/heatmap/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_variant.py b/plotly/validators/heatmap/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_variant.py rename to plotly/validators/heatmap/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/heatmap/textfont/_weight.py b/plotly/validators/heatmap/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/heatmap/textfont/_weight.py rename to plotly/validators/heatmap/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/__init__.py b/plotly/validators/histogram/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/__init__.py rename to plotly/validators/histogram/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/_alignmentgroup.py b/plotly/validators/histogram/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_alignmentgroup.py rename to plotly/validators/histogram/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/histogram/_autobinx.py b/plotly/validators/histogram/_autobinx.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_autobinx.py rename to plotly/validators/histogram/_autobinx.py diff --git a/packages/python/plotly/plotly/validators/histogram/_autobiny.py b/plotly/validators/histogram/_autobiny.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_autobiny.py rename to plotly/validators/histogram/_autobiny.py diff --git a/packages/python/plotly/plotly/validators/histogram/_bingroup.py b/plotly/validators/histogram/_bingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_bingroup.py rename to plotly/validators/histogram/_bingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram/_cliponaxis.py b/plotly/validators/histogram/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_cliponaxis.py rename to plotly/validators/histogram/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram/_constraintext.py b/plotly/validators/histogram/_constraintext.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_constraintext.py rename to plotly/validators/histogram/_constraintext.py diff --git a/packages/python/plotly/plotly/validators/histogram/_cumulative.py b/plotly/validators/histogram/_cumulative.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_cumulative.py rename to plotly/validators/histogram/_cumulative.py diff --git a/packages/python/plotly/plotly/validators/histogram/_customdata.py b/plotly/validators/histogram/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_customdata.py rename to plotly/validators/histogram/_customdata.py diff --git a/packages/python/plotly/plotly/validators/histogram/_customdatasrc.py b/plotly/validators/histogram/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_customdatasrc.py rename to plotly/validators/histogram/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_error_x.py b/plotly/validators/histogram/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_error_x.py rename to plotly/validators/histogram/_error_x.py diff --git a/packages/python/plotly/plotly/validators/histogram/_error_y.py b/plotly/validators/histogram/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_error_y.py rename to plotly/validators/histogram/_error_y.py diff --git a/packages/python/plotly/plotly/validators/histogram/_histfunc.py b/plotly/validators/histogram/_histfunc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_histfunc.py rename to plotly/validators/histogram/_histfunc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_histnorm.py b/plotly/validators/histogram/_histnorm.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_histnorm.py rename to plotly/validators/histogram/_histnorm.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hoverinfo.py b/plotly/validators/histogram/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hoverinfo.py rename to plotly/validators/histogram/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hoverinfosrc.py b/plotly/validators/histogram/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hoverinfosrc.py rename to plotly/validators/histogram/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hoverlabel.py b/plotly/validators/histogram/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hoverlabel.py rename to plotly/validators/histogram/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hovertemplate.py b/plotly/validators/histogram/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hovertemplate.py rename to plotly/validators/histogram/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hovertemplatesrc.py b/plotly/validators/histogram/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hovertemplatesrc.py rename to plotly/validators/histogram/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hovertext.py b/plotly/validators/histogram/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hovertext.py rename to plotly/validators/histogram/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/histogram/_hovertextsrc.py b/plotly/validators/histogram/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_hovertextsrc.py rename to plotly/validators/histogram/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_ids.py b/plotly/validators/histogram/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_ids.py rename to plotly/validators/histogram/_ids.py diff --git a/packages/python/plotly/plotly/validators/histogram/_idssrc.py b/plotly/validators/histogram/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_idssrc.py rename to plotly/validators/histogram/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_insidetextanchor.py b/plotly/validators/histogram/_insidetextanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_insidetextanchor.py rename to plotly/validators/histogram/_insidetextanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram/_insidetextfont.py b/plotly/validators/histogram/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_insidetextfont.py rename to plotly/validators/histogram/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/histogram/_legend.py b/plotly/validators/histogram/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_legend.py rename to plotly/validators/histogram/_legend.py diff --git a/packages/python/plotly/plotly/validators/histogram/_legendgroup.py b/plotly/validators/histogram/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_legendgroup.py rename to plotly/validators/histogram/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/histogram/_legendgrouptitle.py b/plotly/validators/histogram/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_legendgrouptitle.py rename to plotly/validators/histogram/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/histogram/_legendrank.py b/plotly/validators/histogram/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_legendrank.py rename to plotly/validators/histogram/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/histogram/_legendwidth.py b/plotly/validators/histogram/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_legendwidth.py rename to plotly/validators/histogram/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram/_marker.py b/plotly/validators/histogram/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_marker.py rename to plotly/validators/histogram/_marker.py diff --git a/packages/python/plotly/plotly/validators/histogram/_meta.py b/plotly/validators/histogram/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_meta.py rename to plotly/validators/histogram/_meta.py diff --git a/packages/python/plotly/plotly/validators/histogram/_metasrc.py b/plotly/validators/histogram/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_metasrc.py rename to plotly/validators/histogram/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_name.py b/plotly/validators/histogram/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_name.py rename to plotly/validators/histogram/_name.py diff --git a/packages/python/plotly/plotly/validators/histogram/_nbinsx.py b/plotly/validators/histogram/_nbinsx.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_nbinsx.py rename to plotly/validators/histogram/_nbinsx.py diff --git a/packages/python/plotly/plotly/validators/histogram/_nbinsy.py b/plotly/validators/histogram/_nbinsy.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_nbinsy.py rename to plotly/validators/histogram/_nbinsy.py diff --git a/packages/python/plotly/plotly/validators/histogram/_offsetgroup.py b/plotly/validators/histogram/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_offsetgroup.py rename to plotly/validators/histogram/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/histogram/_opacity.py b/plotly/validators/histogram/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_opacity.py rename to plotly/validators/histogram/_opacity.py diff --git a/packages/python/plotly/plotly/validators/histogram/_orientation.py b/plotly/validators/histogram/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_orientation.py rename to plotly/validators/histogram/_orientation.py diff --git a/packages/python/plotly/plotly/validators/histogram/_outsidetextfont.py b/plotly/validators/histogram/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_outsidetextfont.py rename to plotly/validators/histogram/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/histogram/_selected.py b/plotly/validators/histogram/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_selected.py rename to plotly/validators/histogram/_selected.py diff --git a/packages/python/plotly/plotly/validators/histogram/_selectedpoints.py b/plotly/validators/histogram/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_selectedpoints.py rename to plotly/validators/histogram/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/histogram/_showlegend.py b/plotly/validators/histogram/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_showlegend.py rename to plotly/validators/histogram/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/histogram/_stream.py b/plotly/validators/histogram/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_stream.py rename to plotly/validators/histogram/_stream.py diff --git a/packages/python/plotly/plotly/validators/histogram/_text.py b/plotly/validators/histogram/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_text.py rename to plotly/validators/histogram/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram/_textangle.py b/plotly/validators/histogram/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_textangle.py rename to plotly/validators/histogram/_textangle.py diff --git a/packages/python/plotly/plotly/validators/histogram/_textfont.py b/plotly/validators/histogram/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_textfont.py rename to plotly/validators/histogram/_textfont.py diff --git a/packages/python/plotly/plotly/validators/histogram/_textposition.py b/plotly/validators/histogram/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_textposition.py rename to plotly/validators/histogram/_textposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/_textsrc.py b/plotly/validators/histogram/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_textsrc.py rename to plotly/validators/histogram/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_texttemplate.py b/plotly/validators/histogram/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_texttemplate.py rename to plotly/validators/histogram/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/histogram/_uid.py b/plotly/validators/histogram/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_uid.py rename to plotly/validators/histogram/_uid.py diff --git a/packages/python/plotly/plotly/validators/histogram/_uirevision.py b/plotly/validators/histogram/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_uirevision.py rename to plotly/validators/histogram/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/histogram/_unselected.py b/plotly/validators/histogram/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_unselected.py rename to plotly/validators/histogram/_unselected.py diff --git a/packages/python/plotly/plotly/validators/histogram/_visible.py b/plotly/validators/histogram/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_visible.py rename to plotly/validators/histogram/_visible.py diff --git a/packages/python/plotly/plotly/validators/histogram/_x.py b/plotly/validators/histogram/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_x.py rename to plotly/validators/histogram/_x.py diff --git a/packages/python/plotly/plotly/validators/histogram/_xaxis.py b/plotly/validators/histogram/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_xaxis.py rename to plotly/validators/histogram/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram/_xbins.py b/plotly/validators/histogram/_xbins.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_xbins.py rename to plotly/validators/histogram/_xbins.py diff --git a/packages/python/plotly/plotly/validators/histogram/_xcalendar.py b/plotly/validators/histogram/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_xcalendar.py rename to plotly/validators/histogram/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/histogram/_xhoverformat.py b/plotly/validators/histogram/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_xhoverformat.py rename to plotly/validators/histogram/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram/_xsrc.py b/plotly/validators/histogram/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_xsrc.py rename to plotly/validators/histogram/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_y.py b/plotly/validators/histogram/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_y.py rename to plotly/validators/histogram/_y.py diff --git a/packages/python/plotly/plotly/validators/histogram/_yaxis.py b/plotly/validators/histogram/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_yaxis.py rename to plotly/validators/histogram/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram/_ybins.py b/plotly/validators/histogram/_ybins.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_ybins.py rename to plotly/validators/histogram/_ybins.py diff --git a/packages/python/plotly/plotly/validators/histogram/_ycalendar.py b/plotly/validators/histogram/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_ycalendar.py rename to plotly/validators/histogram/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/histogram/_yhoverformat.py b/plotly/validators/histogram/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_yhoverformat.py rename to plotly/validators/histogram/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram/_ysrc.py b/plotly/validators/histogram/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_ysrc.py rename to plotly/validators/histogram/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/_zorder.py b/plotly/validators/histogram/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/_zorder.py rename to plotly/validators/histogram/_zorder.py diff --git a/packages/python/plotly/plotly/validators/histogram/cumulative/__init__.py b/plotly/validators/histogram/cumulative/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/cumulative/__init__.py rename to plotly/validators/histogram/cumulative/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/cumulative/_currentbin.py b/plotly/validators/histogram/cumulative/_currentbin.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/cumulative/_currentbin.py rename to plotly/validators/histogram/cumulative/_currentbin.py diff --git a/packages/python/plotly/plotly/validators/histogram/cumulative/_direction.py b/plotly/validators/histogram/cumulative/_direction.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/cumulative/_direction.py rename to plotly/validators/histogram/cumulative/_direction.py diff --git a/packages/python/plotly/plotly/validators/histogram/cumulative/_enabled.py b/plotly/validators/histogram/cumulative/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/cumulative/_enabled.py rename to plotly/validators/histogram/cumulative/_enabled.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/__init__.py b/plotly/validators/histogram/error_x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/__init__.py rename to plotly/validators/histogram/error_x/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_array.py b/plotly/validators/histogram/error_x/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_array.py rename to plotly/validators/histogram/error_x/_array.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_arrayminus.py b/plotly/validators/histogram/error_x/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_arrayminus.py rename to plotly/validators/histogram/error_x/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_arrayminussrc.py b/plotly/validators/histogram/error_x/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_arrayminussrc.py rename to plotly/validators/histogram/error_x/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_arraysrc.py b/plotly/validators/histogram/error_x/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_arraysrc.py rename to plotly/validators/histogram/error_x/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_color.py b/plotly/validators/histogram/error_x/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_color.py rename to plotly/validators/histogram/error_x/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_copy_ystyle.py b/plotly/validators/histogram/error_x/_copy_ystyle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_copy_ystyle.py rename to plotly/validators/histogram/error_x/_copy_ystyle.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_symmetric.py b/plotly/validators/histogram/error_x/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_symmetric.py rename to plotly/validators/histogram/error_x/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_thickness.py b/plotly/validators/histogram/error_x/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_thickness.py rename to plotly/validators/histogram/error_x/_thickness.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_traceref.py b/plotly/validators/histogram/error_x/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_traceref.py rename to plotly/validators/histogram/error_x/_traceref.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_tracerefminus.py b/plotly/validators/histogram/error_x/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_tracerefminus.py rename to plotly/validators/histogram/error_x/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_type.py b/plotly/validators/histogram/error_x/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_type.py rename to plotly/validators/histogram/error_x/_type.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_value.py b/plotly/validators/histogram/error_x/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_value.py rename to plotly/validators/histogram/error_x/_value.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_valueminus.py b/plotly/validators/histogram/error_x/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_valueminus.py rename to plotly/validators/histogram/error_x/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_visible.py b/plotly/validators/histogram/error_x/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_visible.py rename to plotly/validators/histogram/error_x/_visible.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_x/_width.py b/plotly/validators/histogram/error_x/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_x/_width.py rename to plotly/validators/histogram/error_x/_width.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/__init__.py b/plotly/validators/histogram/error_y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/__init__.py rename to plotly/validators/histogram/error_y/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_array.py b/plotly/validators/histogram/error_y/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_array.py rename to plotly/validators/histogram/error_y/_array.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_arrayminus.py b/plotly/validators/histogram/error_y/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_arrayminus.py rename to plotly/validators/histogram/error_y/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_arrayminussrc.py b/plotly/validators/histogram/error_y/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_arrayminussrc.py rename to plotly/validators/histogram/error_y/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_arraysrc.py b/plotly/validators/histogram/error_y/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_arraysrc.py rename to plotly/validators/histogram/error_y/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_color.py b/plotly/validators/histogram/error_y/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_color.py rename to plotly/validators/histogram/error_y/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_symmetric.py b/plotly/validators/histogram/error_y/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_symmetric.py rename to plotly/validators/histogram/error_y/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_thickness.py b/plotly/validators/histogram/error_y/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_thickness.py rename to plotly/validators/histogram/error_y/_thickness.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_traceref.py b/plotly/validators/histogram/error_y/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_traceref.py rename to plotly/validators/histogram/error_y/_traceref.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_tracerefminus.py b/plotly/validators/histogram/error_y/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_tracerefminus.py rename to plotly/validators/histogram/error_y/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_type.py b/plotly/validators/histogram/error_y/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_type.py rename to plotly/validators/histogram/error_y/_type.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_value.py b/plotly/validators/histogram/error_y/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_value.py rename to plotly/validators/histogram/error_y/_value.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_valueminus.py b/plotly/validators/histogram/error_y/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_valueminus.py rename to plotly/validators/histogram/error_y/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_visible.py b/plotly/validators/histogram/error_y/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_visible.py rename to plotly/validators/histogram/error_y/_visible.py diff --git a/packages/python/plotly/plotly/validators/histogram/error_y/_width.py b/plotly/validators/histogram/error_y/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/error_y/_width.py rename to plotly/validators/histogram/error_y/_width.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/__init__.py b/plotly/validators/histogram/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/__init__.py rename to plotly/validators/histogram/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_align.py b/plotly/validators/histogram/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_align.py rename to plotly/validators/histogram/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_alignsrc.py b/plotly/validators/histogram/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_alignsrc.py rename to plotly/validators/histogram/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_bgcolor.py b/plotly/validators/histogram/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_bgcolor.py rename to plotly/validators/histogram/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_bgcolorsrc.py b/plotly/validators/histogram/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_bgcolorsrc.py rename to plotly/validators/histogram/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_bordercolor.py b/plotly/validators/histogram/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_bordercolor.py rename to plotly/validators/histogram/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_bordercolorsrc.py b/plotly/validators/histogram/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_bordercolorsrc.py rename to plotly/validators/histogram/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_font.py b/plotly/validators/histogram/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_font.py rename to plotly/validators/histogram/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_namelength.py b/plotly/validators/histogram/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_namelength.py rename to plotly/validators/histogram/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/_namelengthsrc.py b/plotly/validators/histogram/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/_namelengthsrc.py rename to plotly/validators/histogram/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/__init__.py b/plotly/validators/histogram/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/__init__.py rename to plotly/validators/histogram/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_color.py b/plotly/validators/histogram/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_color.py rename to plotly/validators/histogram/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_colorsrc.py b/plotly/validators/histogram/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_colorsrc.py rename to plotly/validators/histogram/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_family.py b/plotly/validators/histogram/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_family.py rename to plotly/validators/histogram/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_familysrc.py b/plotly/validators/histogram/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_familysrc.py rename to plotly/validators/histogram/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_lineposition.py b/plotly/validators/histogram/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_lineposition.py rename to plotly/validators/histogram/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_linepositionsrc.py b/plotly/validators/histogram/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/histogram/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_shadow.py b/plotly/validators/histogram/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_shadow.py rename to plotly/validators/histogram/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_shadowsrc.py b/plotly/validators/histogram/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_shadowsrc.py rename to plotly/validators/histogram/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_size.py b/plotly/validators/histogram/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_size.py rename to plotly/validators/histogram/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_sizesrc.py b/plotly/validators/histogram/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_sizesrc.py rename to plotly/validators/histogram/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_style.py b/plotly/validators/histogram/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_style.py rename to plotly/validators/histogram/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_stylesrc.py b/plotly/validators/histogram/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_stylesrc.py rename to plotly/validators/histogram/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_textcase.py b/plotly/validators/histogram/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_textcase.py rename to plotly/validators/histogram/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_textcasesrc.py b/plotly/validators/histogram/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_textcasesrc.py rename to plotly/validators/histogram/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_variant.py b/plotly/validators/histogram/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_variant.py rename to plotly/validators/histogram/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_variantsrc.py b/plotly/validators/histogram/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_variantsrc.py rename to plotly/validators/histogram/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_weight.py b/plotly/validators/histogram/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_weight.py rename to plotly/validators/histogram/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_weightsrc.py b/plotly/validators/histogram/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/hoverlabel/font/_weightsrc.py rename to plotly/validators/histogram/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/__init__.py b/plotly/validators/histogram/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/__init__.py rename to plotly/validators/histogram/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_color.py b/plotly/validators/histogram/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_color.py rename to plotly/validators/histogram/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_family.py b/plotly/validators/histogram/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_family.py rename to plotly/validators/histogram/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_lineposition.py b/plotly/validators/histogram/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_lineposition.py rename to plotly/validators/histogram/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_shadow.py b/plotly/validators/histogram/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_shadow.py rename to plotly/validators/histogram/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_size.py b/plotly/validators/histogram/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_size.py rename to plotly/validators/histogram/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_style.py b/plotly/validators/histogram/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_style.py rename to plotly/validators/histogram/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_textcase.py b/plotly/validators/histogram/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_textcase.py rename to plotly/validators/histogram/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_variant.py b/plotly/validators/histogram/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_variant.py rename to plotly/validators/histogram/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/insidetextfont/_weight.py b/plotly/validators/histogram/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/insidetextfont/_weight.py rename to plotly/validators/histogram/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/__init__.py b/plotly/validators/histogram/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/__init__.py rename to plotly/validators/histogram/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/_font.py b/plotly/validators/histogram/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/_font.py rename to plotly/validators/histogram/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/_text.py b/plotly/validators/histogram/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/_text.py rename to plotly/validators/histogram/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/__init__.py b/plotly/validators/histogram/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/__init__.py rename to plotly/validators/histogram/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_color.py b/plotly/validators/histogram/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_color.py rename to plotly/validators/histogram/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_family.py b/plotly/validators/histogram/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_family.py rename to plotly/validators/histogram/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_lineposition.py b/plotly/validators/histogram/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_lineposition.py rename to plotly/validators/histogram/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_shadow.py b/plotly/validators/histogram/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_shadow.py rename to plotly/validators/histogram/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_size.py b/plotly/validators/histogram/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_size.py rename to plotly/validators/histogram/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_style.py b/plotly/validators/histogram/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_style.py rename to plotly/validators/histogram/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_textcase.py b/plotly/validators/histogram/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_textcase.py rename to plotly/validators/histogram/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_variant.py b/plotly/validators/histogram/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_variant.py rename to plotly/validators/histogram/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_weight.py b/plotly/validators/histogram/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/legendgrouptitle/font/_weight.py rename to plotly/validators/histogram/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/__init__.py b/plotly/validators/histogram/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/__init__.py rename to plotly/validators/histogram/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_autocolorscale.py b/plotly/validators/histogram/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_autocolorscale.py rename to plotly/validators/histogram/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_cauto.py b/plotly/validators/histogram/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_cauto.py rename to plotly/validators/histogram/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_cmax.py b/plotly/validators/histogram/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_cmax.py rename to plotly/validators/histogram/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_cmid.py b/plotly/validators/histogram/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_cmid.py rename to plotly/validators/histogram/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_cmin.py b/plotly/validators/histogram/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_cmin.py rename to plotly/validators/histogram/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_color.py b/plotly/validators/histogram/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_color.py rename to plotly/validators/histogram/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_coloraxis.py b/plotly/validators/histogram/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_coloraxis.py rename to plotly/validators/histogram/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_colorbar.py b/plotly/validators/histogram/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_colorbar.py rename to plotly/validators/histogram/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_colorscale.py b/plotly/validators/histogram/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_colorscale.py rename to plotly/validators/histogram/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_colorsrc.py b/plotly/validators/histogram/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_colorsrc.py rename to plotly/validators/histogram/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_cornerradius.py b/plotly/validators/histogram/marker/_cornerradius.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_cornerradius.py rename to plotly/validators/histogram/marker/_cornerradius.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_line.py b/plotly/validators/histogram/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_line.py rename to plotly/validators/histogram/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_opacity.py b/plotly/validators/histogram/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_opacity.py rename to plotly/validators/histogram/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_opacitysrc.py b/plotly/validators/histogram/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_opacitysrc.py rename to plotly/validators/histogram/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_pattern.py b/plotly/validators/histogram/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_pattern.py rename to plotly/validators/histogram/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_reversescale.py b/plotly/validators/histogram/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_reversescale.py rename to plotly/validators/histogram/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/_showscale.py b/plotly/validators/histogram/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/_showscale.py rename to plotly/validators/histogram/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/__init__.py b/plotly/validators/histogram/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/__init__.py rename to plotly/validators/histogram/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_bgcolor.py b/plotly/validators/histogram/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_bgcolor.py rename to plotly/validators/histogram/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_bordercolor.py b/plotly/validators/histogram/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_bordercolor.py rename to plotly/validators/histogram/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_borderwidth.py b/plotly/validators/histogram/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_borderwidth.py rename to plotly/validators/histogram/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_dtick.py b/plotly/validators/histogram/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_dtick.py rename to plotly/validators/histogram/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_exponentformat.py b/plotly/validators/histogram/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_exponentformat.py rename to plotly/validators/histogram/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_labelalias.py b/plotly/validators/histogram/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_labelalias.py rename to plotly/validators/histogram/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_len.py b/plotly/validators/histogram/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_len.py rename to plotly/validators/histogram/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_lenmode.py b/plotly/validators/histogram/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_lenmode.py rename to plotly/validators/histogram/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_minexponent.py b/plotly/validators/histogram/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_minexponent.py rename to plotly/validators/histogram/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_nticks.py b/plotly/validators/histogram/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_nticks.py rename to plotly/validators/histogram/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_orientation.py b/plotly/validators/histogram/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_orientation.py rename to plotly/validators/histogram/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_outlinecolor.py b/plotly/validators/histogram/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_outlinecolor.py rename to plotly/validators/histogram/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_outlinewidth.py b/plotly/validators/histogram/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_outlinewidth.py rename to plotly/validators/histogram/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_separatethousands.py b/plotly/validators/histogram/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_separatethousands.py rename to plotly/validators/histogram/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showexponent.py b/plotly/validators/histogram/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showexponent.py rename to plotly/validators/histogram/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showticklabels.py b/plotly/validators/histogram/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showticklabels.py rename to plotly/validators/histogram/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showtickprefix.py b/plotly/validators/histogram/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showtickprefix.py rename to plotly/validators/histogram/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showticksuffix.py b/plotly/validators/histogram/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_showticksuffix.py rename to plotly/validators/histogram/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_thickness.py b/plotly/validators/histogram/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_thickness.py rename to plotly/validators/histogram/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_thicknessmode.py b/plotly/validators/histogram/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_thicknessmode.py rename to plotly/validators/histogram/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tick0.py b/plotly/validators/histogram/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tick0.py rename to plotly/validators/histogram/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickangle.py b/plotly/validators/histogram/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickangle.py rename to plotly/validators/histogram/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickcolor.py b/plotly/validators/histogram/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickcolor.py rename to plotly/validators/histogram/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickfont.py b/plotly/validators/histogram/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickfont.py rename to plotly/validators/histogram/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickformat.py b/plotly/validators/histogram/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickformat.py rename to plotly/validators/histogram/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/histogram/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickformatstops.py b/plotly/validators/histogram/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickformatstops.py rename to plotly/validators/histogram/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/histogram/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/histogram/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklabelposition.py b/plotly/validators/histogram/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklabelposition.py rename to plotly/validators/histogram/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklabelstep.py b/plotly/validators/histogram/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklabelstep.py rename to plotly/validators/histogram/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklen.py b/plotly/validators/histogram/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticklen.py rename to plotly/validators/histogram/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickmode.py b/plotly/validators/histogram/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickmode.py rename to plotly/validators/histogram/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickprefix.py b/plotly/validators/histogram/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickprefix.py rename to plotly/validators/histogram/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticks.py b/plotly/validators/histogram/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticks.py rename to plotly/validators/histogram/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticksuffix.py b/plotly/validators/histogram/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticksuffix.py rename to plotly/validators/histogram/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticktext.py b/plotly/validators/histogram/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticktext.py rename to plotly/validators/histogram/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticktextsrc.py b/plotly/validators/histogram/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ticktextsrc.py rename to plotly/validators/histogram/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickvals.py b/plotly/validators/histogram/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickvals.py rename to plotly/validators/histogram/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickvalssrc.py b/plotly/validators/histogram/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickvalssrc.py rename to plotly/validators/histogram/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickwidth.py b/plotly/validators/histogram/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_tickwidth.py rename to plotly/validators/histogram/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_title.py b/plotly/validators/histogram/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_title.py rename to plotly/validators/histogram/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_x.py b/plotly/validators/histogram/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_x.py rename to plotly/validators/histogram/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_xanchor.py b/plotly/validators/histogram/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_xanchor.py rename to plotly/validators/histogram/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_xpad.py b/plotly/validators/histogram/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_xpad.py rename to plotly/validators/histogram/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_xref.py b/plotly/validators/histogram/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_xref.py rename to plotly/validators/histogram/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_y.py b/plotly/validators/histogram/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_y.py rename to plotly/validators/histogram/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_yanchor.py b/plotly/validators/histogram/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_yanchor.py rename to plotly/validators/histogram/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ypad.py b/plotly/validators/histogram/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_ypad.py rename to plotly/validators/histogram/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/_yref.py b/plotly/validators/histogram/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/_yref.py rename to plotly/validators/histogram/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/__init__.py b/plotly/validators/histogram/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/__init__.py rename to plotly/validators/histogram/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_color.py b/plotly/validators/histogram/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_color.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_family.py b/plotly/validators/histogram/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_family.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/histogram/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_shadow.py b/plotly/validators/histogram/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_size.py b/plotly/validators/histogram/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_size.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_style.py b/plotly/validators/histogram/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_style.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_textcase.py b/plotly/validators/histogram/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_variant.py b/plotly/validators/histogram/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_variant.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_weight.py b/plotly/validators/histogram/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickfont/_weight.py rename to plotly/validators/histogram/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/histogram/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/histogram/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/histogram/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/histogram/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/histogram/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/histogram/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_name.py b/plotly/validators/histogram/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/histogram/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/histogram/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/histogram/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_value.py b/plotly/validators/histogram/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/histogram/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/__init__.py b/plotly/validators/histogram/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/__init__.py rename to plotly/validators/histogram/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/_font.py b/plotly/validators/histogram/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/_font.py rename to plotly/validators/histogram/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/_side.py b/plotly/validators/histogram/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/_side.py rename to plotly/validators/histogram/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/_text.py b/plotly/validators/histogram/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/_text.py rename to plotly/validators/histogram/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/__init__.py b/plotly/validators/histogram/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/__init__.py rename to plotly/validators/histogram/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_color.py b/plotly/validators/histogram/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_color.py rename to plotly/validators/histogram/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_family.py b/plotly/validators/histogram/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_family.py rename to plotly/validators/histogram/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_lineposition.py b/plotly/validators/histogram/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/histogram/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_shadow.py b/plotly/validators/histogram/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_shadow.py rename to plotly/validators/histogram/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_size.py b/plotly/validators/histogram/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_size.py rename to plotly/validators/histogram/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_style.py b/plotly/validators/histogram/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_style.py rename to plotly/validators/histogram/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_textcase.py b/plotly/validators/histogram/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_textcase.py rename to plotly/validators/histogram/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_variant.py b/plotly/validators/histogram/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_variant.py rename to plotly/validators/histogram/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_weight.py b/plotly/validators/histogram/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/colorbar/title/font/_weight.py rename to plotly/validators/histogram/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/__init__.py b/plotly/validators/histogram/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/__init__.py rename to plotly/validators/histogram/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_autocolorscale.py b/plotly/validators/histogram/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_autocolorscale.py rename to plotly/validators/histogram/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_cauto.py b/plotly/validators/histogram/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_cauto.py rename to plotly/validators/histogram/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_cmax.py b/plotly/validators/histogram/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_cmax.py rename to plotly/validators/histogram/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_cmid.py b/plotly/validators/histogram/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_cmid.py rename to plotly/validators/histogram/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_cmin.py b/plotly/validators/histogram/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_cmin.py rename to plotly/validators/histogram/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_color.py b/plotly/validators/histogram/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_color.py rename to plotly/validators/histogram/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_coloraxis.py b/plotly/validators/histogram/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_coloraxis.py rename to plotly/validators/histogram/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_colorscale.py b/plotly/validators/histogram/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_colorscale.py rename to plotly/validators/histogram/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_colorsrc.py b/plotly/validators/histogram/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_colorsrc.py rename to plotly/validators/histogram/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_reversescale.py b/plotly/validators/histogram/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_reversescale.py rename to plotly/validators/histogram/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_width.py b/plotly/validators/histogram/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_width.py rename to plotly/validators/histogram/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/line/_widthsrc.py b/plotly/validators/histogram/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/line/_widthsrc.py rename to plotly/validators/histogram/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/__init__.py b/plotly/validators/histogram/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/__init__.py rename to plotly/validators/histogram/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_bgcolor.py b/plotly/validators/histogram/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_bgcolor.py rename to plotly/validators/histogram/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_bgcolorsrc.py b/plotly/validators/histogram/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_bgcolorsrc.py rename to plotly/validators/histogram/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_fgcolor.py b/plotly/validators/histogram/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_fgcolor.py rename to plotly/validators/histogram/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_fgcolorsrc.py b/plotly/validators/histogram/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_fgcolorsrc.py rename to plotly/validators/histogram/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_fgopacity.py b/plotly/validators/histogram/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_fgopacity.py rename to plotly/validators/histogram/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_fillmode.py b/plotly/validators/histogram/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_fillmode.py rename to plotly/validators/histogram/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_shape.py b/plotly/validators/histogram/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_shape.py rename to plotly/validators/histogram/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_shapesrc.py b/plotly/validators/histogram/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_shapesrc.py rename to plotly/validators/histogram/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_size.py b/plotly/validators/histogram/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_size.py rename to plotly/validators/histogram/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_sizesrc.py b/plotly/validators/histogram/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_sizesrc.py rename to plotly/validators/histogram/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_solidity.py b/plotly/validators/histogram/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_solidity.py rename to plotly/validators/histogram/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/histogram/marker/pattern/_soliditysrc.py b/plotly/validators/histogram/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/marker/pattern/_soliditysrc.py rename to plotly/validators/histogram/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/__init__.py b/plotly/validators/histogram/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/__init__.py rename to plotly/validators/histogram/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_color.py b/plotly/validators/histogram/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_color.py rename to plotly/validators/histogram/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_family.py b/plotly/validators/histogram/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_family.py rename to plotly/validators/histogram/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_lineposition.py b/plotly/validators/histogram/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_lineposition.py rename to plotly/validators/histogram/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_shadow.py b/plotly/validators/histogram/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_shadow.py rename to plotly/validators/histogram/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_size.py b/plotly/validators/histogram/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_size.py rename to plotly/validators/histogram/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_style.py b/plotly/validators/histogram/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_style.py rename to plotly/validators/histogram/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_textcase.py b/plotly/validators/histogram/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_textcase.py rename to plotly/validators/histogram/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_variant.py b/plotly/validators/histogram/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_variant.py rename to plotly/validators/histogram/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/outsidetextfont/_weight.py b/plotly/validators/histogram/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/outsidetextfont/_weight.py rename to plotly/validators/histogram/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/__init__.py b/plotly/validators/histogram/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/__init__.py rename to plotly/validators/histogram/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/_marker.py b/plotly/validators/histogram/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/_marker.py rename to plotly/validators/histogram/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/_textfont.py b/plotly/validators/histogram/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/_textfont.py rename to plotly/validators/histogram/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/marker/__init__.py b/plotly/validators/histogram/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/marker/__init__.py rename to plotly/validators/histogram/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/marker/_color.py b/plotly/validators/histogram/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/marker/_color.py rename to plotly/validators/histogram/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/marker/_opacity.py b/plotly/validators/histogram/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/marker/_opacity.py rename to plotly/validators/histogram/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/textfont/__init__.py b/plotly/validators/histogram/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/textfont/__init__.py rename to plotly/validators/histogram/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/selected/textfont/_color.py b/plotly/validators/histogram/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/selected/textfont/_color.py rename to plotly/validators/histogram/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/stream/__init__.py b/plotly/validators/histogram/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/stream/__init__.py rename to plotly/validators/histogram/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/stream/_maxpoints.py b/plotly/validators/histogram/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/stream/_maxpoints.py rename to plotly/validators/histogram/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/histogram/stream/_token.py b/plotly/validators/histogram/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/stream/_token.py rename to plotly/validators/histogram/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/__init__.py b/plotly/validators/histogram/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/__init__.py rename to plotly/validators/histogram/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_color.py b/plotly/validators/histogram/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_color.py rename to plotly/validators/histogram/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_family.py b/plotly/validators/histogram/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_family.py rename to plotly/validators/histogram/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_lineposition.py b/plotly/validators/histogram/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_lineposition.py rename to plotly/validators/histogram/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_shadow.py b/plotly/validators/histogram/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_shadow.py rename to plotly/validators/histogram/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_size.py b/plotly/validators/histogram/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_size.py rename to plotly/validators/histogram/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_style.py b/plotly/validators/histogram/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_style.py rename to plotly/validators/histogram/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_textcase.py b/plotly/validators/histogram/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_textcase.py rename to plotly/validators/histogram/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_variant.py b/plotly/validators/histogram/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_variant.py rename to plotly/validators/histogram/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram/textfont/_weight.py b/plotly/validators/histogram/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/textfont/_weight.py rename to plotly/validators/histogram/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/__init__.py b/plotly/validators/histogram/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/__init__.py rename to plotly/validators/histogram/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/_marker.py b/plotly/validators/histogram/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/_marker.py rename to plotly/validators/histogram/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/_textfont.py b/plotly/validators/histogram/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/_textfont.py rename to plotly/validators/histogram/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/marker/__init__.py b/plotly/validators/histogram/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/marker/__init__.py rename to plotly/validators/histogram/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/marker/_color.py b/plotly/validators/histogram/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/marker/_color.py rename to plotly/validators/histogram/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/marker/_opacity.py b/plotly/validators/histogram/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/marker/_opacity.py rename to plotly/validators/histogram/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/textfont/__init__.py b/plotly/validators/histogram/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/textfont/__init__.py rename to plotly/validators/histogram/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/unselected/textfont/_color.py b/plotly/validators/histogram/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/unselected/textfont/_color.py rename to plotly/validators/histogram/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram/xbins/__init__.py b/plotly/validators/histogram/xbins/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/xbins/__init__.py rename to plotly/validators/histogram/xbins/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/xbins/_end.py b/plotly/validators/histogram/xbins/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/xbins/_end.py rename to plotly/validators/histogram/xbins/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram/xbins/_size.py b/plotly/validators/histogram/xbins/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/xbins/_size.py rename to plotly/validators/histogram/xbins/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/xbins/_start.py b/plotly/validators/histogram/xbins/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/xbins/_start.py rename to plotly/validators/histogram/xbins/_start.py diff --git a/packages/python/plotly/plotly/validators/histogram/ybins/__init__.py b/plotly/validators/histogram/ybins/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/ybins/__init__.py rename to plotly/validators/histogram/ybins/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram/ybins/_end.py b/plotly/validators/histogram/ybins/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/ybins/_end.py rename to plotly/validators/histogram/ybins/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram/ybins/_size.py b/plotly/validators/histogram/ybins/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/ybins/_size.py rename to plotly/validators/histogram/ybins/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram/ybins/_start.py b/plotly/validators/histogram/ybins/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram/ybins/_start.py rename to plotly/validators/histogram/ybins/_start.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/__init__.py b/plotly/validators/histogram2d/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/__init__.py rename to plotly/validators/histogram2d/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_autobinx.py b/plotly/validators/histogram2d/_autobinx.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_autobinx.py rename to plotly/validators/histogram2d/_autobinx.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_autobiny.py b/plotly/validators/histogram2d/_autobiny.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_autobiny.py rename to plotly/validators/histogram2d/_autobiny.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_autocolorscale.py b/plotly/validators/histogram2d/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_autocolorscale.py rename to plotly/validators/histogram2d/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_bingroup.py b/plotly/validators/histogram2d/_bingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_bingroup.py rename to plotly/validators/histogram2d/_bingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_coloraxis.py b/plotly/validators/histogram2d/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_coloraxis.py rename to plotly/validators/histogram2d/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_colorbar.py b/plotly/validators/histogram2d/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_colorbar.py rename to plotly/validators/histogram2d/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_colorscale.py b/plotly/validators/histogram2d/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_colorscale.py rename to plotly/validators/histogram2d/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_customdata.py b/plotly/validators/histogram2d/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_customdata.py rename to plotly/validators/histogram2d/_customdata.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_customdatasrc.py b/plotly/validators/histogram2d/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_customdatasrc.py rename to plotly/validators/histogram2d/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_histfunc.py b/plotly/validators/histogram2d/_histfunc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_histfunc.py rename to plotly/validators/histogram2d/_histfunc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_histnorm.py b/plotly/validators/histogram2d/_histnorm.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_histnorm.py rename to plotly/validators/histogram2d/_histnorm.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_hoverinfo.py b/plotly/validators/histogram2d/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_hoverinfo.py rename to plotly/validators/histogram2d/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_hoverinfosrc.py b/plotly/validators/histogram2d/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_hoverinfosrc.py rename to plotly/validators/histogram2d/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_hoverlabel.py b/plotly/validators/histogram2d/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_hoverlabel.py rename to plotly/validators/histogram2d/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_hovertemplate.py b/plotly/validators/histogram2d/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_hovertemplate.py rename to plotly/validators/histogram2d/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_hovertemplatesrc.py b/plotly/validators/histogram2d/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_hovertemplatesrc.py rename to plotly/validators/histogram2d/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_ids.py b/plotly/validators/histogram2d/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_ids.py rename to plotly/validators/histogram2d/_ids.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_idssrc.py b/plotly/validators/histogram2d/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_idssrc.py rename to plotly/validators/histogram2d/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_legend.py b/plotly/validators/histogram2d/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_legend.py rename to plotly/validators/histogram2d/_legend.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_legendgroup.py b/plotly/validators/histogram2d/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_legendgroup.py rename to plotly/validators/histogram2d/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_legendgrouptitle.py b/plotly/validators/histogram2d/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_legendgrouptitle.py rename to plotly/validators/histogram2d/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_legendrank.py b/plotly/validators/histogram2d/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_legendrank.py rename to plotly/validators/histogram2d/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_legendwidth.py b/plotly/validators/histogram2d/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_legendwidth.py rename to plotly/validators/histogram2d/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_marker.py b/plotly/validators/histogram2d/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_marker.py rename to plotly/validators/histogram2d/_marker.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_meta.py b/plotly/validators/histogram2d/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_meta.py rename to plotly/validators/histogram2d/_meta.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_metasrc.py b/plotly/validators/histogram2d/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_metasrc.py rename to plotly/validators/histogram2d/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_name.py b/plotly/validators/histogram2d/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_name.py rename to plotly/validators/histogram2d/_name.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_nbinsx.py b/plotly/validators/histogram2d/_nbinsx.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_nbinsx.py rename to plotly/validators/histogram2d/_nbinsx.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_nbinsy.py b/plotly/validators/histogram2d/_nbinsy.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_nbinsy.py rename to plotly/validators/histogram2d/_nbinsy.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_opacity.py b/plotly/validators/histogram2d/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_opacity.py rename to plotly/validators/histogram2d/_opacity.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_reversescale.py b/plotly/validators/histogram2d/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_reversescale.py rename to plotly/validators/histogram2d/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_showlegend.py b/plotly/validators/histogram2d/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_showlegend.py rename to plotly/validators/histogram2d/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_showscale.py b/plotly/validators/histogram2d/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_showscale.py rename to plotly/validators/histogram2d/_showscale.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_stream.py b/plotly/validators/histogram2d/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_stream.py rename to plotly/validators/histogram2d/_stream.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_textfont.py b/plotly/validators/histogram2d/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_textfont.py rename to plotly/validators/histogram2d/_textfont.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_texttemplate.py b/plotly/validators/histogram2d/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_texttemplate.py rename to plotly/validators/histogram2d/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_uid.py b/plotly/validators/histogram2d/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_uid.py rename to plotly/validators/histogram2d/_uid.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_uirevision.py b/plotly/validators/histogram2d/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_uirevision.py rename to plotly/validators/histogram2d/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_visible.py b/plotly/validators/histogram2d/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_visible.py rename to plotly/validators/histogram2d/_visible.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_x.py b/plotly/validators/histogram2d/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_x.py rename to plotly/validators/histogram2d/_x.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xaxis.py b/plotly/validators/histogram2d/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xaxis.py rename to plotly/validators/histogram2d/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xbingroup.py b/plotly/validators/histogram2d/_xbingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xbingroup.py rename to plotly/validators/histogram2d/_xbingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xbins.py b/plotly/validators/histogram2d/_xbins.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xbins.py rename to plotly/validators/histogram2d/_xbins.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xcalendar.py b/plotly/validators/histogram2d/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xcalendar.py rename to plotly/validators/histogram2d/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xgap.py b/plotly/validators/histogram2d/_xgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xgap.py rename to plotly/validators/histogram2d/_xgap.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xhoverformat.py b/plotly/validators/histogram2d/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xhoverformat.py rename to plotly/validators/histogram2d/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_xsrc.py b/plotly/validators/histogram2d/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_xsrc.py rename to plotly/validators/histogram2d/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_y.py b/plotly/validators/histogram2d/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_y.py rename to plotly/validators/histogram2d/_y.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_yaxis.py b/plotly/validators/histogram2d/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_yaxis.py rename to plotly/validators/histogram2d/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_ybingroup.py b/plotly/validators/histogram2d/_ybingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_ybingroup.py rename to plotly/validators/histogram2d/_ybingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_ybins.py b/plotly/validators/histogram2d/_ybins.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_ybins.py rename to plotly/validators/histogram2d/_ybins.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_ycalendar.py b/plotly/validators/histogram2d/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_ycalendar.py rename to plotly/validators/histogram2d/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_ygap.py b/plotly/validators/histogram2d/_ygap.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_ygap.py rename to plotly/validators/histogram2d/_ygap.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_yhoverformat.py b/plotly/validators/histogram2d/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_yhoverformat.py rename to plotly/validators/histogram2d/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_ysrc.py b/plotly/validators/histogram2d/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_ysrc.py rename to plotly/validators/histogram2d/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_z.py b/plotly/validators/histogram2d/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_z.py rename to plotly/validators/histogram2d/_z.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zauto.py b/plotly/validators/histogram2d/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zauto.py rename to plotly/validators/histogram2d/_zauto.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zhoverformat.py b/plotly/validators/histogram2d/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zhoverformat.py rename to plotly/validators/histogram2d/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zmax.py b/plotly/validators/histogram2d/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zmax.py rename to plotly/validators/histogram2d/_zmax.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zmid.py b/plotly/validators/histogram2d/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zmid.py rename to plotly/validators/histogram2d/_zmid.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zmin.py b/plotly/validators/histogram2d/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zmin.py rename to plotly/validators/histogram2d/_zmin.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zsmooth.py b/plotly/validators/histogram2d/_zsmooth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zsmooth.py rename to plotly/validators/histogram2d/_zsmooth.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/_zsrc.py b/plotly/validators/histogram2d/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/_zsrc.py rename to plotly/validators/histogram2d/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/__init__.py b/plotly/validators/histogram2d/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/__init__.py rename to plotly/validators/histogram2d/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_bgcolor.py b/plotly/validators/histogram2d/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_bgcolor.py rename to plotly/validators/histogram2d/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_bordercolor.py b/plotly/validators/histogram2d/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_bordercolor.py rename to plotly/validators/histogram2d/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_borderwidth.py b/plotly/validators/histogram2d/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_borderwidth.py rename to plotly/validators/histogram2d/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_dtick.py b/plotly/validators/histogram2d/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_dtick.py rename to plotly/validators/histogram2d/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_exponentformat.py b/plotly/validators/histogram2d/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_exponentformat.py rename to plotly/validators/histogram2d/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_labelalias.py b/plotly/validators/histogram2d/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_labelalias.py rename to plotly/validators/histogram2d/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_len.py b/plotly/validators/histogram2d/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_len.py rename to plotly/validators/histogram2d/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_lenmode.py b/plotly/validators/histogram2d/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_lenmode.py rename to plotly/validators/histogram2d/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_minexponent.py b/plotly/validators/histogram2d/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_minexponent.py rename to plotly/validators/histogram2d/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_nticks.py b/plotly/validators/histogram2d/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_nticks.py rename to plotly/validators/histogram2d/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_orientation.py b/plotly/validators/histogram2d/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_orientation.py rename to plotly/validators/histogram2d/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_outlinecolor.py b/plotly/validators/histogram2d/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_outlinecolor.py rename to plotly/validators/histogram2d/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_outlinewidth.py b/plotly/validators/histogram2d/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_outlinewidth.py rename to plotly/validators/histogram2d/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_separatethousands.py b/plotly/validators/histogram2d/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_separatethousands.py rename to plotly/validators/histogram2d/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_showexponent.py b/plotly/validators/histogram2d/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_showexponent.py rename to plotly/validators/histogram2d/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_showticklabels.py b/plotly/validators/histogram2d/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_showticklabels.py rename to plotly/validators/histogram2d/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_showtickprefix.py b/plotly/validators/histogram2d/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_showtickprefix.py rename to plotly/validators/histogram2d/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_showticksuffix.py b/plotly/validators/histogram2d/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_showticksuffix.py rename to plotly/validators/histogram2d/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_thickness.py b/plotly/validators/histogram2d/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_thickness.py rename to plotly/validators/histogram2d/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_thicknessmode.py b/plotly/validators/histogram2d/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_thicknessmode.py rename to plotly/validators/histogram2d/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tick0.py b/plotly/validators/histogram2d/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tick0.py rename to plotly/validators/histogram2d/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickangle.py b/plotly/validators/histogram2d/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickangle.py rename to plotly/validators/histogram2d/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickcolor.py b/plotly/validators/histogram2d/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickcolor.py rename to plotly/validators/histogram2d/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickfont.py b/plotly/validators/histogram2d/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickfont.py rename to plotly/validators/histogram2d/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickformat.py b/plotly/validators/histogram2d/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickformat.py rename to plotly/validators/histogram2d/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py b/plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py rename to plotly/validators/histogram2d/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickformatstops.py b/plotly/validators/histogram2d/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickformatstops.py rename to plotly/validators/histogram2d/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklabeloverflow.py b/plotly/validators/histogram2d/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklabeloverflow.py rename to plotly/validators/histogram2d/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklabelposition.py b/plotly/validators/histogram2d/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklabelposition.py rename to plotly/validators/histogram2d/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklabelstep.py b/plotly/validators/histogram2d/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklabelstep.py rename to plotly/validators/histogram2d/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklen.py b/plotly/validators/histogram2d/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticklen.py rename to plotly/validators/histogram2d/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickmode.py b/plotly/validators/histogram2d/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickmode.py rename to plotly/validators/histogram2d/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickprefix.py b/plotly/validators/histogram2d/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickprefix.py rename to plotly/validators/histogram2d/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticks.py b/plotly/validators/histogram2d/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticks.py rename to plotly/validators/histogram2d/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticksuffix.py b/plotly/validators/histogram2d/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticksuffix.py rename to plotly/validators/histogram2d/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticktext.py b/plotly/validators/histogram2d/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticktext.py rename to plotly/validators/histogram2d/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticktextsrc.py b/plotly/validators/histogram2d/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ticktextsrc.py rename to plotly/validators/histogram2d/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickvals.py b/plotly/validators/histogram2d/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickvals.py rename to plotly/validators/histogram2d/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickvalssrc.py b/plotly/validators/histogram2d/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickvalssrc.py rename to plotly/validators/histogram2d/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickwidth.py b/plotly/validators/histogram2d/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_tickwidth.py rename to plotly/validators/histogram2d/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_title.py b/plotly/validators/histogram2d/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_title.py rename to plotly/validators/histogram2d/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_x.py b/plotly/validators/histogram2d/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_x.py rename to plotly/validators/histogram2d/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_xanchor.py b/plotly/validators/histogram2d/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_xanchor.py rename to plotly/validators/histogram2d/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_xpad.py b/plotly/validators/histogram2d/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_xpad.py rename to plotly/validators/histogram2d/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_xref.py b/plotly/validators/histogram2d/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_xref.py rename to plotly/validators/histogram2d/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_y.py b/plotly/validators/histogram2d/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_y.py rename to plotly/validators/histogram2d/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_yanchor.py b/plotly/validators/histogram2d/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_yanchor.py rename to plotly/validators/histogram2d/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_ypad.py b/plotly/validators/histogram2d/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_ypad.py rename to plotly/validators/histogram2d/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/_yref.py b/plotly/validators/histogram2d/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/_yref.py rename to plotly/validators/histogram2d/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/__init__.py b/plotly/validators/histogram2d/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/__init__.py rename to plotly/validators/histogram2d/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_color.py b/plotly/validators/histogram2d/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_color.py rename to plotly/validators/histogram2d/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_family.py b/plotly/validators/histogram2d/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_family.py rename to plotly/validators/histogram2d/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_lineposition.py b/plotly/validators/histogram2d/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_lineposition.py rename to plotly/validators/histogram2d/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_shadow.py b/plotly/validators/histogram2d/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_shadow.py rename to plotly/validators/histogram2d/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_size.py b/plotly/validators/histogram2d/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_size.py rename to plotly/validators/histogram2d/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_style.py b/plotly/validators/histogram2d/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_style.py rename to plotly/validators/histogram2d/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_textcase.py b/plotly/validators/histogram2d/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_textcase.py rename to plotly/validators/histogram2d/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_variant.py b/plotly/validators/histogram2d/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_variant.py rename to plotly/validators/histogram2d/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_weight.py b/plotly/validators/histogram2d/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickfont/_weight.py rename to plotly/validators/histogram2d/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/__init__.py b/plotly/validators/histogram2d/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/__init__.py rename to plotly/validators/histogram2d/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/histogram2d/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/histogram2d/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_enabled.py b/plotly/validators/histogram2d/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_enabled.py rename to plotly/validators/histogram2d/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_name.py b/plotly/validators/histogram2d/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_name.py rename to plotly/validators/histogram2d/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/histogram2d/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/histogram2d/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_value.py b/plotly/validators/histogram2d/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/tickformatstop/_value.py rename to plotly/validators/histogram2d/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/__init__.py b/plotly/validators/histogram2d/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/__init__.py rename to plotly/validators/histogram2d/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/_font.py b/plotly/validators/histogram2d/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/_font.py rename to plotly/validators/histogram2d/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/_side.py b/plotly/validators/histogram2d/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/_side.py rename to plotly/validators/histogram2d/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/_text.py b/plotly/validators/histogram2d/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/_text.py rename to plotly/validators/histogram2d/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/__init__.py b/plotly/validators/histogram2d/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/__init__.py rename to plotly/validators/histogram2d/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_color.py b/plotly/validators/histogram2d/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_color.py rename to plotly/validators/histogram2d/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_family.py b/plotly/validators/histogram2d/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_family.py rename to plotly/validators/histogram2d/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_lineposition.py b/plotly/validators/histogram2d/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_lineposition.py rename to plotly/validators/histogram2d/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_shadow.py b/plotly/validators/histogram2d/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_shadow.py rename to plotly/validators/histogram2d/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_size.py b/plotly/validators/histogram2d/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_size.py rename to plotly/validators/histogram2d/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_style.py b/plotly/validators/histogram2d/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_style.py rename to plotly/validators/histogram2d/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_textcase.py b/plotly/validators/histogram2d/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_textcase.py rename to plotly/validators/histogram2d/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_variant.py b/plotly/validators/histogram2d/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_variant.py rename to plotly/validators/histogram2d/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_weight.py b/plotly/validators/histogram2d/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/colorbar/title/font/_weight.py rename to plotly/validators/histogram2d/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/__init__.py b/plotly/validators/histogram2d/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/__init__.py rename to plotly/validators/histogram2d/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_align.py b/plotly/validators/histogram2d/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_align.py rename to plotly/validators/histogram2d/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_alignsrc.py b/plotly/validators/histogram2d/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_alignsrc.py rename to plotly/validators/histogram2d/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bgcolor.py b/plotly/validators/histogram2d/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bgcolor.py rename to plotly/validators/histogram2d/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bgcolorsrc.py b/plotly/validators/histogram2d/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bgcolorsrc.py rename to plotly/validators/histogram2d/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bordercolor.py b/plotly/validators/histogram2d/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bordercolor.py rename to plotly/validators/histogram2d/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bordercolorsrc.py b/plotly/validators/histogram2d/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_bordercolorsrc.py rename to plotly/validators/histogram2d/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_font.py b/plotly/validators/histogram2d/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_font.py rename to plotly/validators/histogram2d/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_namelength.py b/plotly/validators/histogram2d/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_namelength.py rename to plotly/validators/histogram2d/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_namelengthsrc.py b/plotly/validators/histogram2d/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/_namelengthsrc.py rename to plotly/validators/histogram2d/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/__init__.py b/plotly/validators/histogram2d/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/__init__.py rename to plotly/validators/histogram2d/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_color.py b/plotly/validators/histogram2d/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_color.py rename to plotly/validators/histogram2d/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_colorsrc.py b/plotly/validators/histogram2d/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_colorsrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_family.py b/plotly/validators/histogram2d/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_family.py rename to plotly/validators/histogram2d/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_familysrc.py b/plotly/validators/histogram2d/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_familysrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_lineposition.py b/plotly/validators/histogram2d/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_lineposition.py rename to plotly/validators/histogram2d/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_linepositionsrc.py b/plotly/validators/histogram2d/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_shadow.py b/plotly/validators/histogram2d/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_shadow.py rename to plotly/validators/histogram2d/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_shadowsrc.py b/plotly/validators/histogram2d/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_shadowsrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_size.py b/plotly/validators/histogram2d/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_size.py rename to plotly/validators/histogram2d/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_sizesrc.py b/plotly/validators/histogram2d/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_sizesrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_style.py b/plotly/validators/histogram2d/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_style.py rename to plotly/validators/histogram2d/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_stylesrc.py b/plotly/validators/histogram2d/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_stylesrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_textcase.py b/plotly/validators/histogram2d/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_textcase.py rename to plotly/validators/histogram2d/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_textcasesrc.py b/plotly/validators/histogram2d/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_textcasesrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_variant.py b/plotly/validators/histogram2d/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_variant.py rename to plotly/validators/histogram2d/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_variantsrc.py b/plotly/validators/histogram2d/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_variantsrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_weight.py b/plotly/validators/histogram2d/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_weight.py rename to plotly/validators/histogram2d/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_weightsrc.py b/plotly/validators/histogram2d/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/hoverlabel/font/_weightsrc.py rename to plotly/validators/histogram2d/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/__init__.py b/plotly/validators/histogram2d/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/__init__.py rename to plotly/validators/histogram2d/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/_font.py b/plotly/validators/histogram2d/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/_font.py rename to plotly/validators/histogram2d/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/_text.py b/plotly/validators/histogram2d/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/_text.py rename to plotly/validators/histogram2d/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/__init__.py b/plotly/validators/histogram2d/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/__init__.py rename to plotly/validators/histogram2d/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_color.py b/plotly/validators/histogram2d/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_color.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_family.py b/plotly/validators/histogram2d/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_family.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_lineposition.py b/plotly/validators/histogram2d/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_lineposition.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_shadow.py b/plotly/validators/histogram2d/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_shadow.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_size.py b/plotly/validators/histogram2d/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_size.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_style.py b/plotly/validators/histogram2d/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_style.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_textcase.py b/plotly/validators/histogram2d/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_textcase.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_variant.py b/plotly/validators/histogram2d/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_variant.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_weight.py b/plotly/validators/histogram2d/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/legendgrouptitle/font/_weight.py rename to plotly/validators/histogram2d/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/marker/__init__.py b/plotly/validators/histogram2d/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/marker/__init__.py rename to plotly/validators/histogram2d/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/marker/_color.py b/plotly/validators/histogram2d/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/marker/_color.py rename to plotly/validators/histogram2d/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/marker/_colorsrc.py b/plotly/validators/histogram2d/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/marker/_colorsrc.py rename to plotly/validators/histogram2d/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/stream/__init__.py b/plotly/validators/histogram2d/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/stream/__init__.py rename to plotly/validators/histogram2d/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/stream/_maxpoints.py b/plotly/validators/histogram2d/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/stream/_maxpoints.py rename to plotly/validators/histogram2d/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/stream/_token.py b/plotly/validators/histogram2d/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/stream/_token.py rename to plotly/validators/histogram2d/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/__init__.py b/plotly/validators/histogram2d/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/__init__.py rename to plotly/validators/histogram2d/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_color.py b/plotly/validators/histogram2d/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_color.py rename to plotly/validators/histogram2d/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_family.py b/plotly/validators/histogram2d/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_family.py rename to plotly/validators/histogram2d/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_lineposition.py b/plotly/validators/histogram2d/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_lineposition.py rename to plotly/validators/histogram2d/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_shadow.py b/plotly/validators/histogram2d/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_shadow.py rename to plotly/validators/histogram2d/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_size.py b/plotly/validators/histogram2d/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_size.py rename to plotly/validators/histogram2d/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_style.py b/plotly/validators/histogram2d/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_style.py rename to plotly/validators/histogram2d/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_textcase.py b/plotly/validators/histogram2d/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_textcase.py rename to plotly/validators/histogram2d/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_variant.py b/plotly/validators/histogram2d/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_variant.py rename to plotly/validators/histogram2d/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/textfont/_weight.py b/plotly/validators/histogram2d/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/textfont/_weight.py rename to plotly/validators/histogram2d/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/xbins/__init__.py b/plotly/validators/histogram2d/xbins/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/xbins/__init__.py rename to plotly/validators/histogram2d/xbins/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/xbins/_end.py b/plotly/validators/histogram2d/xbins/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/xbins/_end.py rename to plotly/validators/histogram2d/xbins/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/xbins/_size.py b/plotly/validators/histogram2d/xbins/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/xbins/_size.py rename to plotly/validators/histogram2d/xbins/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/xbins/_start.py b/plotly/validators/histogram2d/xbins/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/xbins/_start.py rename to plotly/validators/histogram2d/xbins/_start.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/ybins/__init__.py b/plotly/validators/histogram2d/ybins/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/ybins/__init__.py rename to plotly/validators/histogram2d/ybins/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/ybins/_end.py b/plotly/validators/histogram2d/ybins/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/ybins/_end.py rename to plotly/validators/histogram2d/ybins/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/ybins/_size.py b/plotly/validators/histogram2d/ybins/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/ybins/_size.py rename to plotly/validators/histogram2d/ybins/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2d/ybins/_start.py b/plotly/validators/histogram2d/ybins/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2d/ybins/_start.py rename to plotly/validators/histogram2d/ybins/_start.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/__init__.py b/plotly/validators/histogram2dcontour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/__init__.py rename to plotly/validators/histogram2dcontour/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_autobinx.py b/plotly/validators/histogram2dcontour/_autobinx.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_autobinx.py rename to plotly/validators/histogram2dcontour/_autobinx.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_autobiny.py b/plotly/validators/histogram2dcontour/_autobiny.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_autobiny.py rename to plotly/validators/histogram2dcontour/_autobiny.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_autocolorscale.py b/plotly/validators/histogram2dcontour/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_autocolorscale.py rename to plotly/validators/histogram2dcontour/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_autocontour.py b/plotly/validators/histogram2dcontour/_autocontour.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_autocontour.py rename to plotly/validators/histogram2dcontour/_autocontour.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_bingroup.py b/plotly/validators/histogram2dcontour/_bingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_bingroup.py rename to plotly/validators/histogram2dcontour/_bingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_coloraxis.py b/plotly/validators/histogram2dcontour/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_coloraxis.py rename to plotly/validators/histogram2dcontour/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_colorbar.py b/plotly/validators/histogram2dcontour/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_colorbar.py rename to plotly/validators/histogram2dcontour/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_colorscale.py b/plotly/validators/histogram2dcontour/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_colorscale.py rename to plotly/validators/histogram2dcontour/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_contours.py b/plotly/validators/histogram2dcontour/_contours.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_contours.py rename to plotly/validators/histogram2dcontour/_contours.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_customdata.py b/plotly/validators/histogram2dcontour/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_customdata.py rename to plotly/validators/histogram2dcontour/_customdata.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_customdatasrc.py b/plotly/validators/histogram2dcontour/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_customdatasrc.py rename to plotly/validators/histogram2dcontour/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_histfunc.py b/plotly/validators/histogram2dcontour/_histfunc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_histfunc.py rename to plotly/validators/histogram2dcontour/_histfunc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_histnorm.py b/plotly/validators/histogram2dcontour/_histnorm.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_histnorm.py rename to plotly/validators/histogram2dcontour/_histnorm.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_hoverinfo.py b/plotly/validators/histogram2dcontour/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_hoverinfo.py rename to plotly/validators/histogram2dcontour/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_hoverinfosrc.py b/plotly/validators/histogram2dcontour/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_hoverinfosrc.py rename to plotly/validators/histogram2dcontour/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_hoverlabel.py b/plotly/validators/histogram2dcontour/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_hoverlabel.py rename to plotly/validators/histogram2dcontour/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_hovertemplate.py b/plotly/validators/histogram2dcontour/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_hovertemplate.py rename to plotly/validators/histogram2dcontour/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_hovertemplatesrc.py b/plotly/validators/histogram2dcontour/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_hovertemplatesrc.py rename to plotly/validators/histogram2dcontour/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_ids.py b/plotly/validators/histogram2dcontour/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_ids.py rename to plotly/validators/histogram2dcontour/_ids.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_idssrc.py b/plotly/validators/histogram2dcontour/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_idssrc.py rename to plotly/validators/histogram2dcontour/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_legend.py b/plotly/validators/histogram2dcontour/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_legend.py rename to plotly/validators/histogram2dcontour/_legend.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_legendgroup.py b/plotly/validators/histogram2dcontour/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_legendgroup.py rename to plotly/validators/histogram2dcontour/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_legendgrouptitle.py b/plotly/validators/histogram2dcontour/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_legendgrouptitle.py rename to plotly/validators/histogram2dcontour/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_legendrank.py b/plotly/validators/histogram2dcontour/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_legendrank.py rename to plotly/validators/histogram2dcontour/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_legendwidth.py b/plotly/validators/histogram2dcontour/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_legendwidth.py rename to plotly/validators/histogram2dcontour/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_line.py b/plotly/validators/histogram2dcontour/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_line.py rename to plotly/validators/histogram2dcontour/_line.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_marker.py b/plotly/validators/histogram2dcontour/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_marker.py rename to plotly/validators/histogram2dcontour/_marker.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_meta.py b/plotly/validators/histogram2dcontour/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_meta.py rename to plotly/validators/histogram2dcontour/_meta.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_metasrc.py b/plotly/validators/histogram2dcontour/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_metasrc.py rename to plotly/validators/histogram2dcontour/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_name.py b/plotly/validators/histogram2dcontour/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_name.py rename to plotly/validators/histogram2dcontour/_name.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_nbinsx.py b/plotly/validators/histogram2dcontour/_nbinsx.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_nbinsx.py rename to plotly/validators/histogram2dcontour/_nbinsx.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_nbinsy.py b/plotly/validators/histogram2dcontour/_nbinsy.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_nbinsy.py rename to plotly/validators/histogram2dcontour/_nbinsy.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_ncontours.py b/plotly/validators/histogram2dcontour/_ncontours.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_ncontours.py rename to plotly/validators/histogram2dcontour/_ncontours.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_opacity.py b/plotly/validators/histogram2dcontour/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_opacity.py rename to plotly/validators/histogram2dcontour/_opacity.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_reversescale.py b/plotly/validators/histogram2dcontour/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_reversescale.py rename to plotly/validators/histogram2dcontour/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_showlegend.py b/plotly/validators/histogram2dcontour/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_showlegend.py rename to plotly/validators/histogram2dcontour/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_showscale.py b/plotly/validators/histogram2dcontour/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_showscale.py rename to plotly/validators/histogram2dcontour/_showscale.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_stream.py b/plotly/validators/histogram2dcontour/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_stream.py rename to plotly/validators/histogram2dcontour/_stream.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_textfont.py b/plotly/validators/histogram2dcontour/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_textfont.py rename to plotly/validators/histogram2dcontour/_textfont.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_texttemplate.py b/plotly/validators/histogram2dcontour/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_texttemplate.py rename to plotly/validators/histogram2dcontour/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_uid.py b/plotly/validators/histogram2dcontour/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_uid.py rename to plotly/validators/histogram2dcontour/_uid.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_uirevision.py b/plotly/validators/histogram2dcontour/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_uirevision.py rename to plotly/validators/histogram2dcontour/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_visible.py b/plotly/validators/histogram2dcontour/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_visible.py rename to plotly/validators/histogram2dcontour/_visible.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_x.py b/plotly/validators/histogram2dcontour/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_x.py rename to plotly/validators/histogram2dcontour/_x.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_xaxis.py b/plotly/validators/histogram2dcontour/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_xaxis.py rename to plotly/validators/histogram2dcontour/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_xbingroup.py b/plotly/validators/histogram2dcontour/_xbingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_xbingroup.py rename to plotly/validators/histogram2dcontour/_xbingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_xbins.py b/plotly/validators/histogram2dcontour/_xbins.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_xbins.py rename to plotly/validators/histogram2dcontour/_xbins.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_xcalendar.py b/plotly/validators/histogram2dcontour/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_xcalendar.py rename to plotly/validators/histogram2dcontour/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_xhoverformat.py b/plotly/validators/histogram2dcontour/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_xhoverformat.py rename to plotly/validators/histogram2dcontour/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_xsrc.py b/plotly/validators/histogram2dcontour/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_xsrc.py rename to plotly/validators/histogram2dcontour/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_y.py b/plotly/validators/histogram2dcontour/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_y.py rename to plotly/validators/histogram2dcontour/_y.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_yaxis.py b/plotly/validators/histogram2dcontour/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_yaxis.py rename to plotly/validators/histogram2dcontour/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_ybingroup.py b/plotly/validators/histogram2dcontour/_ybingroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_ybingroup.py rename to plotly/validators/histogram2dcontour/_ybingroup.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_ybins.py b/plotly/validators/histogram2dcontour/_ybins.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_ybins.py rename to plotly/validators/histogram2dcontour/_ybins.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_ycalendar.py b/plotly/validators/histogram2dcontour/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_ycalendar.py rename to plotly/validators/histogram2dcontour/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_yhoverformat.py b/plotly/validators/histogram2dcontour/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_yhoverformat.py rename to plotly/validators/histogram2dcontour/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_ysrc.py b/plotly/validators/histogram2dcontour/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_ysrc.py rename to plotly/validators/histogram2dcontour/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_z.py b/plotly/validators/histogram2dcontour/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_z.py rename to plotly/validators/histogram2dcontour/_z.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_zauto.py b/plotly/validators/histogram2dcontour/_zauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_zauto.py rename to plotly/validators/histogram2dcontour/_zauto.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_zhoverformat.py b/plotly/validators/histogram2dcontour/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_zhoverformat.py rename to plotly/validators/histogram2dcontour/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_zmax.py b/plotly/validators/histogram2dcontour/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_zmax.py rename to plotly/validators/histogram2dcontour/_zmax.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_zmid.py b/plotly/validators/histogram2dcontour/_zmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_zmid.py rename to plotly/validators/histogram2dcontour/_zmid.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_zmin.py b/plotly/validators/histogram2dcontour/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_zmin.py rename to plotly/validators/histogram2dcontour/_zmin.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/_zsrc.py b/plotly/validators/histogram2dcontour/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/_zsrc.py rename to plotly/validators/histogram2dcontour/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/__init__.py b/plotly/validators/histogram2dcontour/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/__init__.py rename to plotly/validators/histogram2dcontour/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_bgcolor.py b/plotly/validators/histogram2dcontour/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_bgcolor.py rename to plotly/validators/histogram2dcontour/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_bordercolor.py b/plotly/validators/histogram2dcontour/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_bordercolor.py rename to plotly/validators/histogram2dcontour/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_borderwidth.py b/plotly/validators/histogram2dcontour/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_borderwidth.py rename to plotly/validators/histogram2dcontour/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_dtick.py b/plotly/validators/histogram2dcontour/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_dtick.py rename to plotly/validators/histogram2dcontour/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_exponentformat.py b/plotly/validators/histogram2dcontour/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_exponentformat.py rename to plotly/validators/histogram2dcontour/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_labelalias.py b/plotly/validators/histogram2dcontour/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_labelalias.py rename to plotly/validators/histogram2dcontour/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_len.py b/plotly/validators/histogram2dcontour/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_len.py rename to plotly/validators/histogram2dcontour/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_lenmode.py b/plotly/validators/histogram2dcontour/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_lenmode.py rename to plotly/validators/histogram2dcontour/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_minexponent.py b/plotly/validators/histogram2dcontour/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_minexponent.py rename to plotly/validators/histogram2dcontour/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_nticks.py b/plotly/validators/histogram2dcontour/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_nticks.py rename to plotly/validators/histogram2dcontour/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_orientation.py b/plotly/validators/histogram2dcontour/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_orientation.py rename to plotly/validators/histogram2dcontour/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_outlinecolor.py b/plotly/validators/histogram2dcontour/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_outlinecolor.py rename to plotly/validators/histogram2dcontour/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_outlinewidth.py b/plotly/validators/histogram2dcontour/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_outlinewidth.py rename to plotly/validators/histogram2dcontour/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_separatethousands.py b/plotly/validators/histogram2dcontour/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_separatethousands.py rename to plotly/validators/histogram2dcontour/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showexponent.py b/plotly/validators/histogram2dcontour/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showexponent.py rename to plotly/validators/histogram2dcontour/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showticklabels.py b/plotly/validators/histogram2dcontour/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showticklabels.py rename to plotly/validators/histogram2dcontour/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showtickprefix.py b/plotly/validators/histogram2dcontour/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showtickprefix.py rename to plotly/validators/histogram2dcontour/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showticksuffix.py b/plotly/validators/histogram2dcontour/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_showticksuffix.py rename to plotly/validators/histogram2dcontour/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_thickness.py b/plotly/validators/histogram2dcontour/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_thickness.py rename to plotly/validators/histogram2dcontour/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_thicknessmode.py b/plotly/validators/histogram2dcontour/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_thicknessmode.py rename to plotly/validators/histogram2dcontour/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tick0.py b/plotly/validators/histogram2dcontour/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tick0.py rename to plotly/validators/histogram2dcontour/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickangle.py b/plotly/validators/histogram2dcontour/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickangle.py rename to plotly/validators/histogram2dcontour/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickcolor.py b/plotly/validators/histogram2dcontour/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickcolor.py rename to plotly/validators/histogram2dcontour/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickfont.py b/plotly/validators/histogram2dcontour/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickfont.py rename to plotly/validators/histogram2dcontour/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickformat.py b/plotly/validators/histogram2dcontour/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickformat.py rename to plotly/validators/histogram2dcontour/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py b/plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py rename to plotly/validators/histogram2dcontour/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickformatstops.py b/plotly/validators/histogram2dcontour/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickformatstops.py rename to plotly/validators/histogram2dcontour/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklabeloverflow.py b/plotly/validators/histogram2dcontour/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklabeloverflow.py rename to plotly/validators/histogram2dcontour/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklabelposition.py b/plotly/validators/histogram2dcontour/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklabelposition.py rename to plotly/validators/histogram2dcontour/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklabelstep.py b/plotly/validators/histogram2dcontour/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklabelstep.py rename to plotly/validators/histogram2dcontour/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklen.py b/plotly/validators/histogram2dcontour/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticklen.py rename to plotly/validators/histogram2dcontour/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickmode.py b/plotly/validators/histogram2dcontour/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickmode.py rename to plotly/validators/histogram2dcontour/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickprefix.py b/plotly/validators/histogram2dcontour/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickprefix.py rename to plotly/validators/histogram2dcontour/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticks.py b/plotly/validators/histogram2dcontour/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticks.py rename to plotly/validators/histogram2dcontour/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticksuffix.py b/plotly/validators/histogram2dcontour/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticksuffix.py rename to plotly/validators/histogram2dcontour/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticktext.py b/plotly/validators/histogram2dcontour/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticktext.py rename to plotly/validators/histogram2dcontour/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticktextsrc.py b/plotly/validators/histogram2dcontour/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ticktextsrc.py rename to plotly/validators/histogram2dcontour/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickvals.py b/plotly/validators/histogram2dcontour/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickvals.py rename to plotly/validators/histogram2dcontour/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickvalssrc.py b/plotly/validators/histogram2dcontour/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickvalssrc.py rename to plotly/validators/histogram2dcontour/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickwidth.py b/plotly/validators/histogram2dcontour/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_tickwidth.py rename to plotly/validators/histogram2dcontour/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_title.py b/plotly/validators/histogram2dcontour/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_title.py rename to plotly/validators/histogram2dcontour/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_x.py b/plotly/validators/histogram2dcontour/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_x.py rename to plotly/validators/histogram2dcontour/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_xanchor.py b/plotly/validators/histogram2dcontour/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_xanchor.py rename to plotly/validators/histogram2dcontour/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_xpad.py b/plotly/validators/histogram2dcontour/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_xpad.py rename to plotly/validators/histogram2dcontour/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_xref.py b/plotly/validators/histogram2dcontour/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_xref.py rename to plotly/validators/histogram2dcontour/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_y.py b/plotly/validators/histogram2dcontour/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_y.py rename to plotly/validators/histogram2dcontour/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_yanchor.py b/plotly/validators/histogram2dcontour/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_yanchor.py rename to plotly/validators/histogram2dcontour/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ypad.py b/plotly/validators/histogram2dcontour/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_ypad.py rename to plotly/validators/histogram2dcontour/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_yref.py b/plotly/validators/histogram2dcontour/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/_yref.py rename to plotly/validators/histogram2dcontour/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/__init__.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/__init__.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_color.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_color.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_family.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_family.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_lineposition.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_lineposition.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_shadow.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_shadow.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_size.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_size.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_style.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_style.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_textcase.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_textcase.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_variant.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_variant.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_weight.py b/plotly/validators/histogram2dcontour/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickfont/_weight.py rename to plotly/validators/histogram2dcontour/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/__init__.py b/plotly/validators/histogram2dcontour/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/__init__.py rename to plotly/validators/histogram2dcontour/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/histogram2dcontour/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_enabled.py b/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_enabled.py rename to plotly/validators/histogram2dcontour/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_name.py b/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_name.py rename to plotly/validators/histogram2dcontour/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/histogram2dcontour/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_value.py b/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/tickformatstop/_value.py rename to plotly/validators/histogram2dcontour/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/__init__.py b/plotly/validators/histogram2dcontour/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/__init__.py rename to plotly/validators/histogram2dcontour/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/_font.py b/plotly/validators/histogram2dcontour/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/_font.py rename to plotly/validators/histogram2dcontour/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/_side.py b/plotly/validators/histogram2dcontour/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/_side.py rename to plotly/validators/histogram2dcontour/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/_text.py b/plotly/validators/histogram2dcontour/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/_text.py rename to plotly/validators/histogram2dcontour/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/__init__.py b/plotly/validators/histogram2dcontour/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/__init__.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_color.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_color.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_family.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_family.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_lineposition.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_lineposition.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_shadow.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_shadow.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_size.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_size.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_style.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_style.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_textcase.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_textcase.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_variant.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_variant.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_weight.py b/plotly/validators/histogram2dcontour/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/colorbar/title/font/_weight.py rename to plotly/validators/histogram2dcontour/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/__init__.py b/plotly/validators/histogram2dcontour/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/__init__.py rename to plotly/validators/histogram2dcontour/contours/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_coloring.py b/plotly/validators/histogram2dcontour/contours/_coloring.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_coloring.py rename to plotly/validators/histogram2dcontour/contours/_coloring.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_end.py b/plotly/validators/histogram2dcontour/contours/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_end.py rename to plotly/validators/histogram2dcontour/contours/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_labelfont.py b/plotly/validators/histogram2dcontour/contours/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_labelfont.py rename to plotly/validators/histogram2dcontour/contours/_labelfont.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_labelformat.py b/plotly/validators/histogram2dcontour/contours/_labelformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_labelformat.py rename to plotly/validators/histogram2dcontour/contours/_labelformat.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_operation.py b/plotly/validators/histogram2dcontour/contours/_operation.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_operation.py rename to plotly/validators/histogram2dcontour/contours/_operation.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_showlabels.py b/plotly/validators/histogram2dcontour/contours/_showlabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_showlabels.py rename to plotly/validators/histogram2dcontour/contours/_showlabels.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_showlines.py b/plotly/validators/histogram2dcontour/contours/_showlines.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_showlines.py rename to plotly/validators/histogram2dcontour/contours/_showlines.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_size.py b/plotly/validators/histogram2dcontour/contours/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_size.py rename to plotly/validators/histogram2dcontour/contours/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_start.py b/plotly/validators/histogram2dcontour/contours/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_start.py rename to plotly/validators/histogram2dcontour/contours/_start.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_type.py b/plotly/validators/histogram2dcontour/contours/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_type.py rename to plotly/validators/histogram2dcontour/contours/_type.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/_value.py b/plotly/validators/histogram2dcontour/contours/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/_value.py rename to plotly/validators/histogram2dcontour/contours/_value.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/__init__.py b/plotly/validators/histogram2dcontour/contours/labelfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/__init__.py rename to plotly/validators/histogram2dcontour/contours/labelfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_color.py b/plotly/validators/histogram2dcontour/contours/labelfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_color.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_family.py b/plotly/validators/histogram2dcontour/contours/labelfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_family.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_lineposition.py b/plotly/validators/histogram2dcontour/contours/labelfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_lineposition.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_shadow.py b/plotly/validators/histogram2dcontour/contours/labelfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_shadow.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_size.py b/plotly/validators/histogram2dcontour/contours/labelfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_size.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_style.py b/plotly/validators/histogram2dcontour/contours/labelfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_style.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_textcase.py b/plotly/validators/histogram2dcontour/contours/labelfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_textcase.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_variant.py b/plotly/validators/histogram2dcontour/contours/labelfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_variant.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_weight.py b/plotly/validators/histogram2dcontour/contours/labelfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/contours/labelfont/_weight.py rename to plotly/validators/histogram2dcontour/contours/labelfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/__init__.py b/plotly/validators/histogram2dcontour/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/__init__.py rename to plotly/validators/histogram2dcontour/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_align.py b/plotly/validators/histogram2dcontour/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_align.py rename to plotly/validators/histogram2dcontour/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_alignsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_alignsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bgcolor.py b/plotly/validators/histogram2dcontour/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bgcolor.py rename to plotly/validators/histogram2dcontour/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bgcolorsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bgcolorsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bordercolor.py b/plotly/validators/histogram2dcontour/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bordercolor.py rename to plotly/validators/histogram2dcontour/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bordercolorsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_bordercolorsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_font.py b/plotly/validators/histogram2dcontour/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_font.py rename to plotly/validators/histogram2dcontour/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_namelength.py b/plotly/validators/histogram2dcontour/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_namelength.py rename to plotly/validators/histogram2dcontour/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_namelengthsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/_namelengthsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/__init__.py b/plotly/validators/histogram2dcontour/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/__init__.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_color.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_color.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_colorsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_colorsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_family.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_family.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_familysrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_familysrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_lineposition.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_lineposition.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_linepositionsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_shadow.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_shadow.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_shadowsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_shadowsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_size.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_size.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_sizesrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_sizesrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_style.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_style.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_stylesrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_stylesrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_textcase.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_textcase.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_textcasesrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_textcasesrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_variant.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_variant.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_variantsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_variantsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_weight.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_weight.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_weightsrc.py b/plotly/validators/histogram2dcontour/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/hoverlabel/font/_weightsrc.py rename to plotly/validators/histogram2dcontour/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/__init__.py b/plotly/validators/histogram2dcontour/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/__init__.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/_font.py b/plotly/validators/histogram2dcontour/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/_font.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/_text.py b/plotly/validators/histogram2dcontour/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/_text.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/__init__.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/__init__.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_color.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_color.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_family.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_family.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_lineposition.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_lineposition.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_shadow.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_shadow.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_size.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_size.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_style.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_style.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_textcase.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_textcase.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_variant.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_variant.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_weight.py b/plotly/validators/histogram2dcontour/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/legendgrouptitle/font/_weight.py rename to plotly/validators/histogram2dcontour/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/line/__init__.py b/plotly/validators/histogram2dcontour/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/line/__init__.py rename to plotly/validators/histogram2dcontour/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/line/_color.py b/plotly/validators/histogram2dcontour/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/line/_color.py rename to plotly/validators/histogram2dcontour/line/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/line/_dash.py b/plotly/validators/histogram2dcontour/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/line/_dash.py rename to plotly/validators/histogram2dcontour/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/line/_smoothing.py b/plotly/validators/histogram2dcontour/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/line/_smoothing.py rename to plotly/validators/histogram2dcontour/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/line/_width.py b/plotly/validators/histogram2dcontour/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/line/_width.py rename to plotly/validators/histogram2dcontour/line/_width.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/marker/__init__.py b/plotly/validators/histogram2dcontour/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/marker/__init__.py rename to plotly/validators/histogram2dcontour/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/marker/_color.py b/plotly/validators/histogram2dcontour/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/marker/_color.py rename to plotly/validators/histogram2dcontour/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/marker/_colorsrc.py b/plotly/validators/histogram2dcontour/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/marker/_colorsrc.py rename to plotly/validators/histogram2dcontour/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/stream/__init__.py b/plotly/validators/histogram2dcontour/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/stream/__init__.py rename to plotly/validators/histogram2dcontour/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/stream/_maxpoints.py b/plotly/validators/histogram2dcontour/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/stream/_maxpoints.py rename to plotly/validators/histogram2dcontour/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/stream/_token.py b/plotly/validators/histogram2dcontour/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/stream/_token.py rename to plotly/validators/histogram2dcontour/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/__init__.py b/plotly/validators/histogram2dcontour/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/__init__.py rename to plotly/validators/histogram2dcontour/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_color.py b/plotly/validators/histogram2dcontour/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_color.py rename to plotly/validators/histogram2dcontour/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_family.py b/plotly/validators/histogram2dcontour/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_family.py rename to plotly/validators/histogram2dcontour/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_lineposition.py b/plotly/validators/histogram2dcontour/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_lineposition.py rename to plotly/validators/histogram2dcontour/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_shadow.py b/plotly/validators/histogram2dcontour/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_shadow.py rename to plotly/validators/histogram2dcontour/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_size.py b/plotly/validators/histogram2dcontour/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_size.py rename to plotly/validators/histogram2dcontour/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_style.py b/plotly/validators/histogram2dcontour/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_style.py rename to plotly/validators/histogram2dcontour/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_textcase.py b/plotly/validators/histogram2dcontour/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_textcase.py rename to plotly/validators/histogram2dcontour/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_variant.py b/plotly/validators/histogram2dcontour/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_variant.py rename to plotly/validators/histogram2dcontour/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_weight.py b/plotly/validators/histogram2dcontour/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/textfont/_weight.py rename to plotly/validators/histogram2dcontour/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/xbins/__init__.py b/plotly/validators/histogram2dcontour/xbins/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/xbins/__init__.py rename to plotly/validators/histogram2dcontour/xbins/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/xbins/_end.py b/plotly/validators/histogram2dcontour/xbins/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/xbins/_end.py rename to plotly/validators/histogram2dcontour/xbins/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/xbins/_size.py b/plotly/validators/histogram2dcontour/xbins/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/xbins/_size.py rename to plotly/validators/histogram2dcontour/xbins/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/xbins/_start.py b/plotly/validators/histogram2dcontour/xbins/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/xbins/_start.py rename to plotly/validators/histogram2dcontour/xbins/_start.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/ybins/__init__.py b/plotly/validators/histogram2dcontour/ybins/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/ybins/__init__.py rename to plotly/validators/histogram2dcontour/ybins/__init__.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/ybins/_end.py b/plotly/validators/histogram2dcontour/ybins/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/ybins/_end.py rename to plotly/validators/histogram2dcontour/ybins/_end.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/ybins/_size.py b/plotly/validators/histogram2dcontour/ybins/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/ybins/_size.py rename to plotly/validators/histogram2dcontour/ybins/_size.py diff --git a/packages/python/plotly/plotly/validators/histogram2dcontour/ybins/_start.py b/plotly/validators/histogram2dcontour/ybins/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/histogram2dcontour/ybins/_start.py rename to plotly/validators/histogram2dcontour/ybins/_start.py diff --git a/packages/python/plotly/plotly/validators/icicle/__init__.py b/plotly/validators/icicle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/__init__.py rename to plotly/validators/icicle/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/_branchvalues.py b/plotly/validators/icicle/_branchvalues.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_branchvalues.py rename to plotly/validators/icicle/_branchvalues.py diff --git a/packages/python/plotly/plotly/validators/icicle/_count.py b/plotly/validators/icicle/_count.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_count.py rename to plotly/validators/icicle/_count.py diff --git a/packages/python/plotly/plotly/validators/icicle/_customdata.py b/plotly/validators/icicle/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_customdata.py rename to plotly/validators/icicle/_customdata.py diff --git a/packages/python/plotly/plotly/validators/icicle/_customdatasrc.py b/plotly/validators/icicle/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_customdatasrc.py rename to plotly/validators/icicle/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_domain.py b/plotly/validators/icicle/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_domain.py rename to plotly/validators/icicle/_domain.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hoverinfo.py b/plotly/validators/icicle/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hoverinfo.py rename to plotly/validators/icicle/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hoverinfosrc.py b/plotly/validators/icicle/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hoverinfosrc.py rename to plotly/validators/icicle/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hoverlabel.py b/plotly/validators/icicle/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hoverlabel.py rename to plotly/validators/icicle/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hovertemplate.py b/plotly/validators/icicle/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hovertemplate.py rename to plotly/validators/icicle/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hovertemplatesrc.py b/plotly/validators/icicle/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hovertemplatesrc.py rename to plotly/validators/icicle/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hovertext.py b/plotly/validators/icicle/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hovertext.py rename to plotly/validators/icicle/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/icicle/_hovertextsrc.py b/plotly/validators/icicle/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_hovertextsrc.py rename to plotly/validators/icicle/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_ids.py b/plotly/validators/icicle/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_ids.py rename to plotly/validators/icicle/_ids.py diff --git a/packages/python/plotly/plotly/validators/icicle/_idssrc.py b/plotly/validators/icicle/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_idssrc.py rename to plotly/validators/icicle/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_insidetextfont.py b/plotly/validators/icicle/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_insidetextfont.py rename to plotly/validators/icicle/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/icicle/_labels.py b/plotly/validators/icicle/_labels.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_labels.py rename to plotly/validators/icicle/_labels.py diff --git a/packages/python/plotly/plotly/validators/icicle/_labelssrc.py b/plotly/validators/icicle/_labelssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_labelssrc.py rename to plotly/validators/icicle/_labelssrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_leaf.py b/plotly/validators/icicle/_leaf.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_leaf.py rename to plotly/validators/icicle/_leaf.py diff --git a/packages/python/plotly/plotly/validators/icicle/_legend.py b/plotly/validators/icicle/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_legend.py rename to plotly/validators/icicle/_legend.py diff --git a/packages/python/plotly/plotly/validators/icicle/_legendgrouptitle.py b/plotly/validators/icicle/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_legendgrouptitle.py rename to plotly/validators/icicle/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/icicle/_legendrank.py b/plotly/validators/icicle/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_legendrank.py rename to plotly/validators/icicle/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/icicle/_legendwidth.py b/plotly/validators/icicle/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_legendwidth.py rename to plotly/validators/icicle/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/icicle/_level.py b/plotly/validators/icicle/_level.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_level.py rename to plotly/validators/icicle/_level.py diff --git a/packages/python/plotly/plotly/validators/icicle/_marker.py b/plotly/validators/icicle/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_marker.py rename to plotly/validators/icicle/_marker.py diff --git a/packages/python/plotly/plotly/validators/icicle/_maxdepth.py b/plotly/validators/icicle/_maxdepth.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_maxdepth.py rename to plotly/validators/icicle/_maxdepth.py diff --git a/packages/python/plotly/plotly/validators/icicle/_meta.py b/plotly/validators/icicle/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_meta.py rename to plotly/validators/icicle/_meta.py diff --git a/packages/python/plotly/plotly/validators/icicle/_metasrc.py b/plotly/validators/icicle/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_metasrc.py rename to plotly/validators/icicle/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_name.py b/plotly/validators/icicle/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_name.py rename to plotly/validators/icicle/_name.py diff --git a/packages/python/plotly/plotly/validators/icicle/_opacity.py b/plotly/validators/icicle/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_opacity.py rename to plotly/validators/icicle/_opacity.py diff --git a/packages/python/plotly/plotly/validators/icicle/_outsidetextfont.py b/plotly/validators/icicle/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_outsidetextfont.py rename to plotly/validators/icicle/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/icicle/_parents.py b/plotly/validators/icicle/_parents.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_parents.py rename to plotly/validators/icicle/_parents.py diff --git a/packages/python/plotly/plotly/validators/icicle/_parentssrc.py b/plotly/validators/icicle/_parentssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_parentssrc.py rename to plotly/validators/icicle/_parentssrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_pathbar.py b/plotly/validators/icicle/_pathbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_pathbar.py rename to plotly/validators/icicle/_pathbar.py diff --git a/packages/python/plotly/plotly/validators/icicle/_root.py b/plotly/validators/icicle/_root.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_root.py rename to plotly/validators/icicle/_root.py diff --git a/packages/python/plotly/plotly/validators/icicle/_sort.py b/plotly/validators/icicle/_sort.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_sort.py rename to plotly/validators/icicle/_sort.py diff --git a/packages/python/plotly/plotly/validators/icicle/_stream.py b/plotly/validators/icicle/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_stream.py rename to plotly/validators/icicle/_stream.py diff --git a/packages/python/plotly/plotly/validators/icicle/_text.py b/plotly/validators/icicle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_text.py rename to plotly/validators/icicle/_text.py diff --git a/packages/python/plotly/plotly/validators/icicle/_textfont.py b/plotly/validators/icicle/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_textfont.py rename to plotly/validators/icicle/_textfont.py diff --git a/packages/python/plotly/plotly/validators/icicle/_textinfo.py b/plotly/validators/icicle/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_textinfo.py rename to plotly/validators/icicle/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/icicle/_textposition.py b/plotly/validators/icicle/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_textposition.py rename to plotly/validators/icicle/_textposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/_textsrc.py b/plotly/validators/icicle/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_textsrc.py rename to plotly/validators/icicle/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_texttemplate.py b/plotly/validators/icicle/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_texttemplate.py rename to plotly/validators/icicle/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/icicle/_texttemplatesrc.py b/plotly/validators/icicle/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_texttemplatesrc.py rename to plotly/validators/icicle/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_tiling.py b/plotly/validators/icicle/_tiling.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_tiling.py rename to plotly/validators/icicle/_tiling.py diff --git a/packages/python/plotly/plotly/validators/icicle/_uid.py b/plotly/validators/icicle/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_uid.py rename to plotly/validators/icicle/_uid.py diff --git a/packages/python/plotly/plotly/validators/icicle/_uirevision.py b/plotly/validators/icicle/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_uirevision.py rename to plotly/validators/icicle/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/icicle/_values.py b/plotly/validators/icicle/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_values.py rename to plotly/validators/icicle/_values.py diff --git a/packages/python/plotly/plotly/validators/icicle/_valuessrc.py b/plotly/validators/icicle/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_valuessrc.py rename to plotly/validators/icicle/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/_visible.py b/plotly/validators/icicle/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/_visible.py rename to plotly/validators/icicle/_visible.py diff --git a/packages/python/plotly/plotly/validators/icicle/domain/__init__.py b/plotly/validators/icicle/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/domain/__init__.py rename to plotly/validators/icicle/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/domain/_column.py b/plotly/validators/icicle/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/domain/_column.py rename to plotly/validators/icicle/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/icicle/domain/_row.py b/plotly/validators/icicle/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/domain/_row.py rename to plotly/validators/icicle/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/icicle/domain/_x.py b/plotly/validators/icicle/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/domain/_x.py rename to plotly/validators/icicle/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/icicle/domain/_y.py b/plotly/validators/icicle/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/domain/_y.py rename to plotly/validators/icicle/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/__init__.py b/plotly/validators/icicle/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/__init__.py rename to plotly/validators/icicle/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_align.py b/plotly/validators/icicle/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_align.py rename to plotly/validators/icicle/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_alignsrc.py b/plotly/validators/icicle/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_alignsrc.py rename to plotly/validators/icicle/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_bgcolor.py b/plotly/validators/icicle/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_bgcolor.py rename to plotly/validators/icicle/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_bgcolorsrc.py b/plotly/validators/icicle/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_bgcolorsrc.py rename to plotly/validators/icicle/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_bordercolor.py b/plotly/validators/icicle/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_bordercolor.py rename to plotly/validators/icicle/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_bordercolorsrc.py b/plotly/validators/icicle/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_bordercolorsrc.py rename to plotly/validators/icicle/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_font.py b/plotly/validators/icicle/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_font.py rename to plotly/validators/icicle/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_namelength.py b/plotly/validators/icicle/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_namelength.py rename to plotly/validators/icicle/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/_namelengthsrc.py b/plotly/validators/icicle/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/_namelengthsrc.py rename to plotly/validators/icicle/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/__init__.py b/plotly/validators/icicle/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/__init__.py rename to plotly/validators/icicle/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_color.py b/plotly/validators/icicle/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_color.py rename to plotly/validators/icicle/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_colorsrc.py b/plotly/validators/icicle/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_colorsrc.py rename to plotly/validators/icicle/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_family.py b/plotly/validators/icicle/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_family.py rename to plotly/validators/icicle/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_familysrc.py b/plotly/validators/icicle/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_familysrc.py rename to plotly/validators/icicle/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_lineposition.py b/plotly/validators/icicle/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_lineposition.py rename to plotly/validators/icicle/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_linepositionsrc.py b/plotly/validators/icicle/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/icicle/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_shadow.py b/plotly/validators/icicle/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_shadow.py rename to plotly/validators/icicle/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_shadowsrc.py b/plotly/validators/icicle/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_shadowsrc.py rename to plotly/validators/icicle/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_size.py b/plotly/validators/icicle/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_size.py rename to plotly/validators/icicle/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_sizesrc.py b/plotly/validators/icicle/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_sizesrc.py rename to plotly/validators/icicle/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_style.py b/plotly/validators/icicle/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_style.py rename to plotly/validators/icicle/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_stylesrc.py b/plotly/validators/icicle/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_stylesrc.py rename to plotly/validators/icicle/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_textcase.py b/plotly/validators/icicle/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_textcase.py rename to plotly/validators/icicle/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_textcasesrc.py b/plotly/validators/icicle/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_textcasesrc.py rename to plotly/validators/icicle/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_variant.py b/plotly/validators/icicle/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_variant.py rename to plotly/validators/icicle/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_variantsrc.py b/plotly/validators/icicle/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_variantsrc.py rename to plotly/validators/icicle/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_weight.py b/plotly/validators/icicle/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_weight.py rename to plotly/validators/icicle/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_weightsrc.py b/plotly/validators/icicle/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/hoverlabel/font/_weightsrc.py rename to plotly/validators/icicle/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/__init__.py b/plotly/validators/icicle/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/__init__.py rename to plotly/validators/icicle/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_color.py b/plotly/validators/icicle/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_color.py rename to plotly/validators/icicle/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_colorsrc.py b/plotly/validators/icicle/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_colorsrc.py rename to plotly/validators/icicle/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_family.py b/plotly/validators/icicle/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_family.py rename to plotly/validators/icicle/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_familysrc.py b/plotly/validators/icicle/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_familysrc.py rename to plotly/validators/icicle/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_lineposition.py b/plotly/validators/icicle/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_lineposition.py rename to plotly/validators/icicle/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_linepositionsrc.py b/plotly/validators/icicle/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_linepositionsrc.py rename to plotly/validators/icicle/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_shadow.py b/plotly/validators/icicle/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_shadow.py rename to plotly/validators/icicle/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_shadowsrc.py b/plotly/validators/icicle/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_shadowsrc.py rename to plotly/validators/icicle/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_size.py b/plotly/validators/icicle/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_size.py rename to plotly/validators/icicle/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_sizesrc.py b/plotly/validators/icicle/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_sizesrc.py rename to plotly/validators/icicle/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_style.py b/plotly/validators/icicle/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_style.py rename to plotly/validators/icicle/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_stylesrc.py b/plotly/validators/icicle/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_stylesrc.py rename to plotly/validators/icicle/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_textcase.py b/plotly/validators/icicle/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_textcase.py rename to plotly/validators/icicle/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_textcasesrc.py b/plotly/validators/icicle/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_textcasesrc.py rename to plotly/validators/icicle/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_variant.py b/plotly/validators/icicle/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_variant.py rename to plotly/validators/icicle/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_variantsrc.py b/plotly/validators/icicle/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_variantsrc.py rename to plotly/validators/icicle/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_weight.py b/plotly/validators/icicle/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_weight.py rename to plotly/validators/icicle/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/insidetextfont/_weightsrc.py b/plotly/validators/icicle/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/insidetextfont/_weightsrc.py rename to plotly/validators/icicle/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/leaf/__init__.py b/plotly/validators/icicle/leaf/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/leaf/__init__.py rename to plotly/validators/icicle/leaf/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/leaf/_opacity.py b/plotly/validators/icicle/leaf/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/leaf/_opacity.py rename to plotly/validators/icicle/leaf/_opacity.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/__init__.py b/plotly/validators/icicle/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/__init__.py rename to plotly/validators/icicle/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/_font.py b/plotly/validators/icicle/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/_font.py rename to plotly/validators/icicle/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/_text.py b/plotly/validators/icicle/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/_text.py rename to plotly/validators/icicle/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/__init__.py b/plotly/validators/icicle/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/__init__.py rename to plotly/validators/icicle/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_color.py b/plotly/validators/icicle/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_color.py rename to plotly/validators/icicle/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_family.py b/plotly/validators/icicle/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_family.py rename to plotly/validators/icicle/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_lineposition.py b/plotly/validators/icicle/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_lineposition.py rename to plotly/validators/icicle/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_shadow.py b/plotly/validators/icicle/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_shadow.py rename to plotly/validators/icicle/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_size.py b/plotly/validators/icicle/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_size.py rename to plotly/validators/icicle/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_style.py b/plotly/validators/icicle/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_style.py rename to plotly/validators/icicle/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_textcase.py b/plotly/validators/icicle/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_textcase.py rename to plotly/validators/icicle/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_variant.py b/plotly/validators/icicle/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_variant.py rename to plotly/validators/icicle/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_weight.py b/plotly/validators/icicle/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/legendgrouptitle/font/_weight.py rename to plotly/validators/icicle/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/__init__.py b/plotly/validators/icicle/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/__init__.py rename to plotly/validators/icicle/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_autocolorscale.py b/plotly/validators/icicle/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_autocolorscale.py rename to plotly/validators/icicle/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_cauto.py b/plotly/validators/icicle/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_cauto.py rename to plotly/validators/icicle/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_cmax.py b/plotly/validators/icicle/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_cmax.py rename to plotly/validators/icicle/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_cmid.py b/plotly/validators/icicle/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_cmid.py rename to plotly/validators/icicle/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_cmin.py b/plotly/validators/icicle/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_cmin.py rename to plotly/validators/icicle/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_coloraxis.py b/plotly/validators/icicle/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_coloraxis.py rename to plotly/validators/icicle/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_colorbar.py b/plotly/validators/icicle/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_colorbar.py rename to plotly/validators/icicle/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_colors.py b/plotly/validators/icicle/marker/_colors.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_colors.py rename to plotly/validators/icicle/marker/_colors.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_colorscale.py b/plotly/validators/icicle/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_colorscale.py rename to plotly/validators/icicle/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_colorssrc.py b/plotly/validators/icicle/marker/_colorssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_colorssrc.py rename to plotly/validators/icicle/marker/_colorssrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_line.py b/plotly/validators/icicle/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_line.py rename to plotly/validators/icicle/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_pattern.py b/plotly/validators/icicle/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_pattern.py rename to plotly/validators/icicle/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_reversescale.py b/plotly/validators/icicle/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_reversescale.py rename to plotly/validators/icicle/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/_showscale.py b/plotly/validators/icicle/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/_showscale.py rename to plotly/validators/icicle/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/__init__.py b/plotly/validators/icicle/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/__init__.py rename to plotly/validators/icicle/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_bgcolor.py b/plotly/validators/icicle/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_bgcolor.py rename to plotly/validators/icicle/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_bordercolor.py b/plotly/validators/icicle/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_bordercolor.py rename to plotly/validators/icicle/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_borderwidth.py b/plotly/validators/icicle/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_borderwidth.py rename to plotly/validators/icicle/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_dtick.py b/plotly/validators/icicle/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_dtick.py rename to plotly/validators/icicle/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_exponentformat.py b/plotly/validators/icicle/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_exponentformat.py rename to plotly/validators/icicle/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_labelalias.py b/plotly/validators/icicle/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_labelalias.py rename to plotly/validators/icicle/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_len.py b/plotly/validators/icicle/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_len.py rename to plotly/validators/icicle/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_lenmode.py b/plotly/validators/icicle/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_lenmode.py rename to plotly/validators/icicle/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_minexponent.py b/plotly/validators/icicle/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_minexponent.py rename to plotly/validators/icicle/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_nticks.py b/plotly/validators/icicle/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_nticks.py rename to plotly/validators/icicle/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_orientation.py b/plotly/validators/icicle/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_orientation.py rename to plotly/validators/icicle/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_outlinecolor.py b/plotly/validators/icicle/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_outlinecolor.py rename to plotly/validators/icicle/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_outlinewidth.py b/plotly/validators/icicle/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_outlinewidth.py rename to plotly/validators/icicle/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_separatethousands.py b/plotly/validators/icicle/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_separatethousands.py rename to plotly/validators/icicle/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showexponent.py b/plotly/validators/icicle/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showexponent.py rename to plotly/validators/icicle/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showticklabels.py b/plotly/validators/icicle/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showticklabels.py rename to plotly/validators/icicle/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showtickprefix.py b/plotly/validators/icicle/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showtickprefix.py rename to plotly/validators/icicle/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showticksuffix.py b/plotly/validators/icicle/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_showticksuffix.py rename to plotly/validators/icicle/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_thickness.py b/plotly/validators/icicle/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_thickness.py rename to plotly/validators/icicle/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_thicknessmode.py b/plotly/validators/icicle/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_thicknessmode.py rename to plotly/validators/icicle/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tick0.py b/plotly/validators/icicle/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tick0.py rename to plotly/validators/icicle/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickangle.py b/plotly/validators/icicle/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickangle.py rename to plotly/validators/icicle/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickcolor.py b/plotly/validators/icicle/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickcolor.py rename to plotly/validators/icicle/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickfont.py b/plotly/validators/icicle/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickfont.py rename to plotly/validators/icicle/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickformat.py b/plotly/validators/icicle/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickformat.py rename to plotly/validators/icicle/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/icicle/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/icicle/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickformatstops.py b/plotly/validators/icicle/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickformatstops.py rename to plotly/validators/icicle/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/icicle/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/icicle/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklabelposition.py b/plotly/validators/icicle/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklabelposition.py rename to plotly/validators/icicle/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklabelstep.py b/plotly/validators/icicle/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklabelstep.py rename to plotly/validators/icicle/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklen.py b/plotly/validators/icicle/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticklen.py rename to plotly/validators/icicle/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickmode.py b/plotly/validators/icicle/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickmode.py rename to plotly/validators/icicle/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickprefix.py b/plotly/validators/icicle/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickprefix.py rename to plotly/validators/icicle/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticks.py b/plotly/validators/icicle/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticks.py rename to plotly/validators/icicle/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticksuffix.py b/plotly/validators/icicle/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticksuffix.py rename to plotly/validators/icicle/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticktext.py b/plotly/validators/icicle/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticktext.py rename to plotly/validators/icicle/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticktextsrc.py b/plotly/validators/icicle/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ticktextsrc.py rename to plotly/validators/icicle/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickvals.py b/plotly/validators/icicle/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickvals.py rename to plotly/validators/icicle/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickvalssrc.py b/plotly/validators/icicle/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickvalssrc.py rename to plotly/validators/icicle/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickwidth.py b/plotly/validators/icicle/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_tickwidth.py rename to plotly/validators/icicle/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_title.py b/plotly/validators/icicle/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_title.py rename to plotly/validators/icicle/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_x.py b/plotly/validators/icicle/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_x.py rename to plotly/validators/icicle/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_xanchor.py b/plotly/validators/icicle/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_xanchor.py rename to plotly/validators/icicle/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_xpad.py b/plotly/validators/icicle/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_xpad.py rename to plotly/validators/icicle/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_xref.py b/plotly/validators/icicle/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_xref.py rename to plotly/validators/icicle/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_y.py b/plotly/validators/icicle/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_y.py rename to plotly/validators/icicle/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_yanchor.py b/plotly/validators/icicle/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_yanchor.py rename to plotly/validators/icicle/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ypad.py b/plotly/validators/icicle/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_ypad.py rename to plotly/validators/icicle/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/_yref.py b/plotly/validators/icicle/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/_yref.py rename to plotly/validators/icicle/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/__init__.py b/plotly/validators/icicle/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/__init__.py rename to plotly/validators/icicle/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_color.py b/plotly/validators/icicle/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_color.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_family.py b/plotly/validators/icicle/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_family.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/icicle/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_shadow.py b/plotly/validators/icicle/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_size.py b/plotly/validators/icicle/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_size.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_style.py b/plotly/validators/icicle/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_style.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_textcase.py b/plotly/validators/icicle/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_variant.py b/plotly/validators/icicle/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_variant.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_weight.py b/plotly/validators/icicle/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickfont/_weight.py rename to plotly/validators/icicle/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/icicle/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/icicle/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/icicle/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/icicle/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/icicle/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/icicle/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_name.py b/plotly/validators/icicle/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/icicle/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/icicle/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/icicle/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_value.py b/plotly/validators/icicle/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/icicle/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/__init__.py b/plotly/validators/icicle/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/__init__.py rename to plotly/validators/icicle/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/_font.py b/plotly/validators/icicle/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/_font.py rename to plotly/validators/icicle/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/_side.py b/plotly/validators/icicle/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/_side.py rename to plotly/validators/icicle/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/_text.py b/plotly/validators/icicle/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/_text.py rename to plotly/validators/icicle/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/__init__.py b/plotly/validators/icicle/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/__init__.py rename to plotly/validators/icicle/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_color.py b/plotly/validators/icicle/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_color.py rename to plotly/validators/icicle/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_family.py b/plotly/validators/icicle/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_family.py rename to plotly/validators/icicle/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_lineposition.py b/plotly/validators/icicle/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/icicle/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_shadow.py b/plotly/validators/icicle/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_shadow.py rename to plotly/validators/icicle/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_size.py b/plotly/validators/icicle/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_size.py rename to plotly/validators/icicle/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_style.py b/plotly/validators/icicle/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_style.py rename to plotly/validators/icicle/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_textcase.py b/plotly/validators/icicle/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_textcase.py rename to plotly/validators/icicle/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_variant.py b/plotly/validators/icicle/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_variant.py rename to plotly/validators/icicle/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_weight.py b/plotly/validators/icicle/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/colorbar/title/font/_weight.py rename to plotly/validators/icicle/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/line/__init__.py b/plotly/validators/icicle/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/line/__init__.py rename to plotly/validators/icicle/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/line/_color.py b/plotly/validators/icicle/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/line/_color.py rename to plotly/validators/icicle/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/line/_colorsrc.py b/plotly/validators/icicle/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/line/_colorsrc.py rename to plotly/validators/icicle/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/line/_width.py b/plotly/validators/icicle/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/line/_width.py rename to plotly/validators/icicle/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/line/_widthsrc.py b/plotly/validators/icicle/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/line/_widthsrc.py rename to plotly/validators/icicle/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/__init__.py b/plotly/validators/icicle/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/__init__.py rename to plotly/validators/icicle/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_bgcolor.py b/plotly/validators/icicle/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_bgcolor.py rename to plotly/validators/icicle/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_bgcolorsrc.py b/plotly/validators/icicle/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_bgcolorsrc.py rename to plotly/validators/icicle/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_fgcolor.py b/plotly/validators/icicle/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_fgcolor.py rename to plotly/validators/icicle/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_fgcolorsrc.py b/plotly/validators/icicle/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_fgcolorsrc.py rename to plotly/validators/icicle/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_fgopacity.py b/plotly/validators/icicle/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_fgopacity.py rename to plotly/validators/icicle/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_fillmode.py b/plotly/validators/icicle/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_fillmode.py rename to plotly/validators/icicle/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_shape.py b/plotly/validators/icicle/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_shape.py rename to plotly/validators/icicle/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_shapesrc.py b/plotly/validators/icicle/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_shapesrc.py rename to plotly/validators/icicle/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_size.py b/plotly/validators/icicle/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_size.py rename to plotly/validators/icicle/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_sizesrc.py b/plotly/validators/icicle/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_sizesrc.py rename to plotly/validators/icicle/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_solidity.py b/plotly/validators/icicle/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_solidity.py rename to plotly/validators/icicle/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/icicle/marker/pattern/_soliditysrc.py b/plotly/validators/icicle/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/marker/pattern/_soliditysrc.py rename to plotly/validators/icicle/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/__init__.py b/plotly/validators/icicle/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/__init__.py rename to plotly/validators/icicle/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_color.py b/plotly/validators/icicle/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_color.py rename to plotly/validators/icicle/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_colorsrc.py b/plotly/validators/icicle/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_colorsrc.py rename to plotly/validators/icicle/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_family.py b/plotly/validators/icicle/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_family.py rename to plotly/validators/icicle/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_familysrc.py b/plotly/validators/icicle/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_familysrc.py rename to plotly/validators/icicle/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_lineposition.py b/plotly/validators/icicle/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_lineposition.py rename to plotly/validators/icicle/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_linepositionsrc.py b/plotly/validators/icicle/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_linepositionsrc.py rename to plotly/validators/icicle/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_shadow.py b/plotly/validators/icicle/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_shadow.py rename to plotly/validators/icicle/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_shadowsrc.py b/plotly/validators/icicle/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_shadowsrc.py rename to plotly/validators/icicle/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_size.py b/plotly/validators/icicle/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_size.py rename to plotly/validators/icicle/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_sizesrc.py b/plotly/validators/icicle/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_sizesrc.py rename to plotly/validators/icicle/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_style.py b/plotly/validators/icicle/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_style.py rename to plotly/validators/icicle/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_stylesrc.py b/plotly/validators/icicle/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_stylesrc.py rename to plotly/validators/icicle/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_textcase.py b/plotly/validators/icicle/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_textcase.py rename to plotly/validators/icicle/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_textcasesrc.py b/plotly/validators/icicle/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_textcasesrc.py rename to plotly/validators/icicle/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_variant.py b/plotly/validators/icicle/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_variant.py rename to plotly/validators/icicle/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_variantsrc.py b/plotly/validators/icicle/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_variantsrc.py rename to plotly/validators/icicle/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_weight.py b/plotly/validators/icicle/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_weight.py rename to plotly/validators/icicle/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/outsidetextfont/_weightsrc.py b/plotly/validators/icicle/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/outsidetextfont/_weightsrc.py rename to plotly/validators/icicle/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/__init__.py b/plotly/validators/icicle/pathbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/__init__.py rename to plotly/validators/icicle/pathbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/_edgeshape.py b/plotly/validators/icicle/pathbar/_edgeshape.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/_edgeshape.py rename to plotly/validators/icicle/pathbar/_edgeshape.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/_side.py b/plotly/validators/icicle/pathbar/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/_side.py rename to plotly/validators/icicle/pathbar/_side.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/_textfont.py b/plotly/validators/icicle/pathbar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/_textfont.py rename to plotly/validators/icicle/pathbar/_textfont.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/_thickness.py b/plotly/validators/icicle/pathbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/_thickness.py rename to plotly/validators/icicle/pathbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/_visible.py b/plotly/validators/icicle/pathbar/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/_visible.py rename to plotly/validators/icicle/pathbar/_visible.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/__init__.py b/plotly/validators/icicle/pathbar/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/__init__.py rename to plotly/validators/icicle/pathbar/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_color.py b/plotly/validators/icicle/pathbar/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_color.py rename to plotly/validators/icicle/pathbar/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_colorsrc.py b/plotly/validators/icicle/pathbar/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_colorsrc.py rename to plotly/validators/icicle/pathbar/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_family.py b/plotly/validators/icicle/pathbar/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_family.py rename to plotly/validators/icicle/pathbar/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_familysrc.py b/plotly/validators/icicle/pathbar/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_familysrc.py rename to plotly/validators/icicle/pathbar/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_lineposition.py b/plotly/validators/icicle/pathbar/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_lineposition.py rename to plotly/validators/icicle/pathbar/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_linepositionsrc.py b/plotly/validators/icicle/pathbar/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_linepositionsrc.py rename to plotly/validators/icicle/pathbar/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_shadow.py b/plotly/validators/icicle/pathbar/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_shadow.py rename to plotly/validators/icicle/pathbar/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_shadowsrc.py b/plotly/validators/icicle/pathbar/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_shadowsrc.py rename to plotly/validators/icicle/pathbar/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_size.py b/plotly/validators/icicle/pathbar/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_size.py rename to plotly/validators/icicle/pathbar/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_sizesrc.py b/plotly/validators/icicle/pathbar/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_sizesrc.py rename to plotly/validators/icicle/pathbar/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_style.py b/plotly/validators/icicle/pathbar/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_style.py rename to plotly/validators/icicle/pathbar/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_stylesrc.py b/plotly/validators/icicle/pathbar/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_stylesrc.py rename to plotly/validators/icicle/pathbar/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_textcase.py b/plotly/validators/icicle/pathbar/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_textcase.py rename to plotly/validators/icicle/pathbar/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_textcasesrc.py b/plotly/validators/icicle/pathbar/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_textcasesrc.py rename to plotly/validators/icicle/pathbar/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_variant.py b/plotly/validators/icicle/pathbar/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_variant.py rename to plotly/validators/icicle/pathbar/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_variantsrc.py b/plotly/validators/icicle/pathbar/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_variantsrc.py rename to plotly/validators/icicle/pathbar/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_weight.py b/plotly/validators/icicle/pathbar/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_weight.py rename to plotly/validators/icicle/pathbar/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_weightsrc.py b/plotly/validators/icicle/pathbar/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/pathbar/textfont/_weightsrc.py rename to plotly/validators/icicle/pathbar/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/root/__init__.py b/plotly/validators/icicle/root/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/root/__init__.py rename to plotly/validators/icicle/root/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/root/_color.py b/plotly/validators/icicle/root/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/root/_color.py rename to plotly/validators/icicle/root/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/stream/__init__.py b/plotly/validators/icicle/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/stream/__init__.py rename to plotly/validators/icicle/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/stream/_maxpoints.py b/plotly/validators/icicle/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/stream/_maxpoints.py rename to plotly/validators/icicle/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/icicle/stream/_token.py b/plotly/validators/icicle/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/stream/_token.py rename to plotly/validators/icicle/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/__init__.py b/plotly/validators/icicle/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/__init__.py rename to plotly/validators/icicle/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_color.py b/plotly/validators/icicle/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_color.py rename to plotly/validators/icicle/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_colorsrc.py b/plotly/validators/icicle/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_colorsrc.py rename to plotly/validators/icicle/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_family.py b/plotly/validators/icicle/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_family.py rename to plotly/validators/icicle/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_familysrc.py b/plotly/validators/icicle/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_familysrc.py rename to plotly/validators/icicle/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_lineposition.py b/plotly/validators/icicle/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_lineposition.py rename to plotly/validators/icicle/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_linepositionsrc.py b/plotly/validators/icicle/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_linepositionsrc.py rename to plotly/validators/icicle/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_shadow.py b/plotly/validators/icicle/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_shadow.py rename to plotly/validators/icicle/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_shadowsrc.py b/plotly/validators/icicle/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_shadowsrc.py rename to plotly/validators/icicle/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_size.py b/plotly/validators/icicle/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_size.py rename to plotly/validators/icicle/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_sizesrc.py b/plotly/validators/icicle/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_sizesrc.py rename to plotly/validators/icicle/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_style.py b/plotly/validators/icicle/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_style.py rename to plotly/validators/icicle/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_stylesrc.py b/plotly/validators/icicle/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_stylesrc.py rename to plotly/validators/icicle/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_textcase.py b/plotly/validators/icicle/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_textcase.py rename to plotly/validators/icicle/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_textcasesrc.py b/plotly/validators/icicle/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_textcasesrc.py rename to plotly/validators/icicle/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_variant.py b/plotly/validators/icicle/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_variant.py rename to plotly/validators/icicle/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_variantsrc.py b/plotly/validators/icicle/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_variantsrc.py rename to plotly/validators/icicle/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_weight.py b/plotly/validators/icicle/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_weight.py rename to plotly/validators/icicle/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/icicle/textfont/_weightsrc.py b/plotly/validators/icicle/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/textfont/_weightsrc.py rename to plotly/validators/icicle/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/icicle/tiling/__init__.py b/plotly/validators/icicle/tiling/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/tiling/__init__.py rename to plotly/validators/icicle/tiling/__init__.py diff --git a/packages/python/plotly/plotly/validators/icicle/tiling/_flip.py b/plotly/validators/icicle/tiling/_flip.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/tiling/_flip.py rename to plotly/validators/icicle/tiling/_flip.py diff --git a/packages/python/plotly/plotly/validators/icicle/tiling/_orientation.py b/plotly/validators/icicle/tiling/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/tiling/_orientation.py rename to plotly/validators/icicle/tiling/_orientation.py diff --git a/packages/python/plotly/plotly/validators/icicle/tiling/_pad.py b/plotly/validators/icicle/tiling/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/icicle/tiling/_pad.py rename to plotly/validators/icicle/tiling/_pad.py diff --git a/packages/python/plotly/plotly/validators/image/__init__.py b/plotly/validators/image/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/__init__.py rename to plotly/validators/image/__init__.py diff --git a/packages/python/plotly/plotly/validators/image/_colormodel.py b/plotly/validators/image/_colormodel.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_colormodel.py rename to plotly/validators/image/_colormodel.py diff --git a/packages/python/plotly/plotly/validators/image/_customdata.py b/plotly/validators/image/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_customdata.py rename to plotly/validators/image/_customdata.py diff --git a/packages/python/plotly/plotly/validators/image/_customdatasrc.py b/plotly/validators/image/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_customdatasrc.py rename to plotly/validators/image/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/image/_dx.py b/plotly/validators/image/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_dx.py rename to plotly/validators/image/_dx.py diff --git a/packages/python/plotly/plotly/validators/image/_dy.py b/plotly/validators/image/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_dy.py rename to plotly/validators/image/_dy.py diff --git a/packages/python/plotly/plotly/validators/image/_hoverinfo.py b/plotly/validators/image/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hoverinfo.py rename to plotly/validators/image/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/image/_hoverinfosrc.py b/plotly/validators/image/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hoverinfosrc.py rename to plotly/validators/image/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/image/_hoverlabel.py b/plotly/validators/image/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hoverlabel.py rename to plotly/validators/image/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/image/_hovertemplate.py b/plotly/validators/image/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hovertemplate.py rename to plotly/validators/image/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/image/_hovertemplatesrc.py b/plotly/validators/image/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hovertemplatesrc.py rename to plotly/validators/image/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/image/_hovertext.py b/plotly/validators/image/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hovertext.py rename to plotly/validators/image/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/image/_hovertextsrc.py b/plotly/validators/image/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_hovertextsrc.py rename to plotly/validators/image/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/image/_ids.py b/plotly/validators/image/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_ids.py rename to plotly/validators/image/_ids.py diff --git a/packages/python/plotly/plotly/validators/image/_idssrc.py b/plotly/validators/image/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_idssrc.py rename to plotly/validators/image/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/image/_legend.py b/plotly/validators/image/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_legend.py rename to plotly/validators/image/_legend.py diff --git a/packages/python/plotly/plotly/validators/image/_legendgrouptitle.py b/plotly/validators/image/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_legendgrouptitle.py rename to plotly/validators/image/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/image/_legendrank.py b/plotly/validators/image/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_legendrank.py rename to plotly/validators/image/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/image/_legendwidth.py b/plotly/validators/image/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_legendwidth.py rename to plotly/validators/image/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/image/_meta.py b/plotly/validators/image/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_meta.py rename to plotly/validators/image/_meta.py diff --git a/packages/python/plotly/plotly/validators/image/_metasrc.py b/plotly/validators/image/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_metasrc.py rename to plotly/validators/image/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/image/_name.py b/plotly/validators/image/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_name.py rename to plotly/validators/image/_name.py diff --git a/packages/python/plotly/plotly/validators/image/_opacity.py b/plotly/validators/image/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_opacity.py rename to plotly/validators/image/_opacity.py diff --git a/packages/python/plotly/plotly/validators/image/_source.py b/plotly/validators/image/_source.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_source.py rename to plotly/validators/image/_source.py diff --git a/packages/python/plotly/plotly/validators/image/_stream.py b/plotly/validators/image/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_stream.py rename to plotly/validators/image/_stream.py diff --git a/packages/python/plotly/plotly/validators/image/_text.py b/plotly/validators/image/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_text.py rename to plotly/validators/image/_text.py diff --git a/packages/python/plotly/plotly/validators/image/_textsrc.py b/plotly/validators/image/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_textsrc.py rename to plotly/validators/image/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/image/_uid.py b/plotly/validators/image/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_uid.py rename to plotly/validators/image/_uid.py diff --git a/packages/python/plotly/plotly/validators/image/_uirevision.py b/plotly/validators/image/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_uirevision.py rename to plotly/validators/image/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/image/_visible.py b/plotly/validators/image/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_visible.py rename to plotly/validators/image/_visible.py diff --git a/packages/python/plotly/plotly/validators/image/_x0.py b/plotly/validators/image/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_x0.py rename to plotly/validators/image/_x0.py diff --git a/packages/python/plotly/plotly/validators/image/_xaxis.py b/plotly/validators/image/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_xaxis.py rename to plotly/validators/image/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/image/_y0.py b/plotly/validators/image/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_y0.py rename to plotly/validators/image/_y0.py diff --git a/packages/python/plotly/plotly/validators/image/_yaxis.py b/plotly/validators/image/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_yaxis.py rename to plotly/validators/image/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/image/_z.py b/plotly/validators/image/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_z.py rename to plotly/validators/image/_z.py diff --git a/packages/python/plotly/plotly/validators/image/_zmax.py b/plotly/validators/image/_zmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_zmax.py rename to plotly/validators/image/_zmax.py diff --git a/packages/python/plotly/plotly/validators/image/_zmin.py b/plotly/validators/image/_zmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_zmin.py rename to plotly/validators/image/_zmin.py diff --git a/packages/python/plotly/plotly/validators/image/_zorder.py b/plotly/validators/image/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_zorder.py rename to plotly/validators/image/_zorder.py diff --git a/packages/python/plotly/plotly/validators/image/_zsmooth.py b/plotly/validators/image/_zsmooth.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_zsmooth.py rename to plotly/validators/image/_zsmooth.py diff --git a/packages/python/plotly/plotly/validators/image/_zsrc.py b/plotly/validators/image/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/_zsrc.py rename to plotly/validators/image/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/__init__.py b/plotly/validators/image/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/__init__.py rename to plotly/validators/image/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_align.py b/plotly/validators/image/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_align.py rename to plotly/validators/image/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_alignsrc.py b/plotly/validators/image/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_alignsrc.py rename to plotly/validators/image/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_bgcolor.py b/plotly/validators/image/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_bgcolor.py rename to plotly/validators/image/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_bgcolorsrc.py b/plotly/validators/image/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_bgcolorsrc.py rename to plotly/validators/image/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_bordercolor.py b/plotly/validators/image/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_bordercolor.py rename to plotly/validators/image/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_bordercolorsrc.py b/plotly/validators/image/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_bordercolorsrc.py rename to plotly/validators/image/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_font.py b/plotly/validators/image/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_font.py rename to plotly/validators/image/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_namelength.py b/plotly/validators/image/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_namelength.py rename to plotly/validators/image/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/_namelengthsrc.py b/plotly/validators/image/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/_namelengthsrc.py rename to plotly/validators/image/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/__init__.py b/plotly/validators/image/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/__init__.py rename to plotly/validators/image/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_color.py b/plotly/validators/image/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_color.py rename to plotly/validators/image/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_colorsrc.py b/plotly/validators/image/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_colorsrc.py rename to plotly/validators/image/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_family.py b/plotly/validators/image/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_family.py rename to plotly/validators/image/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_familysrc.py b/plotly/validators/image/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_familysrc.py rename to plotly/validators/image/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_lineposition.py b/plotly/validators/image/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_lineposition.py rename to plotly/validators/image/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_linepositionsrc.py b/plotly/validators/image/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/image/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_shadow.py b/plotly/validators/image/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_shadow.py rename to plotly/validators/image/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_shadowsrc.py b/plotly/validators/image/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_shadowsrc.py rename to plotly/validators/image/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_size.py b/plotly/validators/image/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_size.py rename to plotly/validators/image/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_sizesrc.py b/plotly/validators/image/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_sizesrc.py rename to plotly/validators/image/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_style.py b/plotly/validators/image/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_style.py rename to plotly/validators/image/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_stylesrc.py b/plotly/validators/image/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_stylesrc.py rename to plotly/validators/image/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_textcase.py b/plotly/validators/image/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_textcase.py rename to plotly/validators/image/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_textcasesrc.py b/plotly/validators/image/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_textcasesrc.py rename to plotly/validators/image/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_variant.py b/plotly/validators/image/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_variant.py rename to plotly/validators/image/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_variantsrc.py b/plotly/validators/image/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_variantsrc.py rename to plotly/validators/image/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_weight.py b/plotly/validators/image/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_weight.py rename to plotly/validators/image/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/image/hoverlabel/font/_weightsrc.py b/plotly/validators/image/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/hoverlabel/font/_weightsrc.py rename to plotly/validators/image/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/__init__.py b/plotly/validators/image/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/__init__.py rename to plotly/validators/image/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/_font.py b/plotly/validators/image/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/_font.py rename to plotly/validators/image/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/_text.py b/plotly/validators/image/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/_text.py rename to plotly/validators/image/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/__init__.py b/plotly/validators/image/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/__init__.py rename to plotly/validators/image/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_color.py b/plotly/validators/image/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_color.py rename to plotly/validators/image/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_family.py b/plotly/validators/image/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_family.py rename to plotly/validators/image/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_lineposition.py b/plotly/validators/image/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_lineposition.py rename to plotly/validators/image/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_shadow.py b/plotly/validators/image/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_shadow.py rename to plotly/validators/image/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_size.py b/plotly/validators/image/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_size.py rename to plotly/validators/image/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_style.py b/plotly/validators/image/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_style.py rename to plotly/validators/image/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_textcase.py b/plotly/validators/image/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_textcase.py rename to plotly/validators/image/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_variant.py b/plotly/validators/image/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_variant.py rename to plotly/validators/image/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_weight.py b/plotly/validators/image/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/legendgrouptitle/font/_weight.py rename to plotly/validators/image/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/image/stream/__init__.py b/plotly/validators/image/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/stream/__init__.py rename to plotly/validators/image/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/image/stream/_maxpoints.py b/plotly/validators/image/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/stream/_maxpoints.py rename to plotly/validators/image/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/image/stream/_token.py b/plotly/validators/image/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/image/stream/_token.py rename to plotly/validators/image/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/indicator/__init__.py b/plotly/validators/indicator/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/__init__.py rename to plotly/validators/indicator/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/_align.py b/plotly/validators/indicator/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_align.py rename to plotly/validators/indicator/_align.py diff --git a/packages/python/plotly/plotly/validators/indicator/_customdata.py b/plotly/validators/indicator/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_customdata.py rename to plotly/validators/indicator/_customdata.py diff --git a/packages/python/plotly/plotly/validators/indicator/_customdatasrc.py b/plotly/validators/indicator/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_customdatasrc.py rename to plotly/validators/indicator/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/indicator/_delta.py b/plotly/validators/indicator/_delta.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_delta.py rename to plotly/validators/indicator/_delta.py diff --git a/packages/python/plotly/plotly/validators/indicator/_domain.py b/plotly/validators/indicator/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_domain.py rename to plotly/validators/indicator/_domain.py diff --git a/packages/python/plotly/plotly/validators/indicator/_gauge.py b/plotly/validators/indicator/_gauge.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_gauge.py rename to plotly/validators/indicator/_gauge.py diff --git a/packages/python/plotly/plotly/validators/indicator/_ids.py b/plotly/validators/indicator/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_ids.py rename to plotly/validators/indicator/_ids.py diff --git a/packages/python/plotly/plotly/validators/indicator/_idssrc.py b/plotly/validators/indicator/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_idssrc.py rename to plotly/validators/indicator/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/indicator/_legend.py b/plotly/validators/indicator/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_legend.py rename to plotly/validators/indicator/_legend.py diff --git a/packages/python/plotly/plotly/validators/indicator/_legendgrouptitle.py b/plotly/validators/indicator/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_legendgrouptitle.py rename to plotly/validators/indicator/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/indicator/_legendrank.py b/plotly/validators/indicator/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_legendrank.py rename to plotly/validators/indicator/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/indicator/_legendwidth.py b/plotly/validators/indicator/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_legendwidth.py rename to plotly/validators/indicator/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/indicator/_meta.py b/plotly/validators/indicator/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_meta.py rename to plotly/validators/indicator/_meta.py diff --git a/packages/python/plotly/plotly/validators/indicator/_metasrc.py b/plotly/validators/indicator/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_metasrc.py rename to plotly/validators/indicator/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/indicator/_mode.py b/plotly/validators/indicator/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_mode.py rename to plotly/validators/indicator/_mode.py diff --git a/packages/python/plotly/plotly/validators/indicator/_name.py b/plotly/validators/indicator/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_name.py rename to plotly/validators/indicator/_name.py diff --git a/packages/python/plotly/plotly/validators/indicator/_number.py b/plotly/validators/indicator/_number.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_number.py rename to plotly/validators/indicator/_number.py diff --git a/packages/python/plotly/plotly/validators/indicator/_stream.py b/plotly/validators/indicator/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_stream.py rename to plotly/validators/indicator/_stream.py diff --git a/packages/python/plotly/plotly/validators/indicator/_title.py b/plotly/validators/indicator/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_title.py rename to plotly/validators/indicator/_title.py diff --git a/packages/python/plotly/plotly/validators/indicator/_uid.py b/plotly/validators/indicator/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_uid.py rename to plotly/validators/indicator/_uid.py diff --git a/packages/python/plotly/plotly/validators/indicator/_uirevision.py b/plotly/validators/indicator/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_uirevision.py rename to plotly/validators/indicator/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/indicator/_value.py b/plotly/validators/indicator/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_value.py rename to plotly/validators/indicator/_value.py diff --git a/packages/python/plotly/plotly/validators/indicator/_visible.py b/plotly/validators/indicator/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/_visible.py rename to plotly/validators/indicator/_visible.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/__init__.py b/plotly/validators/indicator/delta/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/__init__.py rename to plotly/validators/indicator/delta/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_decreasing.py b/plotly/validators/indicator/delta/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_decreasing.py rename to plotly/validators/indicator/delta/_decreasing.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_font.py b/plotly/validators/indicator/delta/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_font.py rename to plotly/validators/indicator/delta/_font.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_increasing.py b/plotly/validators/indicator/delta/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_increasing.py rename to plotly/validators/indicator/delta/_increasing.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_position.py b/plotly/validators/indicator/delta/_position.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_position.py rename to plotly/validators/indicator/delta/_position.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_prefix.py b/plotly/validators/indicator/delta/_prefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_prefix.py rename to plotly/validators/indicator/delta/_prefix.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_reference.py b/plotly/validators/indicator/delta/_reference.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_reference.py rename to plotly/validators/indicator/delta/_reference.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_relative.py b/plotly/validators/indicator/delta/_relative.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_relative.py rename to plotly/validators/indicator/delta/_relative.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_suffix.py b/plotly/validators/indicator/delta/_suffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_suffix.py rename to plotly/validators/indicator/delta/_suffix.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/_valueformat.py b/plotly/validators/indicator/delta/_valueformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/_valueformat.py rename to plotly/validators/indicator/delta/_valueformat.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/decreasing/__init__.py b/plotly/validators/indicator/delta/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/decreasing/__init__.py rename to plotly/validators/indicator/delta/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/decreasing/_color.py b/plotly/validators/indicator/delta/decreasing/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/decreasing/_color.py rename to plotly/validators/indicator/delta/decreasing/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/decreasing/_symbol.py b/plotly/validators/indicator/delta/decreasing/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/decreasing/_symbol.py rename to plotly/validators/indicator/delta/decreasing/_symbol.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/__init__.py b/plotly/validators/indicator/delta/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/__init__.py rename to plotly/validators/indicator/delta/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_color.py b/plotly/validators/indicator/delta/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_color.py rename to plotly/validators/indicator/delta/font/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_family.py b/plotly/validators/indicator/delta/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_family.py rename to plotly/validators/indicator/delta/font/_family.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_lineposition.py b/plotly/validators/indicator/delta/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_lineposition.py rename to plotly/validators/indicator/delta/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_shadow.py b/plotly/validators/indicator/delta/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_shadow.py rename to plotly/validators/indicator/delta/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_size.py b/plotly/validators/indicator/delta/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_size.py rename to plotly/validators/indicator/delta/font/_size.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_style.py b/plotly/validators/indicator/delta/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_style.py rename to plotly/validators/indicator/delta/font/_style.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_textcase.py b/plotly/validators/indicator/delta/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_textcase.py rename to plotly/validators/indicator/delta/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_variant.py b/plotly/validators/indicator/delta/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_variant.py rename to plotly/validators/indicator/delta/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/font/_weight.py b/plotly/validators/indicator/delta/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/font/_weight.py rename to plotly/validators/indicator/delta/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/increasing/__init__.py b/plotly/validators/indicator/delta/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/increasing/__init__.py rename to plotly/validators/indicator/delta/increasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/increasing/_color.py b/plotly/validators/indicator/delta/increasing/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/increasing/_color.py rename to plotly/validators/indicator/delta/increasing/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/delta/increasing/_symbol.py b/plotly/validators/indicator/delta/increasing/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/delta/increasing/_symbol.py rename to plotly/validators/indicator/delta/increasing/_symbol.py diff --git a/packages/python/plotly/plotly/validators/indicator/domain/__init__.py b/plotly/validators/indicator/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/domain/__init__.py rename to plotly/validators/indicator/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/domain/_column.py b/plotly/validators/indicator/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/domain/_column.py rename to plotly/validators/indicator/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/indicator/domain/_row.py b/plotly/validators/indicator/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/domain/_row.py rename to plotly/validators/indicator/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/indicator/domain/_x.py b/plotly/validators/indicator/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/domain/_x.py rename to plotly/validators/indicator/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/indicator/domain/_y.py b/plotly/validators/indicator/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/domain/_y.py rename to plotly/validators/indicator/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/__init__.py b/plotly/validators/indicator/gauge/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/__init__.py rename to plotly/validators/indicator/gauge/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_axis.py b/plotly/validators/indicator/gauge/_axis.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_axis.py rename to plotly/validators/indicator/gauge/_axis.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_bar.py b/plotly/validators/indicator/gauge/_bar.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_bar.py rename to plotly/validators/indicator/gauge/_bar.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_bgcolor.py b/plotly/validators/indicator/gauge/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_bgcolor.py rename to plotly/validators/indicator/gauge/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_bordercolor.py b/plotly/validators/indicator/gauge/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_bordercolor.py rename to plotly/validators/indicator/gauge/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_borderwidth.py b/plotly/validators/indicator/gauge/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_borderwidth.py rename to plotly/validators/indicator/gauge/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_shape.py b/plotly/validators/indicator/gauge/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_shape.py rename to plotly/validators/indicator/gauge/_shape.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_stepdefaults.py b/plotly/validators/indicator/gauge/_stepdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_stepdefaults.py rename to plotly/validators/indicator/gauge/_stepdefaults.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_steps.py b/plotly/validators/indicator/gauge/_steps.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_steps.py rename to plotly/validators/indicator/gauge/_steps.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/_threshold.py b/plotly/validators/indicator/gauge/_threshold.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/_threshold.py rename to plotly/validators/indicator/gauge/_threshold.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/__init__.py b/plotly/validators/indicator/gauge/axis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/__init__.py rename to plotly/validators/indicator/gauge/axis/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_dtick.py b/plotly/validators/indicator/gauge/axis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_dtick.py rename to plotly/validators/indicator/gauge/axis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_exponentformat.py b/plotly/validators/indicator/gauge/axis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_exponentformat.py rename to plotly/validators/indicator/gauge/axis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_labelalias.py b/plotly/validators/indicator/gauge/axis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_labelalias.py rename to plotly/validators/indicator/gauge/axis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_minexponent.py b/plotly/validators/indicator/gauge/axis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_minexponent.py rename to plotly/validators/indicator/gauge/axis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_nticks.py b/plotly/validators/indicator/gauge/axis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_nticks.py rename to plotly/validators/indicator/gauge/axis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_range.py b/plotly/validators/indicator/gauge/axis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_range.py rename to plotly/validators/indicator/gauge/axis/_range.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_separatethousands.py b/plotly/validators/indicator/gauge/axis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_separatethousands.py rename to plotly/validators/indicator/gauge/axis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_showexponent.py b/plotly/validators/indicator/gauge/axis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_showexponent.py rename to plotly/validators/indicator/gauge/axis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_showticklabels.py b/plotly/validators/indicator/gauge/axis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_showticklabels.py rename to plotly/validators/indicator/gauge/axis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_showtickprefix.py b/plotly/validators/indicator/gauge/axis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_showtickprefix.py rename to plotly/validators/indicator/gauge/axis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_showticksuffix.py b/plotly/validators/indicator/gauge/axis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_showticksuffix.py rename to plotly/validators/indicator/gauge/axis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tick0.py b/plotly/validators/indicator/gauge/axis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tick0.py rename to plotly/validators/indicator/gauge/axis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickangle.py b/plotly/validators/indicator/gauge/axis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickangle.py rename to plotly/validators/indicator/gauge/axis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickcolor.py b/plotly/validators/indicator/gauge/axis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickcolor.py rename to plotly/validators/indicator/gauge/axis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickfont.py b/plotly/validators/indicator/gauge/axis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickfont.py rename to plotly/validators/indicator/gauge/axis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickformat.py b/plotly/validators/indicator/gauge/axis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickformat.py rename to plotly/validators/indicator/gauge/axis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickformatstopdefaults.py b/plotly/validators/indicator/gauge/axis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickformatstopdefaults.py rename to plotly/validators/indicator/gauge/axis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickformatstops.py b/plotly/validators/indicator/gauge/axis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickformatstops.py rename to plotly/validators/indicator/gauge/axis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticklabelstep.py b/plotly/validators/indicator/gauge/axis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticklabelstep.py rename to plotly/validators/indicator/gauge/axis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticklen.py b/plotly/validators/indicator/gauge/axis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticklen.py rename to plotly/validators/indicator/gauge/axis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickmode.py b/plotly/validators/indicator/gauge/axis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickmode.py rename to plotly/validators/indicator/gauge/axis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickprefix.py b/plotly/validators/indicator/gauge/axis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickprefix.py rename to plotly/validators/indicator/gauge/axis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticks.py b/plotly/validators/indicator/gauge/axis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticks.py rename to plotly/validators/indicator/gauge/axis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticksuffix.py b/plotly/validators/indicator/gauge/axis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticksuffix.py rename to plotly/validators/indicator/gauge/axis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticktext.py b/plotly/validators/indicator/gauge/axis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticktext.py rename to plotly/validators/indicator/gauge/axis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticktextsrc.py b/plotly/validators/indicator/gauge/axis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_ticktextsrc.py rename to plotly/validators/indicator/gauge/axis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickvals.py b/plotly/validators/indicator/gauge/axis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickvals.py rename to plotly/validators/indicator/gauge/axis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickvalssrc.py b/plotly/validators/indicator/gauge/axis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickvalssrc.py rename to plotly/validators/indicator/gauge/axis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickwidth.py b/plotly/validators/indicator/gauge/axis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_tickwidth.py rename to plotly/validators/indicator/gauge/axis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/_visible.py b/plotly/validators/indicator/gauge/axis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/_visible.py rename to plotly/validators/indicator/gauge/axis/_visible.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/__init__.py b/plotly/validators/indicator/gauge/axis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/__init__.py rename to plotly/validators/indicator/gauge/axis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_color.py b/plotly/validators/indicator/gauge/axis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_color.py rename to plotly/validators/indicator/gauge/axis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_family.py b/plotly/validators/indicator/gauge/axis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_family.py rename to plotly/validators/indicator/gauge/axis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_lineposition.py b/plotly/validators/indicator/gauge/axis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_lineposition.py rename to plotly/validators/indicator/gauge/axis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_shadow.py b/plotly/validators/indicator/gauge/axis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_shadow.py rename to plotly/validators/indicator/gauge/axis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_size.py b/plotly/validators/indicator/gauge/axis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_size.py rename to plotly/validators/indicator/gauge/axis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_style.py b/plotly/validators/indicator/gauge/axis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_style.py rename to plotly/validators/indicator/gauge/axis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_textcase.py b/plotly/validators/indicator/gauge/axis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_textcase.py rename to plotly/validators/indicator/gauge/axis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_variant.py b/plotly/validators/indicator/gauge/axis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_variant.py rename to plotly/validators/indicator/gauge/axis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_weight.py b/plotly/validators/indicator/gauge/axis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickfont/_weight.py rename to plotly/validators/indicator/gauge/axis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/__init__.py b/plotly/validators/indicator/gauge/axis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/__init__.py rename to plotly/validators/indicator/gauge/axis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_dtickrange.py b/plotly/validators/indicator/gauge/axis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_dtickrange.py rename to plotly/validators/indicator/gauge/axis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_enabled.py b/plotly/validators/indicator/gauge/axis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_enabled.py rename to plotly/validators/indicator/gauge/axis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_name.py b/plotly/validators/indicator/gauge/axis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_name.py rename to plotly/validators/indicator/gauge/axis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_templateitemname.py b/plotly/validators/indicator/gauge/axis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_templateitemname.py rename to plotly/validators/indicator/gauge/axis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_value.py b/plotly/validators/indicator/gauge/axis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/axis/tickformatstop/_value.py rename to plotly/validators/indicator/gauge/axis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/__init__.py b/plotly/validators/indicator/gauge/bar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/__init__.py rename to plotly/validators/indicator/gauge/bar/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/_color.py b/plotly/validators/indicator/gauge/bar/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/_color.py rename to plotly/validators/indicator/gauge/bar/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/_line.py b/plotly/validators/indicator/gauge/bar/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/_line.py rename to plotly/validators/indicator/gauge/bar/_line.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/_thickness.py b/plotly/validators/indicator/gauge/bar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/_thickness.py rename to plotly/validators/indicator/gauge/bar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/line/__init__.py b/plotly/validators/indicator/gauge/bar/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/line/__init__.py rename to plotly/validators/indicator/gauge/bar/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/line/_color.py b/plotly/validators/indicator/gauge/bar/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/line/_color.py rename to plotly/validators/indicator/gauge/bar/line/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/bar/line/_width.py b/plotly/validators/indicator/gauge/bar/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/bar/line/_width.py rename to plotly/validators/indicator/gauge/bar/line/_width.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/__init__.py b/plotly/validators/indicator/gauge/step/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/__init__.py rename to plotly/validators/indicator/gauge/step/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/_color.py b/plotly/validators/indicator/gauge/step/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/_color.py rename to plotly/validators/indicator/gauge/step/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/_line.py b/plotly/validators/indicator/gauge/step/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/_line.py rename to plotly/validators/indicator/gauge/step/_line.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/_name.py b/plotly/validators/indicator/gauge/step/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/_name.py rename to plotly/validators/indicator/gauge/step/_name.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/_range.py b/plotly/validators/indicator/gauge/step/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/_range.py rename to plotly/validators/indicator/gauge/step/_range.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/_templateitemname.py b/plotly/validators/indicator/gauge/step/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/_templateitemname.py rename to plotly/validators/indicator/gauge/step/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/_thickness.py b/plotly/validators/indicator/gauge/step/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/_thickness.py rename to plotly/validators/indicator/gauge/step/_thickness.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/line/__init__.py b/plotly/validators/indicator/gauge/step/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/line/__init__.py rename to plotly/validators/indicator/gauge/step/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/line/_color.py b/plotly/validators/indicator/gauge/step/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/line/_color.py rename to plotly/validators/indicator/gauge/step/line/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/step/line/_width.py b/plotly/validators/indicator/gauge/step/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/step/line/_width.py rename to plotly/validators/indicator/gauge/step/line/_width.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/__init__.py b/plotly/validators/indicator/gauge/threshold/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/__init__.py rename to plotly/validators/indicator/gauge/threshold/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/_line.py b/plotly/validators/indicator/gauge/threshold/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/_line.py rename to plotly/validators/indicator/gauge/threshold/_line.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/_thickness.py b/plotly/validators/indicator/gauge/threshold/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/_thickness.py rename to plotly/validators/indicator/gauge/threshold/_thickness.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/_value.py b/plotly/validators/indicator/gauge/threshold/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/_value.py rename to plotly/validators/indicator/gauge/threshold/_value.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/line/__init__.py b/plotly/validators/indicator/gauge/threshold/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/line/__init__.py rename to plotly/validators/indicator/gauge/threshold/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/line/_color.py b/plotly/validators/indicator/gauge/threshold/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/line/_color.py rename to plotly/validators/indicator/gauge/threshold/line/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/gauge/threshold/line/_width.py b/plotly/validators/indicator/gauge/threshold/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/gauge/threshold/line/_width.py rename to plotly/validators/indicator/gauge/threshold/line/_width.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/__init__.py b/plotly/validators/indicator/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/__init__.py rename to plotly/validators/indicator/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/_font.py b/plotly/validators/indicator/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/_font.py rename to plotly/validators/indicator/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/_text.py b/plotly/validators/indicator/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/_text.py rename to plotly/validators/indicator/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/__init__.py b/plotly/validators/indicator/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/__init__.py rename to plotly/validators/indicator/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_color.py b/plotly/validators/indicator/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_color.py rename to plotly/validators/indicator/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_family.py b/plotly/validators/indicator/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_family.py rename to plotly/validators/indicator/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_lineposition.py b/plotly/validators/indicator/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_lineposition.py rename to plotly/validators/indicator/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_shadow.py b/plotly/validators/indicator/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_shadow.py rename to plotly/validators/indicator/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_size.py b/plotly/validators/indicator/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_size.py rename to plotly/validators/indicator/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_style.py b/plotly/validators/indicator/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_style.py rename to plotly/validators/indicator/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_textcase.py b/plotly/validators/indicator/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_textcase.py rename to plotly/validators/indicator/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_variant.py b/plotly/validators/indicator/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_variant.py rename to plotly/validators/indicator/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_weight.py b/plotly/validators/indicator/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/legendgrouptitle/font/_weight.py rename to plotly/validators/indicator/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/__init__.py b/plotly/validators/indicator/number/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/__init__.py rename to plotly/validators/indicator/number/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/_font.py b/plotly/validators/indicator/number/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/_font.py rename to plotly/validators/indicator/number/_font.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/_prefix.py b/plotly/validators/indicator/number/_prefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/_prefix.py rename to plotly/validators/indicator/number/_prefix.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/_suffix.py b/plotly/validators/indicator/number/_suffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/_suffix.py rename to plotly/validators/indicator/number/_suffix.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/_valueformat.py b/plotly/validators/indicator/number/_valueformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/_valueformat.py rename to plotly/validators/indicator/number/_valueformat.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/__init__.py b/plotly/validators/indicator/number/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/__init__.py rename to plotly/validators/indicator/number/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_color.py b/plotly/validators/indicator/number/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_color.py rename to plotly/validators/indicator/number/font/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_family.py b/plotly/validators/indicator/number/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_family.py rename to plotly/validators/indicator/number/font/_family.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_lineposition.py b/plotly/validators/indicator/number/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_lineposition.py rename to plotly/validators/indicator/number/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_shadow.py b/plotly/validators/indicator/number/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_shadow.py rename to plotly/validators/indicator/number/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_size.py b/plotly/validators/indicator/number/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_size.py rename to plotly/validators/indicator/number/font/_size.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_style.py b/plotly/validators/indicator/number/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_style.py rename to plotly/validators/indicator/number/font/_style.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_textcase.py b/plotly/validators/indicator/number/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_textcase.py rename to plotly/validators/indicator/number/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_variant.py b/plotly/validators/indicator/number/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_variant.py rename to plotly/validators/indicator/number/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/indicator/number/font/_weight.py b/plotly/validators/indicator/number/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/number/font/_weight.py rename to plotly/validators/indicator/number/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/indicator/stream/__init__.py b/plotly/validators/indicator/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/stream/__init__.py rename to plotly/validators/indicator/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/stream/_maxpoints.py b/plotly/validators/indicator/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/stream/_maxpoints.py rename to plotly/validators/indicator/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/indicator/stream/_token.py b/plotly/validators/indicator/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/stream/_token.py rename to plotly/validators/indicator/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/__init__.py b/plotly/validators/indicator/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/__init__.py rename to plotly/validators/indicator/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/_align.py b/plotly/validators/indicator/title/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/_align.py rename to plotly/validators/indicator/title/_align.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/_font.py b/plotly/validators/indicator/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/_font.py rename to plotly/validators/indicator/title/_font.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/_text.py b/plotly/validators/indicator/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/_text.py rename to plotly/validators/indicator/title/_text.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/__init__.py b/plotly/validators/indicator/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/__init__.py rename to plotly/validators/indicator/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_color.py b/plotly/validators/indicator/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_color.py rename to plotly/validators/indicator/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_family.py b/plotly/validators/indicator/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_family.py rename to plotly/validators/indicator/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_lineposition.py b/plotly/validators/indicator/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_lineposition.py rename to plotly/validators/indicator/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_shadow.py b/plotly/validators/indicator/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_shadow.py rename to plotly/validators/indicator/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_size.py b/plotly/validators/indicator/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_size.py rename to plotly/validators/indicator/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_style.py b/plotly/validators/indicator/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_style.py rename to plotly/validators/indicator/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_textcase.py b/plotly/validators/indicator/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_textcase.py rename to plotly/validators/indicator/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_variant.py b/plotly/validators/indicator/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_variant.py rename to plotly/validators/indicator/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/indicator/title/font/_weight.py b/plotly/validators/indicator/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/indicator/title/font/_weight.py rename to plotly/validators/indicator/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/isosurface/__init__.py b/plotly/validators/isosurface/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/__init__.py rename to plotly/validators/isosurface/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_autocolorscale.py b/plotly/validators/isosurface/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_autocolorscale.py rename to plotly/validators/isosurface/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_caps.py b/plotly/validators/isosurface/_caps.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_caps.py rename to plotly/validators/isosurface/_caps.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_cauto.py b/plotly/validators/isosurface/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_cauto.py rename to plotly/validators/isosurface/_cauto.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_cmax.py b/plotly/validators/isosurface/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_cmax.py rename to plotly/validators/isosurface/_cmax.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_cmid.py b/plotly/validators/isosurface/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_cmid.py rename to plotly/validators/isosurface/_cmid.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_cmin.py b/plotly/validators/isosurface/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_cmin.py rename to plotly/validators/isosurface/_cmin.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_coloraxis.py b/plotly/validators/isosurface/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_coloraxis.py rename to plotly/validators/isosurface/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_colorbar.py b/plotly/validators/isosurface/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_colorbar.py rename to plotly/validators/isosurface/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_colorscale.py b/plotly/validators/isosurface/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_colorscale.py rename to plotly/validators/isosurface/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_contour.py b/plotly/validators/isosurface/_contour.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_contour.py rename to plotly/validators/isosurface/_contour.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_customdata.py b/plotly/validators/isosurface/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_customdata.py rename to plotly/validators/isosurface/_customdata.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_customdatasrc.py b/plotly/validators/isosurface/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_customdatasrc.py rename to plotly/validators/isosurface/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_flatshading.py b/plotly/validators/isosurface/_flatshading.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_flatshading.py rename to plotly/validators/isosurface/_flatshading.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hoverinfo.py b/plotly/validators/isosurface/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hoverinfo.py rename to plotly/validators/isosurface/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hoverinfosrc.py b/plotly/validators/isosurface/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hoverinfosrc.py rename to plotly/validators/isosurface/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hoverlabel.py b/plotly/validators/isosurface/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hoverlabel.py rename to plotly/validators/isosurface/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hovertemplate.py b/plotly/validators/isosurface/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hovertemplate.py rename to plotly/validators/isosurface/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hovertemplatesrc.py b/plotly/validators/isosurface/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hovertemplatesrc.py rename to plotly/validators/isosurface/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hovertext.py b/plotly/validators/isosurface/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hovertext.py rename to plotly/validators/isosurface/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_hovertextsrc.py b/plotly/validators/isosurface/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_hovertextsrc.py rename to plotly/validators/isosurface/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_ids.py b/plotly/validators/isosurface/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_ids.py rename to plotly/validators/isosurface/_ids.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_idssrc.py b/plotly/validators/isosurface/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_idssrc.py rename to plotly/validators/isosurface/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_isomax.py b/plotly/validators/isosurface/_isomax.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_isomax.py rename to plotly/validators/isosurface/_isomax.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_isomin.py b/plotly/validators/isosurface/_isomin.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_isomin.py rename to plotly/validators/isosurface/_isomin.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_legend.py b/plotly/validators/isosurface/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_legend.py rename to plotly/validators/isosurface/_legend.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_legendgroup.py b/plotly/validators/isosurface/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_legendgroup.py rename to plotly/validators/isosurface/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_legendgrouptitle.py b/plotly/validators/isosurface/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_legendgrouptitle.py rename to plotly/validators/isosurface/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_legendrank.py b/plotly/validators/isosurface/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_legendrank.py rename to plotly/validators/isosurface/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_legendwidth.py b/plotly/validators/isosurface/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_legendwidth.py rename to plotly/validators/isosurface/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_lighting.py b/plotly/validators/isosurface/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_lighting.py rename to plotly/validators/isosurface/_lighting.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_lightposition.py b/plotly/validators/isosurface/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_lightposition.py rename to plotly/validators/isosurface/_lightposition.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_meta.py b/plotly/validators/isosurface/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_meta.py rename to plotly/validators/isosurface/_meta.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_metasrc.py b/plotly/validators/isosurface/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_metasrc.py rename to plotly/validators/isosurface/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_name.py b/plotly/validators/isosurface/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_name.py rename to plotly/validators/isosurface/_name.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_opacity.py b/plotly/validators/isosurface/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_opacity.py rename to plotly/validators/isosurface/_opacity.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_reversescale.py b/plotly/validators/isosurface/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_reversescale.py rename to plotly/validators/isosurface/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_scene.py b/plotly/validators/isosurface/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_scene.py rename to plotly/validators/isosurface/_scene.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_showlegend.py b/plotly/validators/isosurface/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_showlegend.py rename to plotly/validators/isosurface/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_showscale.py b/plotly/validators/isosurface/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_showscale.py rename to plotly/validators/isosurface/_showscale.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_slices.py b/plotly/validators/isosurface/_slices.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_slices.py rename to plotly/validators/isosurface/_slices.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_spaceframe.py b/plotly/validators/isosurface/_spaceframe.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_spaceframe.py rename to plotly/validators/isosurface/_spaceframe.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_stream.py b/plotly/validators/isosurface/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_stream.py rename to plotly/validators/isosurface/_stream.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_surface.py b/plotly/validators/isosurface/_surface.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_surface.py rename to plotly/validators/isosurface/_surface.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_text.py b/plotly/validators/isosurface/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_text.py rename to plotly/validators/isosurface/_text.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_textsrc.py b/plotly/validators/isosurface/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_textsrc.py rename to plotly/validators/isosurface/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_uid.py b/plotly/validators/isosurface/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_uid.py rename to plotly/validators/isosurface/_uid.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_uirevision.py b/plotly/validators/isosurface/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_uirevision.py rename to plotly/validators/isosurface/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_value.py b/plotly/validators/isosurface/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_value.py rename to plotly/validators/isosurface/_value.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_valuehoverformat.py b/plotly/validators/isosurface/_valuehoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_valuehoverformat.py rename to plotly/validators/isosurface/_valuehoverformat.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_valuesrc.py b/plotly/validators/isosurface/_valuesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_valuesrc.py rename to plotly/validators/isosurface/_valuesrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_visible.py b/plotly/validators/isosurface/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_visible.py rename to plotly/validators/isosurface/_visible.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_x.py b/plotly/validators/isosurface/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_x.py rename to plotly/validators/isosurface/_x.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_xhoverformat.py b/plotly/validators/isosurface/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_xhoverformat.py rename to plotly/validators/isosurface/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_xsrc.py b/plotly/validators/isosurface/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_xsrc.py rename to plotly/validators/isosurface/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_y.py b/plotly/validators/isosurface/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_y.py rename to plotly/validators/isosurface/_y.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_yhoverformat.py b/plotly/validators/isosurface/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_yhoverformat.py rename to plotly/validators/isosurface/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_ysrc.py b/plotly/validators/isosurface/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_ysrc.py rename to plotly/validators/isosurface/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_z.py b/plotly/validators/isosurface/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_z.py rename to plotly/validators/isosurface/_z.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_zhoverformat.py b/plotly/validators/isosurface/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_zhoverformat.py rename to plotly/validators/isosurface/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/isosurface/_zsrc.py b/plotly/validators/isosurface/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/_zsrc.py rename to plotly/validators/isosurface/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/__init__.py b/plotly/validators/isosurface/caps/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/__init__.py rename to plotly/validators/isosurface/caps/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/_x.py b/plotly/validators/isosurface/caps/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/_x.py rename to plotly/validators/isosurface/caps/_x.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/_y.py b/plotly/validators/isosurface/caps/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/_y.py rename to plotly/validators/isosurface/caps/_y.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/_z.py b/plotly/validators/isosurface/caps/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/_z.py rename to plotly/validators/isosurface/caps/_z.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/x/__init__.py b/plotly/validators/isosurface/caps/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/x/__init__.py rename to plotly/validators/isosurface/caps/x/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/x/_fill.py b/plotly/validators/isosurface/caps/x/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/x/_fill.py rename to plotly/validators/isosurface/caps/x/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/x/_show.py b/plotly/validators/isosurface/caps/x/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/x/_show.py rename to plotly/validators/isosurface/caps/x/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/y/__init__.py b/plotly/validators/isosurface/caps/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/y/__init__.py rename to plotly/validators/isosurface/caps/y/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/y/_fill.py b/plotly/validators/isosurface/caps/y/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/y/_fill.py rename to plotly/validators/isosurface/caps/y/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/y/_show.py b/plotly/validators/isosurface/caps/y/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/y/_show.py rename to plotly/validators/isosurface/caps/y/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/z/__init__.py b/plotly/validators/isosurface/caps/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/z/__init__.py rename to plotly/validators/isosurface/caps/z/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/z/_fill.py b/plotly/validators/isosurface/caps/z/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/z/_fill.py rename to plotly/validators/isosurface/caps/z/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/caps/z/_show.py b/plotly/validators/isosurface/caps/z/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/caps/z/_show.py rename to plotly/validators/isosurface/caps/z/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/__init__.py b/plotly/validators/isosurface/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/__init__.py rename to plotly/validators/isosurface/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_bgcolor.py b/plotly/validators/isosurface/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_bgcolor.py rename to plotly/validators/isosurface/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_bordercolor.py b/plotly/validators/isosurface/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_bordercolor.py rename to plotly/validators/isosurface/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_borderwidth.py b/plotly/validators/isosurface/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_borderwidth.py rename to plotly/validators/isosurface/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_dtick.py b/plotly/validators/isosurface/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_dtick.py rename to plotly/validators/isosurface/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_exponentformat.py b/plotly/validators/isosurface/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_exponentformat.py rename to plotly/validators/isosurface/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_labelalias.py b/plotly/validators/isosurface/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_labelalias.py rename to plotly/validators/isosurface/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_len.py b/plotly/validators/isosurface/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_len.py rename to plotly/validators/isosurface/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_lenmode.py b/plotly/validators/isosurface/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_lenmode.py rename to plotly/validators/isosurface/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_minexponent.py b/plotly/validators/isosurface/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_minexponent.py rename to plotly/validators/isosurface/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_nticks.py b/plotly/validators/isosurface/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_nticks.py rename to plotly/validators/isosurface/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_orientation.py b/plotly/validators/isosurface/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_orientation.py rename to plotly/validators/isosurface/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_outlinecolor.py b/plotly/validators/isosurface/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_outlinecolor.py rename to plotly/validators/isosurface/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_outlinewidth.py b/plotly/validators/isosurface/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_outlinewidth.py rename to plotly/validators/isosurface/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_separatethousands.py b/plotly/validators/isosurface/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_separatethousands.py rename to plotly/validators/isosurface/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_showexponent.py b/plotly/validators/isosurface/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_showexponent.py rename to plotly/validators/isosurface/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_showticklabels.py b/plotly/validators/isosurface/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_showticklabels.py rename to plotly/validators/isosurface/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_showtickprefix.py b/plotly/validators/isosurface/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_showtickprefix.py rename to plotly/validators/isosurface/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_showticksuffix.py b/plotly/validators/isosurface/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_showticksuffix.py rename to plotly/validators/isosurface/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_thickness.py b/plotly/validators/isosurface/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_thickness.py rename to plotly/validators/isosurface/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_thicknessmode.py b/plotly/validators/isosurface/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_thicknessmode.py rename to plotly/validators/isosurface/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tick0.py b/plotly/validators/isosurface/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tick0.py rename to plotly/validators/isosurface/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickangle.py b/plotly/validators/isosurface/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickangle.py rename to plotly/validators/isosurface/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickcolor.py b/plotly/validators/isosurface/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickcolor.py rename to plotly/validators/isosurface/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickfont.py b/plotly/validators/isosurface/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickfont.py rename to plotly/validators/isosurface/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickformat.py b/plotly/validators/isosurface/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickformat.py rename to plotly/validators/isosurface/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickformatstopdefaults.py b/plotly/validators/isosurface/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickformatstopdefaults.py rename to plotly/validators/isosurface/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickformatstops.py b/plotly/validators/isosurface/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickformatstops.py rename to plotly/validators/isosurface/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklabeloverflow.py b/plotly/validators/isosurface/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklabeloverflow.py rename to plotly/validators/isosurface/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklabelposition.py b/plotly/validators/isosurface/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklabelposition.py rename to plotly/validators/isosurface/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklabelstep.py b/plotly/validators/isosurface/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklabelstep.py rename to plotly/validators/isosurface/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklen.py b/plotly/validators/isosurface/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticklen.py rename to plotly/validators/isosurface/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickmode.py b/plotly/validators/isosurface/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickmode.py rename to plotly/validators/isosurface/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickprefix.py b/plotly/validators/isosurface/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickprefix.py rename to plotly/validators/isosurface/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticks.py b/plotly/validators/isosurface/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticks.py rename to plotly/validators/isosurface/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticksuffix.py b/plotly/validators/isosurface/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticksuffix.py rename to plotly/validators/isosurface/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticktext.py b/plotly/validators/isosurface/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticktext.py rename to plotly/validators/isosurface/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ticktextsrc.py b/plotly/validators/isosurface/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ticktextsrc.py rename to plotly/validators/isosurface/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickvals.py b/plotly/validators/isosurface/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickvals.py rename to plotly/validators/isosurface/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickvalssrc.py b/plotly/validators/isosurface/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickvalssrc.py rename to plotly/validators/isosurface/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_tickwidth.py b/plotly/validators/isosurface/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_tickwidth.py rename to plotly/validators/isosurface/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_title.py b/plotly/validators/isosurface/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_title.py rename to plotly/validators/isosurface/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_x.py b/plotly/validators/isosurface/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_x.py rename to plotly/validators/isosurface/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_xanchor.py b/plotly/validators/isosurface/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_xanchor.py rename to plotly/validators/isosurface/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_xpad.py b/plotly/validators/isosurface/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_xpad.py rename to plotly/validators/isosurface/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_xref.py b/plotly/validators/isosurface/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_xref.py rename to plotly/validators/isosurface/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_y.py b/plotly/validators/isosurface/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_y.py rename to plotly/validators/isosurface/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_yanchor.py b/plotly/validators/isosurface/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_yanchor.py rename to plotly/validators/isosurface/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_ypad.py b/plotly/validators/isosurface/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_ypad.py rename to plotly/validators/isosurface/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/_yref.py b/plotly/validators/isosurface/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/_yref.py rename to plotly/validators/isosurface/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/__init__.py b/plotly/validators/isosurface/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/__init__.py rename to plotly/validators/isosurface/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_color.py b/plotly/validators/isosurface/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_color.py rename to plotly/validators/isosurface/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_family.py b/plotly/validators/isosurface/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_family.py rename to plotly/validators/isosurface/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_lineposition.py b/plotly/validators/isosurface/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_lineposition.py rename to plotly/validators/isosurface/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_shadow.py b/plotly/validators/isosurface/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_shadow.py rename to plotly/validators/isosurface/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_size.py b/plotly/validators/isosurface/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_size.py rename to plotly/validators/isosurface/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_style.py b/plotly/validators/isosurface/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_style.py rename to plotly/validators/isosurface/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_textcase.py b/plotly/validators/isosurface/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_textcase.py rename to plotly/validators/isosurface/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_variant.py b/plotly/validators/isosurface/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_variant.py rename to plotly/validators/isosurface/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_weight.py b/plotly/validators/isosurface/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickfont/_weight.py rename to plotly/validators/isosurface/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/__init__.py b/plotly/validators/isosurface/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/__init__.py rename to plotly/validators/isosurface/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/isosurface/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/isosurface/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_enabled.py b/plotly/validators/isosurface/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_enabled.py rename to plotly/validators/isosurface/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_name.py b/plotly/validators/isosurface/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_name.py rename to plotly/validators/isosurface/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/isosurface/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/isosurface/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_value.py b/plotly/validators/isosurface/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/tickformatstop/_value.py rename to plotly/validators/isosurface/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/__init__.py b/plotly/validators/isosurface/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/__init__.py rename to plotly/validators/isosurface/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/_font.py b/plotly/validators/isosurface/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/_font.py rename to plotly/validators/isosurface/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/_side.py b/plotly/validators/isosurface/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/_side.py rename to plotly/validators/isosurface/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/_text.py b/plotly/validators/isosurface/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/_text.py rename to plotly/validators/isosurface/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/__init__.py b/plotly/validators/isosurface/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/__init__.py rename to plotly/validators/isosurface/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_color.py b/plotly/validators/isosurface/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_color.py rename to plotly/validators/isosurface/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_family.py b/plotly/validators/isosurface/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_family.py rename to plotly/validators/isosurface/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_lineposition.py b/plotly/validators/isosurface/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_lineposition.py rename to plotly/validators/isosurface/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_shadow.py b/plotly/validators/isosurface/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_shadow.py rename to plotly/validators/isosurface/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_size.py b/plotly/validators/isosurface/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_size.py rename to plotly/validators/isosurface/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_style.py b/plotly/validators/isosurface/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_style.py rename to plotly/validators/isosurface/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_textcase.py b/plotly/validators/isosurface/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_textcase.py rename to plotly/validators/isosurface/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_variant.py b/plotly/validators/isosurface/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_variant.py rename to plotly/validators/isosurface/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_weight.py b/plotly/validators/isosurface/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/colorbar/title/font/_weight.py rename to plotly/validators/isosurface/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/isosurface/contour/__init__.py b/plotly/validators/isosurface/contour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/contour/__init__.py rename to plotly/validators/isosurface/contour/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/contour/_color.py b/plotly/validators/isosurface/contour/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/contour/_color.py rename to plotly/validators/isosurface/contour/_color.py diff --git a/packages/python/plotly/plotly/validators/isosurface/contour/_show.py b/plotly/validators/isosurface/contour/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/contour/_show.py rename to plotly/validators/isosurface/contour/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/contour/_width.py b/plotly/validators/isosurface/contour/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/contour/_width.py rename to plotly/validators/isosurface/contour/_width.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/__init__.py b/plotly/validators/isosurface/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/__init__.py rename to plotly/validators/isosurface/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_align.py b/plotly/validators/isosurface/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_align.py rename to plotly/validators/isosurface/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_alignsrc.py b/plotly/validators/isosurface/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_alignsrc.py rename to plotly/validators/isosurface/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bgcolor.py b/plotly/validators/isosurface/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bgcolor.py rename to plotly/validators/isosurface/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bgcolorsrc.py b/plotly/validators/isosurface/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bgcolorsrc.py rename to plotly/validators/isosurface/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bordercolor.py b/plotly/validators/isosurface/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bordercolor.py rename to plotly/validators/isosurface/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bordercolorsrc.py b/plotly/validators/isosurface/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_bordercolorsrc.py rename to plotly/validators/isosurface/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_font.py b/plotly/validators/isosurface/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_font.py rename to plotly/validators/isosurface/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_namelength.py b/plotly/validators/isosurface/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_namelength.py rename to plotly/validators/isosurface/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/_namelengthsrc.py b/plotly/validators/isosurface/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/_namelengthsrc.py rename to plotly/validators/isosurface/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/__init__.py b/plotly/validators/isosurface/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/__init__.py rename to plotly/validators/isosurface/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_color.py b/plotly/validators/isosurface/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_color.py rename to plotly/validators/isosurface/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_colorsrc.py b/plotly/validators/isosurface/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_colorsrc.py rename to plotly/validators/isosurface/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_family.py b/plotly/validators/isosurface/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_family.py rename to plotly/validators/isosurface/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_familysrc.py b/plotly/validators/isosurface/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_familysrc.py rename to plotly/validators/isosurface/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_lineposition.py b/plotly/validators/isosurface/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_lineposition.py rename to plotly/validators/isosurface/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_linepositionsrc.py b/plotly/validators/isosurface/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/isosurface/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_shadow.py b/plotly/validators/isosurface/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_shadow.py rename to plotly/validators/isosurface/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_shadowsrc.py b/plotly/validators/isosurface/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_shadowsrc.py rename to plotly/validators/isosurface/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_size.py b/plotly/validators/isosurface/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_size.py rename to plotly/validators/isosurface/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_sizesrc.py b/plotly/validators/isosurface/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_sizesrc.py rename to plotly/validators/isosurface/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_style.py b/plotly/validators/isosurface/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_style.py rename to plotly/validators/isosurface/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_stylesrc.py b/plotly/validators/isosurface/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_stylesrc.py rename to plotly/validators/isosurface/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_textcase.py b/plotly/validators/isosurface/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_textcase.py rename to plotly/validators/isosurface/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_textcasesrc.py b/plotly/validators/isosurface/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_textcasesrc.py rename to plotly/validators/isosurface/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_variant.py b/plotly/validators/isosurface/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_variant.py rename to plotly/validators/isosurface/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_variantsrc.py b/plotly/validators/isosurface/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_variantsrc.py rename to plotly/validators/isosurface/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_weight.py b/plotly/validators/isosurface/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_weight.py rename to plotly/validators/isosurface/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_weightsrc.py b/plotly/validators/isosurface/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/hoverlabel/font/_weightsrc.py rename to plotly/validators/isosurface/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/__init__.py b/plotly/validators/isosurface/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/__init__.py rename to plotly/validators/isosurface/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/_font.py b/plotly/validators/isosurface/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/_font.py rename to plotly/validators/isosurface/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/_text.py b/plotly/validators/isosurface/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/_text.py rename to plotly/validators/isosurface/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/__init__.py b/plotly/validators/isosurface/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/__init__.py rename to plotly/validators/isosurface/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_color.py b/plotly/validators/isosurface/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_color.py rename to plotly/validators/isosurface/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_family.py b/plotly/validators/isosurface/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_family.py rename to plotly/validators/isosurface/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_lineposition.py b/plotly/validators/isosurface/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_lineposition.py rename to plotly/validators/isosurface/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_shadow.py b/plotly/validators/isosurface/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_shadow.py rename to plotly/validators/isosurface/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_size.py b/plotly/validators/isosurface/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_size.py rename to plotly/validators/isosurface/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_style.py b/plotly/validators/isosurface/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_style.py rename to plotly/validators/isosurface/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_textcase.py b/plotly/validators/isosurface/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_textcase.py rename to plotly/validators/isosurface/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_variant.py b/plotly/validators/isosurface/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_variant.py rename to plotly/validators/isosurface/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_weight.py b/plotly/validators/isosurface/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/legendgrouptitle/font/_weight.py rename to plotly/validators/isosurface/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/__init__.py b/plotly/validators/isosurface/lighting/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/__init__.py rename to plotly/validators/isosurface/lighting/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_ambient.py b/plotly/validators/isosurface/lighting/_ambient.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_ambient.py rename to plotly/validators/isosurface/lighting/_ambient.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_diffuse.py b/plotly/validators/isosurface/lighting/_diffuse.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_diffuse.py rename to plotly/validators/isosurface/lighting/_diffuse.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_facenormalsepsilon.py b/plotly/validators/isosurface/lighting/_facenormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_facenormalsepsilon.py rename to plotly/validators/isosurface/lighting/_facenormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_fresnel.py b/plotly/validators/isosurface/lighting/_fresnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_fresnel.py rename to plotly/validators/isosurface/lighting/_fresnel.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_roughness.py b/plotly/validators/isosurface/lighting/_roughness.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_roughness.py rename to plotly/validators/isosurface/lighting/_roughness.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_specular.py b/plotly/validators/isosurface/lighting/_specular.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_specular.py rename to plotly/validators/isosurface/lighting/_specular.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lighting/_vertexnormalsepsilon.py b/plotly/validators/isosurface/lighting/_vertexnormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lighting/_vertexnormalsepsilon.py rename to plotly/validators/isosurface/lighting/_vertexnormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lightposition/__init__.py b/plotly/validators/isosurface/lightposition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lightposition/__init__.py rename to plotly/validators/isosurface/lightposition/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lightposition/_x.py b/plotly/validators/isosurface/lightposition/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lightposition/_x.py rename to plotly/validators/isosurface/lightposition/_x.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lightposition/_y.py b/plotly/validators/isosurface/lightposition/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lightposition/_y.py rename to plotly/validators/isosurface/lightposition/_y.py diff --git a/packages/python/plotly/plotly/validators/isosurface/lightposition/_z.py b/plotly/validators/isosurface/lightposition/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/lightposition/_z.py rename to plotly/validators/isosurface/lightposition/_z.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/__init__.py b/plotly/validators/isosurface/slices/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/__init__.py rename to plotly/validators/isosurface/slices/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/_x.py b/plotly/validators/isosurface/slices/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/_x.py rename to plotly/validators/isosurface/slices/_x.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/_y.py b/plotly/validators/isosurface/slices/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/_y.py rename to plotly/validators/isosurface/slices/_y.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/_z.py b/plotly/validators/isosurface/slices/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/_z.py rename to plotly/validators/isosurface/slices/_z.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/x/__init__.py b/plotly/validators/isosurface/slices/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/x/__init__.py rename to plotly/validators/isosurface/slices/x/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/x/_fill.py b/plotly/validators/isosurface/slices/x/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/x/_fill.py rename to plotly/validators/isosurface/slices/x/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/x/_locations.py b/plotly/validators/isosurface/slices/x/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/x/_locations.py rename to plotly/validators/isosurface/slices/x/_locations.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/x/_locationssrc.py b/plotly/validators/isosurface/slices/x/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/x/_locationssrc.py rename to plotly/validators/isosurface/slices/x/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/x/_show.py b/plotly/validators/isosurface/slices/x/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/x/_show.py rename to plotly/validators/isosurface/slices/x/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/y/__init__.py b/plotly/validators/isosurface/slices/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/y/__init__.py rename to plotly/validators/isosurface/slices/y/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/y/_fill.py b/plotly/validators/isosurface/slices/y/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/y/_fill.py rename to plotly/validators/isosurface/slices/y/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/y/_locations.py b/plotly/validators/isosurface/slices/y/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/y/_locations.py rename to plotly/validators/isosurface/slices/y/_locations.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/y/_locationssrc.py b/plotly/validators/isosurface/slices/y/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/y/_locationssrc.py rename to plotly/validators/isosurface/slices/y/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/y/_show.py b/plotly/validators/isosurface/slices/y/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/y/_show.py rename to plotly/validators/isosurface/slices/y/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/z/__init__.py b/plotly/validators/isosurface/slices/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/z/__init__.py rename to plotly/validators/isosurface/slices/z/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/z/_fill.py b/plotly/validators/isosurface/slices/z/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/z/_fill.py rename to plotly/validators/isosurface/slices/z/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/z/_locations.py b/plotly/validators/isosurface/slices/z/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/z/_locations.py rename to plotly/validators/isosurface/slices/z/_locations.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/z/_locationssrc.py b/plotly/validators/isosurface/slices/z/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/z/_locationssrc.py rename to plotly/validators/isosurface/slices/z/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/isosurface/slices/z/_show.py b/plotly/validators/isosurface/slices/z/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/slices/z/_show.py rename to plotly/validators/isosurface/slices/z/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/spaceframe/__init__.py b/plotly/validators/isosurface/spaceframe/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/spaceframe/__init__.py rename to plotly/validators/isosurface/spaceframe/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/spaceframe/_fill.py b/plotly/validators/isosurface/spaceframe/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/spaceframe/_fill.py rename to plotly/validators/isosurface/spaceframe/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/spaceframe/_show.py b/plotly/validators/isosurface/spaceframe/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/spaceframe/_show.py rename to plotly/validators/isosurface/spaceframe/_show.py diff --git a/packages/python/plotly/plotly/validators/isosurface/stream/__init__.py b/plotly/validators/isosurface/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/stream/__init__.py rename to plotly/validators/isosurface/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/stream/_maxpoints.py b/plotly/validators/isosurface/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/stream/_maxpoints.py rename to plotly/validators/isosurface/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/isosurface/stream/_token.py b/plotly/validators/isosurface/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/stream/_token.py rename to plotly/validators/isosurface/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/isosurface/surface/__init__.py b/plotly/validators/isosurface/surface/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/surface/__init__.py rename to plotly/validators/isosurface/surface/__init__.py diff --git a/packages/python/plotly/plotly/validators/isosurface/surface/_count.py b/plotly/validators/isosurface/surface/_count.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/surface/_count.py rename to plotly/validators/isosurface/surface/_count.py diff --git a/packages/python/plotly/plotly/validators/isosurface/surface/_fill.py b/plotly/validators/isosurface/surface/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/surface/_fill.py rename to plotly/validators/isosurface/surface/_fill.py diff --git a/packages/python/plotly/plotly/validators/isosurface/surface/_pattern.py b/plotly/validators/isosurface/surface/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/surface/_pattern.py rename to plotly/validators/isosurface/surface/_pattern.py diff --git a/packages/python/plotly/plotly/validators/isosurface/surface/_show.py b/plotly/validators/isosurface/surface/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/isosurface/surface/_show.py rename to plotly/validators/isosurface/surface/_show.py diff --git a/packages/python/plotly/plotly/validators/layout/__init__.py b/plotly/validators/layout/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/__init__.py rename to plotly/validators/layout/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/_activeselection.py b/plotly/validators/layout/_activeselection.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_activeselection.py rename to plotly/validators/layout/_activeselection.py diff --git a/packages/python/plotly/plotly/validators/layout/_activeshape.py b/plotly/validators/layout/_activeshape.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_activeshape.py rename to plotly/validators/layout/_activeshape.py diff --git a/packages/python/plotly/plotly/validators/layout/_annotationdefaults.py b/plotly/validators/layout/_annotationdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_annotationdefaults.py rename to plotly/validators/layout/_annotationdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/_annotations.py b/plotly/validators/layout/_annotations.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_annotations.py rename to plotly/validators/layout/_annotations.py diff --git a/packages/python/plotly/plotly/validators/layout/_autosize.py b/plotly/validators/layout/_autosize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_autosize.py rename to plotly/validators/layout/_autosize.py diff --git a/packages/python/plotly/plotly/validators/layout/_autotypenumbers.py b/plotly/validators/layout/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_autotypenumbers.py rename to plotly/validators/layout/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/_barcornerradius.py b/plotly/validators/layout/_barcornerradius.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_barcornerradius.py rename to plotly/validators/layout/_barcornerradius.py diff --git a/packages/python/plotly/plotly/validators/layout/_bargap.py b/plotly/validators/layout/_bargap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_bargap.py rename to plotly/validators/layout/_bargap.py diff --git a/packages/python/plotly/plotly/validators/layout/_bargroupgap.py b/plotly/validators/layout/_bargroupgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_bargroupgap.py rename to plotly/validators/layout/_bargroupgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_barmode.py b/plotly/validators/layout/_barmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_barmode.py rename to plotly/validators/layout/_barmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_barnorm.py b/plotly/validators/layout/_barnorm.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_barnorm.py rename to plotly/validators/layout/_barnorm.py diff --git a/packages/python/plotly/plotly/validators/layout/_boxgap.py b/plotly/validators/layout/_boxgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_boxgap.py rename to plotly/validators/layout/_boxgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_boxgroupgap.py b/plotly/validators/layout/_boxgroupgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_boxgroupgap.py rename to plotly/validators/layout/_boxgroupgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_boxmode.py b/plotly/validators/layout/_boxmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_boxmode.py rename to plotly/validators/layout/_boxmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_calendar.py b/plotly/validators/layout/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_calendar.py rename to plotly/validators/layout/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/_clickmode.py b/plotly/validators/layout/_clickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_clickmode.py rename to plotly/validators/layout/_clickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_coloraxis.py b/plotly/validators/layout/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_coloraxis.py rename to plotly/validators/layout/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/layout/_colorscale.py b/plotly/validators/layout/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_colorscale.py rename to plotly/validators/layout/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/layout/_colorway.py b/plotly/validators/layout/_colorway.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_colorway.py rename to plotly/validators/layout/_colorway.py diff --git a/packages/python/plotly/plotly/validators/layout/_computed.py b/plotly/validators/layout/_computed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_computed.py rename to plotly/validators/layout/_computed.py diff --git a/packages/python/plotly/plotly/validators/layout/_datarevision.py b/plotly/validators/layout/_datarevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_datarevision.py rename to plotly/validators/layout/_datarevision.py diff --git a/packages/python/plotly/plotly/validators/layout/_dragmode.py b/plotly/validators/layout/_dragmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_dragmode.py rename to plotly/validators/layout/_dragmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_editrevision.py b/plotly/validators/layout/_editrevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_editrevision.py rename to plotly/validators/layout/_editrevision.py diff --git a/packages/python/plotly/plotly/validators/layout/_extendfunnelareacolors.py b/plotly/validators/layout/_extendfunnelareacolors.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_extendfunnelareacolors.py rename to plotly/validators/layout/_extendfunnelareacolors.py diff --git a/packages/python/plotly/plotly/validators/layout/_extendiciclecolors.py b/plotly/validators/layout/_extendiciclecolors.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_extendiciclecolors.py rename to plotly/validators/layout/_extendiciclecolors.py diff --git a/packages/python/plotly/plotly/validators/layout/_extendpiecolors.py b/plotly/validators/layout/_extendpiecolors.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_extendpiecolors.py rename to plotly/validators/layout/_extendpiecolors.py diff --git a/packages/python/plotly/plotly/validators/layout/_extendsunburstcolors.py b/plotly/validators/layout/_extendsunburstcolors.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_extendsunburstcolors.py rename to plotly/validators/layout/_extendsunburstcolors.py diff --git a/packages/python/plotly/plotly/validators/layout/_extendtreemapcolors.py b/plotly/validators/layout/_extendtreemapcolors.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_extendtreemapcolors.py rename to plotly/validators/layout/_extendtreemapcolors.py diff --git a/packages/python/plotly/plotly/validators/layout/_font.py b/plotly/validators/layout/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_font.py rename to plotly/validators/layout/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/_funnelareacolorway.py b/plotly/validators/layout/_funnelareacolorway.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_funnelareacolorway.py rename to plotly/validators/layout/_funnelareacolorway.py diff --git a/packages/python/plotly/plotly/validators/layout/_funnelgap.py b/plotly/validators/layout/_funnelgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_funnelgap.py rename to plotly/validators/layout/_funnelgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_funnelgroupgap.py b/plotly/validators/layout/_funnelgroupgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_funnelgroupgap.py rename to plotly/validators/layout/_funnelgroupgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_funnelmode.py b/plotly/validators/layout/_funnelmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_funnelmode.py rename to plotly/validators/layout/_funnelmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_geo.py b/plotly/validators/layout/_geo.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_geo.py rename to plotly/validators/layout/_geo.py diff --git a/packages/python/plotly/plotly/validators/layout/_grid.py b/plotly/validators/layout/_grid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_grid.py rename to plotly/validators/layout/_grid.py diff --git a/packages/python/plotly/plotly/validators/layout/_height.py b/plotly/validators/layout/_height.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_height.py rename to plotly/validators/layout/_height.py diff --git a/packages/python/plotly/plotly/validators/layout/_hiddenlabels.py b/plotly/validators/layout/_hiddenlabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hiddenlabels.py rename to plotly/validators/layout/_hiddenlabels.py diff --git a/packages/python/plotly/plotly/validators/layout/_hiddenlabelssrc.py b/plotly/validators/layout/_hiddenlabelssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hiddenlabelssrc.py rename to plotly/validators/layout/_hiddenlabelssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/_hidesources.py b/plotly/validators/layout/_hidesources.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hidesources.py rename to plotly/validators/layout/_hidesources.py diff --git a/packages/python/plotly/plotly/validators/layout/_hoverdistance.py b/plotly/validators/layout/_hoverdistance.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hoverdistance.py rename to plotly/validators/layout/_hoverdistance.py diff --git a/packages/python/plotly/plotly/validators/layout/_hoverlabel.py b/plotly/validators/layout/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hoverlabel.py rename to plotly/validators/layout/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/layout/_hovermode.py b/plotly/validators/layout/_hovermode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hovermode.py rename to plotly/validators/layout/_hovermode.py diff --git a/packages/python/plotly/plotly/validators/layout/_hoversubplots.py b/plotly/validators/layout/_hoversubplots.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_hoversubplots.py rename to plotly/validators/layout/_hoversubplots.py diff --git a/packages/python/plotly/plotly/validators/layout/_iciclecolorway.py b/plotly/validators/layout/_iciclecolorway.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_iciclecolorway.py rename to plotly/validators/layout/_iciclecolorway.py diff --git a/packages/python/plotly/plotly/validators/layout/_imagedefaults.py b/plotly/validators/layout/_imagedefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_imagedefaults.py rename to plotly/validators/layout/_imagedefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/_images.py b/plotly/validators/layout/_images.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_images.py rename to plotly/validators/layout/_images.py diff --git a/packages/python/plotly/plotly/validators/layout/_legend.py b/plotly/validators/layout/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_legend.py rename to plotly/validators/layout/_legend.py diff --git a/packages/python/plotly/plotly/validators/layout/_map.py b/plotly/validators/layout/_map.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_map.py rename to plotly/validators/layout/_map.py diff --git a/packages/python/plotly/plotly/validators/layout/_mapbox.py b/plotly/validators/layout/_mapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_mapbox.py rename to plotly/validators/layout/_mapbox.py diff --git a/packages/python/plotly/plotly/validators/layout/_margin.py b/plotly/validators/layout/_margin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_margin.py rename to plotly/validators/layout/_margin.py diff --git a/packages/python/plotly/plotly/validators/layout/_meta.py b/plotly/validators/layout/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_meta.py rename to plotly/validators/layout/_meta.py diff --git a/packages/python/plotly/plotly/validators/layout/_metasrc.py b/plotly/validators/layout/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_metasrc.py rename to plotly/validators/layout/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/layout/_minreducedheight.py b/plotly/validators/layout/_minreducedheight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_minreducedheight.py rename to plotly/validators/layout/_minreducedheight.py diff --git a/packages/python/plotly/plotly/validators/layout/_minreducedwidth.py b/plotly/validators/layout/_minreducedwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_minreducedwidth.py rename to plotly/validators/layout/_minreducedwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/_modebar.py b/plotly/validators/layout/_modebar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_modebar.py rename to plotly/validators/layout/_modebar.py diff --git a/packages/python/plotly/plotly/validators/layout/_newselection.py b/plotly/validators/layout/_newselection.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_newselection.py rename to plotly/validators/layout/_newselection.py diff --git a/packages/python/plotly/plotly/validators/layout/_newshape.py b/plotly/validators/layout/_newshape.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_newshape.py rename to plotly/validators/layout/_newshape.py diff --git a/packages/python/plotly/plotly/validators/layout/_paper_bgcolor.py b/plotly/validators/layout/_paper_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_paper_bgcolor.py rename to plotly/validators/layout/_paper_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/_piecolorway.py b/plotly/validators/layout/_piecolorway.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_piecolorway.py rename to plotly/validators/layout/_piecolorway.py diff --git a/packages/python/plotly/plotly/validators/layout/_plot_bgcolor.py b/plotly/validators/layout/_plot_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_plot_bgcolor.py rename to plotly/validators/layout/_plot_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/_polar.py b/plotly/validators/layout/_polar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_polar.py rename to plotly/validators/layout/_polar.py diff --git a/packages/python/plotly/plotly/validators/layout/_scattergap.py b/plotly/validators/layout/_scattergap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_scattergap.py rename to plotly/validators/layout/_scattergap.py diff --git a/packages/python/plotly/plotly/validators/layout/_scattermode.py b/plotly/validators/layout/_scattermode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_scattermode.py rename to plotly/validators/layout/_scattermode.py diff --git a/packages/python/plotly/plotly/validators/layout/_scene.py b/plotly/validators/layout/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_scene.py rename to plotly/validators/layout/_scene.py diff --git a/packages/python/plotly/plotly/validators/layout/_selectdirection.py b/plotly/validators/layout/_selectdirection.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_selectdirection.py rename to plotly/validators/layout/_selectdirection.py diff --git a/packages/python/plotly/plotly/validators/layout/_selectiondefaults.py b/plotly/validators/layout/_selectiondefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_selectiondefaults.py rename to plotly/validators/layout/_selectiondefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/_selectionrevision.py b/plotly/validators/layout/_selectionrevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_selectionrevision.py rename to plotly/validators/layout/_selectionrevision.py diff --git a/packages/python/plotly/plotly/validators/layout/_selections.py b/plotly/validators/layout/_selections.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_selections.py rename to plotly/validators/layout/_selections.py diff --git a/packages/python/plotly/plotly/validators/layout/_separators.py b/plotly/validators/layout/_separators.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_separators.py rename to plotly/validators/layout/_separators.py diff --git a/packages/python/plotly/plotly/validators/layout/_shapedefaults.py b/plotly/validators/layout/_shapedefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_shapedefaults.py rename to plotly/validators/layout/_shapedefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/_shapes.py b/plotly/validators/layout/_shapes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_shapes.py rename to plotly/validators/layout/_shapes.py diff --git a/packages/python/plotly/plotly/validators/layout/_showlegend.py b/plotly/validators/layout/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_showlegend.py rename to plotly/validators/layout/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/layout/_sliderdefaults.py b/plotly/validators/layout/_sliderdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_sliderdefaults.py rename to plotly/validators/layout/_sliderdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/_sliders.py b/plotly/validators/layout/_sliders.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_sliders.py rename to plotly/validators/layout/_sliders.py diff --git a/packages/python/plotly/plotly/validators/layout/_smith.py b/plotly/validators/layout/_smith.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_smith.py rename to plotly/validators/layout/_smith.py diff --git a/packages/python/plotly/plotly/validators/layout/_spikedistance.py b/plotly/validators/layout/_spikedistance.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_spikedistance.py rename to plotly/validators/layout/_spikedistance.py diff --git a/packages/python/plotly/plotly/validators/layout/_sunburstcolorway.py b/plotly/validators/layout/_sunburstcolorway.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_sunburstcolorway.py rename to plotly/validators/layout/_sunburstcolorway.py diff --git a/packages/python/plotly/plotly/validators/layout/_template.py b/plotly/validators/layout/_template.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_template.py rename to plotly/validators/layout/_template.py diff --git a/packages/python/plotly/plotly/validators/layout/_ternary.py b/plotly/validators/layout/_ternary.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_ternary.py rename to plotly/validators/layout/_ternary.py diff --git a/packages/python/plotly/plotly/validators/layout/_title.py b/plotly/validators/layout/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_title.py rename to plotly/validators/layout/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/_transition.py b/plotly/validators/layout/_transition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_transition.py rename to plotly/validators/layout/_transition.py diff --git a/packages/python/plotly/plotly/validators/layout/_treemapcolorway.py b/plotly/validators/layout/_treemapcolorway.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_treemapcolorway.py rename to plotly/validators/layout/_treemapcolorway.py diff --git a/packages/python/plotly/plotly/validators/layout/_uirevision.py b/plotly/validators/layout/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_uirevision.py rename to plotly/validators/layout/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/_uniformtext.py b/plotly/validators/layout/_uniformtext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_uniformtext.py rename to plotly/validators/layout/_uniformtext.py diff --git a/packages/python/plotly/plotly/validators/layout/_updatemenudefaults.py b/plotly/validators/layout/_updatemenudefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_updatemenudefaults.py rename to plotly/validators/layout/_updatemenudefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/_updatemenus.py b/plotly/validators/layout/_updatemenus.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_updatemenus.py rename to plotly/validators/layout/_updatemenus.py diff --git a/packages/python/plotly/plotly/validators/layout/_violingap.py b/plotly/validators/layout/_violingap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_violingap.py rename to plotly/validators/layout/_violingap.py diff --git a/packages/python/plotly/plotly/validators/layout/_violingroupgap.py b/plotly/validators/layout/_violingroupgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_violingroupgap.py rename to plotly/validators/layout/_violingroupgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_violinmode.py b/plotly/validators/layout/_violinmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_violinmode.py rename to plotly/validators/layout/_violinmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_waterfallgap.py b/plotly/validators/layout/_waterfallgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_waterfallgap.py rename to plotly/validators/layout/_waterfallgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_waterfallgroupgap.py b/plotly/validators/layout/_waterfallgroupgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_waterfallgroupgap.py rename to plotly/validators/layout/_waterfallgroupgap.py diff --git a/packages/python/plotly/plotly/validators/layout/_waterfallmode.py b/plotly/validators/layout/_waterfallmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_waterfallmode.py rename to plotly/validators/layout/_waterfallmode.py diff --git a/packages/python/plotly/plotly/validators/layout/_width.py b/plotly/validators/layout/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_width.py rename to plotly/validators/layout/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/_xaxis.py b/plotly/validators/layout/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_xaxis.py rename to plotly/validators/layout/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/_yaxis.py b/plotly/validators/layout/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/_yaxis.py rename to plotly/validators/layout/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/activeselection/__init__.py b/plotly/validators/layout/activeselection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/activeselection/__init__.py rename to plotly/validators/layout/activeselection/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/activeselection/_fillcolor.py b/plotly/validators/layout/activeselection/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/activeselection/_fillcolor.py rename to plotly/validators/layout/activeselection/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/activeselection/_opacity.py b/plotly/validators/layout/activeselection/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/activeselection/_opacity.py rename to plotly/validators/layout/activeselection/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/activeshape/__init__.py b/plotly/validators/layout/activeshape/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/activeshape/__init__.py rename to plotly/validators/layout/activeshape/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/activeshape/_fillcolor.py b/plotly/validators/layout/activeshape/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/activeshape/_fillcolor.py rename to plotly/validators/layout/activeshape/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/activeshape/_opacity.py b/plotly/validators/layout/activeshape/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/activeshape/_opacity.py rename to plotly/validators/layout/activeshape/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/__init__.py b/plotly/validators/layout/annotation/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/__init__.py rename to plotly/validators/layout/annotation/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_align.py b/plotly/validators/layout/annotation/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_align.py rename to plotly/validators/layout/annotation/_align.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_arrowcolor.py b/plotly/validators/layout/annotation/_arrowcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_arrowcolor.py rename to plotly/validators/layout/annotation/_arrowcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_arrowhead.py b/plotly/validators/layout/annotation/_arrowhead.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_arrowhead.py rename to plotly/validators/layout/annotation/_arrowhead.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_arrowside.py b/plotly/validators/layout/annotation/_arrowside.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_arrowside.py rename to plotly/validators/layout/annotation/_arrowside.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_arrowsize.py b/plotly/validators/layout/annotation/_arrowsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_arrowsize.py rename to plotly/validators/layout/annotation/_arrowsize.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_arrowwidth.py b/plotly/validators/layout/annotation/_arrowwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_arrowwidth.py rename to plotly/validators/layout/annotation/_arrowwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_ax.py b/plotly/validators/layout/annotation/_ax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_ax.py rename to plotly/validators/layout/annotation/_ax.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_axref.py b/plotly/validators/layout/annotation/_axref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_axref.py rename to plotly/validators/layout/annotation/_axref.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_ay.py b/plotly/validators/layout/annotation/_ay.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_ay.py rename to plotly/validators/layout/annotation/_ay.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_ayref.py b/plotly/validators/layout/annotation/_ayref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_ayref.py rename to plotly/validators/layout/annotation/_ayref.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_bgcolor.py b/plotly/validators/layout/annotation/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_bgcolor.py rename to plotly/validators/layout/annotation/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_bordercolor.py b/plotly/validators/layout/annotation/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_bordercolor.py rename to plotly/validators/layout/annotation/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_borderpad.py b/plotly/validators/layout/annotation/_borderpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_borderpad.py rename to plotly/validators/layout/annotation/_borderpad.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_borderwidth.py b/plotly/validators/layout/annotation/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_borderwidth.py rename to plotly/validators/layout/annotation/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_captureevents.py b/plotly/validators/layout/annotation/_captureevents.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_captureevents.py rename to plotly/validators/layout/annotation/_captureevents.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_clicktoshow.py b/plotly/validators/layout/annotation/_clicktoshow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_clicktoshow.py rename to plotly/validators/layout/annotation/_clicktoshow.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_font.py b/plotly/validators/layout/annotation/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_font.py rename to plotly/validators/layout/annotation/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_height.py b/plotly/validators/layout/annotation/_height.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_height.py rename to plotly/validators/layout/annotation/_height.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_hoverlabel.py b/plotly/validators/layout/annotation/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_hoverlabel.py rename to plotly/validators/layout/annotation/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_hovertext.py b/plotly/validators/layout/annotation/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_hovertext.py rename to plotly/validators/layout/annotation/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_name.py b/plotly/validators/layout/annotation/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_name.py rename to plotly/validators/layout/annotation/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_opacity.py b/plotly/validators/layout/annotation/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_opacity.py rename to plotly/validators/layout/annotation/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_showarrow.py b/plotly/validators/layout/annotation/_showarrow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_showarrow.py rename to plotly/validators/layout/annotation/_showarrow.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_standoff.py b/plotly/validators/layout/annotation/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_standoff.py rename to plotly/validators/layout/annotation/_standoff.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_startarrowhead.py b/plotly/validators/layout/annotation/_startarrowhead.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_startarrowhead.py rename to plotly/validators/layout/annotation/_startarrowhead.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_startarrowsize.py b/plotly/validators/layout/annotation/_startarrowsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_startarrowsize.py rename to plotly/validators/layout/annotation/_startarrowsize.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_startstandoff.py b/plotly/validators/layout/annotation/_startstandoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_startstandoff.py rename to plotly/validators/layout/annotation/_startstandoff.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_templateitemname.py b/plotly/validators/layout/annotation/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_templateitemname.py rename to plotly/validators/layout/annotation/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_text.py b/plotly/validators/layout/annotation/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_text.py rename to plotly/validators/layout/annotation/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_textangle.py b/plotly/validators/layout/annotation/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_textangle.py rename to plotly/validators/layout/annotation/_textangle.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_valign.py b/plotly/validators/layout/annotation/_valign.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_valign.py rename to plotly/validators/layout/annotation/_valign.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_visible.py b/plotly/validators/layout/annotation/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_visible.py rename to plotly/validators/layout/annotation/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_width.py b/plotly/validators/layout/annotation/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_width.py rename to plotly/validators/layout/annotation/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_x.py b/plotly/validators/layout/annotation/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_x.py rename to plotly/validators/layout/annotation/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_xanchor.py b/plotly/validators/layout/annotation/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_xanchor.py rename to plotly/validators/layout/annotation/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_xclick.py b/plotly/validators/layout/annotation/_xclick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_xclick.py rename to plotly/validators/layout/annotation/_xclick.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_xref.py b/plotly/validators/layout/annotation/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_xref.py rename to plotly/validators/layout/annotation/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_xshift.py b/plotly/validators/layout/annotation/_xshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_xshift.py rename to plotly/validators/layout/annotation/_xshift.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_y.py b/plotly/validators/layout/annotation/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_y.py rename to plotly/validators/layout/annotation/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_yanchor.py b/plotly/validators/layout/annotation/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_yanchor.py rename to plotly/validators/layout/annotation/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_yclick.py b/plotly/validators/layout/annotation/_yclick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_yclick.py rename to plotly/validators/layout/annotation/_yclick.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_yref.py b/plotly/validators/layout/annotation/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_yref.py rename to plotly/validators/layout/annotation/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/_yshift.py b/plotly/validators/layout/annotation/_yshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/_yshift.py rename to plotly/validators/layout/annotation/_yshift.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/__init__.py b/plotly/validators/layout/annotation/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/__init__.py rename to plotly/validators/layout/annotation/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_color.py b/plotly/validators/layout/annotation/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_color.py rename to plotly/validators/layout/annotation/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_family.py b/plotly/validators/layout/annotation/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_family.py rename to plotly/validators/layout/annotation/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_lineposition.py b/plotly/validators/layout/annotation/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_lineposition.py rename to plotly/validators/layout/annotation/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_shadow.py b/plotly/validators/layout/annotation/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_shadow.py rename to plotly/validators/layout/annotation/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_size.py b/plotly/validators/layout/annotation/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_size.py rename to plotly/validators/layout/annotation/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_style.py b/plotly/validators/layout/annotation/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_style.py rename to plotly/validators/layout/annotation/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_textcase.py b/plotly/validators/layout/annotation/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_textcase.py rename to plotly/validators/layout/annotation/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_variant.py b/plotly/validators/layout/annotation/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_variant.py rename to plotly/validators/layout/annotation/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/font/_weight.py b/plotly/validators/layout/annotation/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/font/_weight.py rename to plotly/validators/layout/annotation/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/__init__.py b/plotly/validators/layout/annotation/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/__init__.py rename to plotly/validators/layout/annotation/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/_bgcolor.py b/plotly/validators/layout/annotation/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/_bgcolor.py rename to plotly/validators/layout/annotation/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/_bordercolor.py b/plotly/validators/layout/annotation/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/_bordercolor.py rename to plotly/validators/layout/annotation/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/_font.py b/plotly/validators/layout/annotation/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/_font.py rename to plotly/validators/layout/annotation/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/__init__.py b/plotly/validators/layout/annotation/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/__init__.py rename to plotly/validators/layout/annotation/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_color.py b/plotly/validators/layout/annotation/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_color.py rename to plotly/validators/layout/annotation/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_family.py b/plotly/validators/layout/annotation/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_family.py rename to plotly/validators/layout/annotation/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_lineposition.py b/plotly/validators/layout/annotation/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_lineposition.py rename to plotly/validators/layout/annotation/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_shadow.py b/plotly/validators/layout/annotation/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_shadow.py rename to plotly/validators/layout/annotation/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_size.py b/plotly/validators/layout/annotation/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_size.py rename to plotly/validators/layout/annotation/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_style.py b/plotly/validators/layout/annotation/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_style.py rename to plotly/validators/layout/annotation/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_textcase.py b/plotly/validators/layout/annotation/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_textcase.py rename to plotly/validators/layout/annotation/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_variant.py b/plotly/validators/layout/annotation/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_variant.py rename to plotly/validators/layout/annotation/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_weight.py b/plotly/validators/layout/annotation/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/annotation/hoverlabel/font/_weight.py rename to plotly/validators/layout/annotation/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/__init__.py b/plotly/validators/layout/coloraxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/__init__.py rename to plotly/validators/layout/coloraxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_autocolorscale.py b/plotly/validators/layout/coloraxis/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_autocolorscale.py rename to plotly/validators/layout/coloraxis/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_cauto.py b/plotly/validators/layout/coloraxis/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_cauto.py rename to plotly/validators/layout/coloraxis/_cauto.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_cmax.py b/plotly/validators/layout/coloraxis/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_cmax.py rename to plotly/validators/layout/coloraxis/_cmax.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_cmid.py b/plotly/validators/layout/coloraxis/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_cmid.py rename to plotly/validators/layout/coloraxis/_cmid.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_cmin.py b/plotly/validators/layout/coloraxis/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_cmin.py rename to plotly/validators/layout/coloraxis/_cmin.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_colorbar.py b/plotly/validators/layout/coloraxis/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_colorbar.py rename to plotly/validators/layout/coloraxis/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_colorscale.py b/plotly/validators/layout/coloraxis/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_colorscale.py rename to plotly/validators/layout/coloraxis/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_reversescale.py b/plotly/validators/layout/coloraxis/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_reversescale.py rename to plotly/validators/layout/coloraxis/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/_showscale.py b/plotly/validators/layout/coloraxis/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/_showscale.py rename to plotly/validators/layout/coloraxis/_showscale.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/__init__.py b/plotly/validators/layout/coloraxis/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/__init__.py rename to plotly/validators/layout/coloraxis/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_bgcolor.py b/plotly/validators/layout/coloraxis/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_bgcolor.py rename to plotly/validators/layout/coloraxis/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_bordercolor.py b/plotly/validators/layout/coloraxis/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_bordercolor.py rename to plotly/validators/layout/coloraxis/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_borderwidth.py b/plotly/validators/layout/coloraxis/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_borderwidth.py rename to plotly/validators/layout/coloraxis/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_dtick.py b/plotly/validators/layout/coloraxis/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_dtick.py rename to plotly/validators/layout/coloraxis/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_exponentformat.py b/plotly/validators/layout/coloraxis/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_exponentformat.py rename to plotly/validators/layout/coloraxis/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_labelalias.py b/plotly/validators/layout/coloraxis/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_labelalias.py rename to plotly/validators/layout/coloraxis/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_len.py b/plotly/validators/layout/coloraxis/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_len.py rename to plotly/validators/layout/coloraxis/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_lenmode.py b/plotly/validators/layout/coloraxis/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_lenmode.py rename to plotly/validators/layout/coloraxis/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_minexponent.py b/plotly/validators/layout/coloraxis/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_minexponent.py rename to plotly/validators/layout/coloraxis/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_nticks.py b/plotly/validators/layout/coloraxis/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_nticks.py rename to plotly/validators/layout/coloraxis/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_orientation.py b/plotly/validators/layout/coloraxis/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_orientation.py rename to plotly/validators/layout/coloraxis/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_outlinecolor.py b/plotly/validators/layout/coloraxis/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_outlinecolor.py rename to plotly/validators/layout/coloraxis/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_outlinewidth.py b/plotly/validators/layout/coloraxis/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_outlinewidth.py rename to plotly/validators/layout/coloraxis/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_separatethousands.py b/plotly/validators/layout/coloraxis/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_separatethousands.py rename to plotly/validators/layout/coloraxis/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showexponent.py b/plotly/validators/layout/coloraxis/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showexponent.py rename to plotly/validators/layout/coloraxis/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showticklabels.py b/plotly/validators/layout/coloraxis/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showticklabels.py rename to plotly/validators/layout/coloraxis/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showtickprefix.py b/plotly/validators/layout/coloraxis/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showtickprefix.py rename to plotly/validators/layout/coloraxis/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showticksuffix.py b/plotly/validators/layout/coloraxis/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_showticksuffix.py rename to plotly/validators/layout/coloraxis/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_thickness.py b/plotly/validators/layout/coloraxis/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_thickness.py rename to plotly/validators/layout/coloraxis/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_thicknessmode.py b/plotly/validators/layout/coloraxis/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_thicknessmode.py rename to plotly/validators/layout/coloraxis/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tick0.py b/plotly/validators/layout/coloraxis/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tick0.py rename to plotly/validators/layout/coloraxis/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickangle.py b/plotly/validators/layout/coloraxis/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickangle.py rename to plotly/validators/layout/coloraxis/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickcolor.py b/plotly/validators/layout/coloraxis/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickcolor.py rename to plotly/validators/layout/coloraxis/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickfont.py b/plotly/validators/layout/coloraxis/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickfont.py rename to plotly/validators/layout/coloraxis/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickformat.py b/plotly/validators/layout/coloraxis/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickformat.py rename to plotly/validators/layout/coloraxis/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickformatstopdefaults.py b/plotly/validators/layout/coloraxis/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickformatstopdefaults.py rename to plotly/validators/layout/coloraxis/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickformatstops.py b/plotly/validators/layout/coloraxis/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickformatstops.py rename to plotly/validators/layout/coloraxis/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklabeloverflow.py b/plotly/validators/layout/coloraxis/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklabeloverflow.py rename to plotly/validators/layout/coloraxis/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklabelposition.py b/plotly/validators/layout/coloraxis/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklabelposition.py rename to plotly/validators/layout/coloraxis/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklabelstep.py b/plotly/validators/layout/coloraxis/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklabelstep.py rename to plotly/validators/layout/coloraxis/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklen.py b/plotly/validators/layout/coloraxis/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticklen.py rename to plotly/validators/layout/coloraxis/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickmode.py b/plotly/validators/layout/coloraxis/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickmode.py rename to plotly/validators/layout/coloraxis/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickprefix.py b/plotly/validators/layout/coloraxis/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickprefix.py rename to plotly/validators/layout/coloraxis/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticks.py b/plotly/validators/layout/coloraxis/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticks.py rename to plotly/validators/layout/coloraxis/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticksuffix.py b/plotly/validators/layout/coloraxis/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticksuffix.py rename to plotly/validators/layout/coloraxis/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticktext.py b/plotly/validators/layout/coloraxis/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticktext.py rename to plotly/validators/layout/coloraxis/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticktextsrc.py b/plotly/validators/layout/coloraxis/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ticktextsrc.py rename to plotly/validators/layout/coloraxis/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickvals.py b/plotly/validators/layout/coloraxis/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickvals.py rename to plotly/validators/layout/coloraxis/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickvalssrc.py b/plotly/validators/layout/coloraxis/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickvalssrc.py rename to plotly/validators/layout/coloraxis/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickwidth.py b/plotly/validators/layout/coloraxis/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_tickwidth.py rename to plotly/validators/layout/coloraxis/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_title.py b/plotly/validators/layout/coloraxis/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_title.py rename to plotly/validators/layout/coloraxis/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_x.py b/plotly/validators/layout/coloraxis/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_x.py rename to plotly/validators/layout/coloraxis/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_xanchor.py b/plotly/validators/layout/coloraxis/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_xanchor.py rename to plotly/validators/layout/coloraxis/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_xpad.py b/plotly/validators/layout/coloraxis/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_xpad.py rename to plotly/validators/layout/coloraxis/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_xref.py b/plotly/validators/layout/coloraxis/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_xref.py rename to plotly/validators/layout/coloraxis/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_y.py b/plotly/validators/layout/coloraxis/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_y.py rename to plotly/validators/layout/coloraxis/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_yanchor.py b/plotly/validators/layout/coloraxis/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_yanchor.py rename to plotly/validators/layout/coloraxis/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ypad.py b/plotly/validators/layout/coloraxis/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_ypad.py rename to plotly/validators/layout/coloraxis/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_yref.py b/plotly/validators/layout/coloraxis/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/_yref.py rename to plotly/validators/layout/coloraxis/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/__init__.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/__init__.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_color.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_color.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_family.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_family.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_lineposition.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_lineposition.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_shadow.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_shadow.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_size.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_size.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_style.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_style.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_textcase.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_textcase.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_variant.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_variant.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_weight.py b/plotly/validators/layout/coloraxis/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickfont/_weight.py rename to plotly/validators/layout/coloraxis/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/__init__.py b/plotly/validators/layout/coloraxis/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/__init__.py rename to plotly/validators/layout/coloraxis/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/layout/coloraxis/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_enabled.py b/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_enabled.py rename to plotly/validators/layout/coloraxis/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_name.py b/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_name.py rename to plotly/validators/layout/coloraxis/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/layout/coloraxis/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_value.py b/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/tickformatstop/_value.py rename to plotly/validators/layout/coloraxis/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/__init__.py b/plotly/validators/layout/coloraxis/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/__init__.py rename to plotly/validators/layout/coloraxis/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/_font.py b/plotly/validators/layout/coloraxis/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/_font.py rename to plotly/validators/layout/coloraxis/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/_side.py b/plotly/validators/layout/coloraxis/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/_side.py rename to plotly/validators/layout/coloraxis/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/_text.py b/plotly/validators/layout/coloraxis/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/_text.py rename to plotly/validators/layout/coloraxis/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/__init__.py b/plotly/validators/layout/coloraxis/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/__init__.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_color.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_color.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_family.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_family.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_lineposition.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_lineposition.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_shadow.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_shadow.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_size.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_size.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_style.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_style.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_textcase.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_textcase.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_variant.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_variant.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_weight.py b/plotly/validators/layout/coloraxis/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/coloraxis/colorbar/title/font/_weight.py rename to plotly/validators/layout/coloraxis/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/colorscale/__init__.py b/plotly/validators/layout/colorscale/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/colorscale/__init__.py rename to plotly/validators/layout/colorscale/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/colorscale/_diverging.py b/plotly/validators/layout/colorscale/_diverging.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/colorscale/_diverging.py rename to plotly/validators/layout/colorscale/_diverging.py diff --git a/packages/python/plotly/plotly/validators/layout/colorscale/_sequential.py b/plotly/validators/layout/colorscale/_sequential.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/colorscale/_sequential.py rename to plotly/validators/layout/colorscale/_sequential.py diff --git a/packages/python/plotly/plotly/validators/layout/colorscale/_sequentialminus.py b/plotly/validators/layout/colorscale/_sequentialminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/colorscale/_sequentialminus.py rename to plotly/validators/layout/colorscale/_sequentialminus.py diff --git a/packages/python/plotly/plotly/validators/layout/font/__init__.py b/plotly/validators/layout/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/__init__.py rename to plotly/validators/layout/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_color.py b/plotly/validators/layout/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_color.py rename to plotly/validators/layout/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_family.py b/plotly/validators/layout/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_family.py rename to plotly/validators/layout/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_lineposition.py b/plotly/validators/layout/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_lineposition.py rename to plotly/validators/layout/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_shadow.py b/plotly/validators/layout/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_shadow.py rename to plotly/validators/layout/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_size.py b/plotly/validators/layout/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_size.py rename to plotly/validators/layout/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_style.py b/plotly/validators/layout/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_style.py rename to plotly/validators/layout/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_textcase.py b/plotly/validators/layout/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_textcase.py rename to plotly/validators/layout/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_variant.py b/plotly/validators/layout/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_variant.py rename to plotly/validators/layout/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/font/_weight.py b/plotly/validators/layout/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/font/_weight.py rename to plotly/validators/layout/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/__init__.py b/plotly/validators/layout/geo/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/__init__.py rename to plotly/validators/layout/geo/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_bgcolor.py b/plotly/validators/layout/geo/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_bgcolor.py rename to plotly/validators/layout/geo/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_center.py b/plotly/validators/layout/geo/_center.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_center.py rename to plotly/validators/layout/geo/_center.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_coastlinecolor.py b/plotly/validators/layout/geo/_coastlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_coastlinecolor.py rename to plotly/validators/layout/geo/_coastlinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_coastlinewidth.py b/plotly/validators/layout/geo/_coastlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_coastlinewidth.py rename to plotly/validators/layout/geo/_coastlinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_countrycolor.py b/plotly/validators/layout/geo/_countrycolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_countrycolor.py rename to plotly/validators/layout/geo/_countrycolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_countrywidth.py b/plotly/validators/layout/geo/_countrywidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_countrywidth.py rename to plotly/validators/layout/geo/_countrywidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_domain.py b/plotly/validators/layout/geo/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_domain.py rename to plotly/validators/layout/geo/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_fitbounds.py b/plotly/validators/layout/geo/_fitbounds.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_fitbounds.py rename to plotly/validators/layout/geo/_fitbounds.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_framecolor.py b/plotly/validators/layout/geo/_framecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_framecolor.py rename to plotly/validators/layout/geo/_framecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_framewidth.py b/plotly/validators/layout/geo/_framewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_framewidth.py rename to plotly/validators/layout/geo/_framewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_lakecolor.py b/plotly/validators/layout/geo/_lakecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_lakecolor.py rename to plotly/validators/layout/geo/_lakecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_landcolor.py b/plotly/validators/layout/geo/_landcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_landcolor.py rename to plotly/validators/layout/geo/_landcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_lataxis.py b/plotly/validators/layout/geo/_lataxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_lataxis.py rename to plotly/validators/layout/geo/_lataxis.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_lonaxis.py b/plotly/validators/layout/geo/_lonaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_lonaxis.py rename to plotly/validators/layout/geo/_lonaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_oceancolor.py b/plotly/validators/layout/geo/_oceancolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_oceancolor.py rename to plotly/validators/layout/geo/_oceancolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_projection.py b/plotly/validators/layout/geo/_projection.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_projection.py rename to plotly/validators/layout/geo/_projection.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_resolution.py b/plotly/validators/layout/geo/_resolution.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_resolution.py rename to plotly/validators/layout/geo/_resolution.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_rivercolor.py b/plotly/validators/layout/geo/_rivercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_rivercolor.py rename to plotly/validators/layout/geo/_rivercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_riverwidth.py b/plotly/validators/layout/geo/_riverwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_riverwidth.py rename to plotly/validators/layout/geo/_riverwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_scope.py b/plotly/validators/layout/geo/_scope.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_scope.py rename to plotly/validators/layout/geo/_scope.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showcoastlines.py b/plotly/validators/layout/geo/_showcoastlines.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showcoastlines.py rename to plotly/validators/layout/geo/_showcoastlines.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showcountries.py b/plotly/validators/layout/geo/_showcountries.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showcountries.py rename to plotly/validators/layout/geo/_showcountries.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showframe.py b/plotly/validators/layout/geo/_showframe.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showframe.py rename to plotly/validators/layout/geo/_showframe.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showlakes.py b/plotly/validators/layout/geo/_showlakes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showlakes.py rename to plotly/validators/layout/geo/_showlakes.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showland.py b/plotly/validators/layout/geo/_showland.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showland.py rename to plotly/validators/layout/geo/_showland.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showocean.py b/plotly/validators/layout/geo/_showocean.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showocean.py rename to plotly/validators/layout/geo/_showocean.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showrivers.py b/plotly/validators/layout/geo/_showrivers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showrivers.py rename to plotly/validators/layout/geo/_showrivers.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_showsubunits.py b/plotly/validators/layout/geo/_showsubunits.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_showsubunits.py rename to plotly/validators/layout/geo/_showsubunits.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_subunitcolor.py b/plotly/validators/layout/geo/_subunitcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_subunitcolor.py rename to plotly/validators/layout/geo/_subunitcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_subunitwidth.py b/plotly/validators/layout/geo/_subunitwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_subunitwidth.py rename to plotly/validators/layout/geo/_subunitwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_uirevision.py b/plotly/validators/layout/geo/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_uirevision.py rename to plotly/validators/layout/geo/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/_visible.py b/plotly/validators/layout/geo/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/_visible.py rename to plotly/validators/layout/geo/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/center/__init__.py b/plotly/validators/layout/geo/center/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/center/__init__.py rename to plotly/validators/layout/geo/center/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/center/_lat.py b/plotly/validators/layout/geo/center/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/center/_lat.py rename to plotly/validators/layout/geo/center/_lat.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/center/_lon.py b/plotly/validators/layout/geo/center/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/center/_lon.py rename to plotly/validators/layout/geo/center/_lon.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/domain/__init__.py b/plotly/validators/layout/geo/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/domain/__init__.py rename to plotly/validators/layout/geo/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/domain/_column.py b/plotly/validators/layout/geo/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/domain/_column.py rename to plotly/validators/layout/geo/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/domain/_row.py b/plotly/validators/layout/geo/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/domain/_row.py rename to plotly/validators/layout/geo/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/domain/_x.py b/plotly/validators/layout/geo/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/domain/_x.py rename to plotly/validators/layout/geo/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/domain/_y.py b/plotly/validators/layout/geo/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/domain/_y.py rename to plotly/validators/layout/geo/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/__init__.py b/plotly/validators/layout/geo/lataxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/__init__.py rename to plotly/validators/layout/geo/lataxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_dtick.py b/plotly/validators/layout/geo/lataxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_dtick.py rename to plotly/validators/layout/geo/lataxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_gridcolor.py b/plotly/validators/layout/geo/lataxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_gridcolor.py rename to plotly/validators/layout/geo/lataxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_griddash.py b/plotly/validators/layout/geo/lataxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_griddash.py rename to plotly/validators/layout/geo/lataxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_gridwidth.py b/plotly/validators/layout/geo/lataxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_gridwidth.py rename to plotly/validators/layout/geo/lataxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_range.py b/plotly/validators/layout/geo/lataxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_range.py rename to plotly/validators/layout/geo/lataxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_showgrid.py b/plotly/validators/layout/geo/lataxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_showgrid.py rename to plotly/validators/layout/geo/lataxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lataxis/_tick0.py b/plotly/validators/layout/geo/lataxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lataxis/_tick0.py rename to plotly/validators/layout/geo/lataxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/__init__.py b/plotly/validators/layout/geo/lonaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/__init__.py rename to plotly/validators/layout/geo/lonaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_dtick.py b/plotly/validators/layout/geo/lonaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_dtick.py rename to plotly/validators/layout/geo/lonaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_gridcolor.py b/plotly/validators/layout/geo/lonaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_gridcolor.py rename to plotly/validators/layout/geo/lonaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_griddash.py b/plotly/validators/layout/geo/lonaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_griddash.py rename to plotly/validators/layout/geo/lonaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_gridwidth.py b/plotly/validators/layout/geo/lonaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_gridwidth.py rename to plotly/validators/layout/geo/lonaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_range.py b/plotly/validators/layout/geo/lonaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_range.py rename to plotly/validators/layout/geo/lonaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_showgrid.py b/plotly/validators/layout/geo/lonaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_showgrid.py rename to plotly/validators/layout/geo/lonaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/lonaxis/_tick0.py b/plotly/validators/layout/geo/lonaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/lonaxis/_tick0.py rename to plotly/validators/layout/geo/lonaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/__init__.py b/plotly/validators/layout/geo/projection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/__init__.py rename to plotly/validators/layout/geo/projection/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/_distance.py b/plotly/validators/layout/geo/projection/_distance.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/_distance.py rename to plotly/validators/layout/geo/projection/_distance.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/_parallels.py b/plotly/validators/layout/geo/projection/_parallels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/_parallels.py rename to plotly/validators/layout/geo/projection/_parallels.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/_rotation.py b/plotly/validators/layout/geo/projection/_rotation.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/_rotation.py rename to plotly/validators/layout/geo/projection/_rotation.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/_scale.py b/plotly/validators/layout/geo/projection/_scale.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/_scale.py rename to plotly/validators/layout/geo/projection/_scale.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/_tilt.py b/plotly/validators/layout/geo/projection/_tilt.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/_tilt.py rename to plotly/validators/layout/geo/projection/_tilt.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/_type.py b/plotly/validators/layout/geo/projection/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/_type.py rename to plotly/validators/layout/geo/projection/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/rotation/__init__.py b/plotly/validators/layout/geo/projection/rotation/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/rotation/__init__.py rename to plotly/validators/layout/geo/projection/rotation/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/rotation/_lat.py b/plotly/validators/layout/geo/projection/rotation/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/rotation/_lat.py rename to plotly/validators/layout/geo/projection/rotation/_lat.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/rotation/_lon.py b/plotly/validators/layout/geo/projection/rotation/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/rotation/_lon.py rename to plotly/validators/layout/geo/projection/rotation/_lon.py diff --git a/packages/python/plotly/plotly/validators/layout/geo/projection/rotation/_roll.py b/plotly/validators/layout/geo/projection/rotation/_roll.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/geo/projection/rotation/_roll.py rename to plotly/validators/layout/geo/projection/rotation/_roll.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/__init__.py b/plotly/validators/layout/grid/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/__init__.py rename to plotly/validators/layout/grid/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_columns.py b/plotly/validators/layout/grid/_columns.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_columns.py rename to plotly/validators/layout/grid/_columns.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_domain.py b/plotly/validators/layout/grid/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_domain.py rename to plotly/validators/layout/grid/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_pattern.py b/plotly/validators/layout/grid/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_pattern.py rename to plotly/validators/layout/grid/_pattern.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_roworder.py b/plotly/validators/layout/grid/_roworder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_roworder.py rename to plotly/validators/layout/grid/_roworder.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_rows.py b/plotly/validators/layout/grid/_rows.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_rows.py rename to plotly/validators/layout/grid/_rows.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_subplots.py b/plotly/validators/layout/grid/_subplots.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_subplots.py rename to plotly/validators/layout/grid/_subplots.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_xaxes.py b/plotly/validators/layout/grid/_xaxes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_xaxes.py rename to plotly/validators/layout/grid/_xaxes.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_xgap.py b/plotly/validators/layout/grid/_xgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_xgap.py rename to plotly/validators/layout/grid/_xgap.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_xside.py b/plotly/validators/layout/grid/_xside.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_xside.py rename to plotly/validators/layout/grid/_xside.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_yaxes.py b/plotly/validators/layout/grid/_yaxes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_yaxes.py rename to plotly/validators/layout/grid/_yaxes.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_ygap.py b/plotly/validators/layout/grid/_ygap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_ygap.py rename to plotly/validators/layout/grid/_ygap.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/_yside.py b/plotly/validators/layout/grid/_yside.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/_yside.py rename to plotly/validators/layout/grid/_yside.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/domain/__init__.py b/plotly/validators/layout/grid/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/domain/__init__.py rename to plotly/validators/layout/grid/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/domain/_x.py b/plotly/validators/layout/grid/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/domain/_x.py rename to plotly/validators/layout/grid/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/grid/domain/_y.py b/plotly/validators/layout/grid/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/grid/domain/_y.py rename to plotly/validators/layout/grid/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/__init__.py b/plotly/validators/layout/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/__init__.py rename to plotly/validators/layout/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/_align.py b/plotly/validators/layout/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/_align.py rename to plotly/validators/layout/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/_bgcolor.py b/plotly/validators/layout/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/_bgcolor.py rename to plotly/validators/layout/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/_bordercolor.py b/plotly/validators/layout/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/_bordercolor.py rename to plotly/validators/layout/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/_font.py b/plotly/validators/layout/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/_font.py rename to plotly/validators/layout/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/_grouptitlefont.py b/plotly/validators/layout/hoverlabel/_grouptitlefont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/_grouptitlefont.py rename to plotly/validators/layout/hoverlabel/_grouptitlefont.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/_namelength.py b/plotly/validators/layout/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/_namelength.py rename to plotly/validators/layout/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/__init__.py b/plotly/validators/layout/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/__init__.py rename to plotly/validators/layout/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_color.py b/plotly/validators/layout/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_color.py rename to plotly/validators/layout/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_family.py b/plotly/validators/layout/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_family.py rename to plotly/validators/layout/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_lineposition.py b/plotly/validators/layout/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_lineposition.py rename to plotly/validators/layout/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_shadow.py b/plotly/validators/layout/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_shadow.py rename to plotly/validators/layout/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_size.py b/plotly/validators/layout/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_size.py rename to plotly/validators/layout/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_style.py b/plotly/validators/layout/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_style.py rename to plotly/validators/layout/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_textcase.py b/plotly/validators/layout/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_textcase.py rename to plotly/validators/layout/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_variant.py b/plotly/validators/layout/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_variant.py rename to plotly/validators/layout/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/font/_weight.py b/plotly/validators/layout/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/font/_weight.py rename to plotly/validators/layout/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/__init__.py b/plotly/validators/layout/hoverlabel/grouptitlefont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/__init__.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_color.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_color.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_family.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_family.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_lineposition.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_lineposition.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_shadow.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_shadow.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_size.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_size.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_style.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_style.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_textcase.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_textcase.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_variant.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_variant.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_weight.py b/plotly/validators/layout/hoverlabel/grouptitlefont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/hoverlabel/grouptitlefont/_weight.py rename to plotly/validators/layout/hoverlabel/grouptitlefont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/image/__init__.py b/plotly/validators/layout/image/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/__init__.py rename to plotly/validators/layout/image/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_layer.py b/plotly/validators/layout/image/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_layer.py rename to plotly/validators/layout/image/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_name.py b/plotly/validators/layout/image/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_name.py rename to plotly/validators/layout/image/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_opacity.py b/plotly/validators/layout/image/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_opacity.py rename to plotly/validators/layout/image/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_sizex.py b/plotly/validators/layout/image/_sizex.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_sizex.py rename to plotly/validators/layout/image/_sizex.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_sizey.py b/plotly/validators/layout/image/_sizey.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_sizey.py rename to plotly/validators/layout/image/_sizey.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_sizing.py b/plotly/validators/layout/image/_sizing.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_sizing.py rename to plotly/validators/layout/image/_sizing.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_source.py b/plotly/validators/layout/image/_source.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_source.py rename to plotly/validators/layout/image/_source.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_templateitemname.py b/plotly/validators/layout/image/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_templateitemname.py rename to plotly/validators/layout/image/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_visible.py b/plotly/validators/layout/image/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_visible.py rename to plotly/validators/layout/image/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_x.py b/plotly/validators/layout/image/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_x.py rename to plotly/validators/layout/image/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_xanchor.py b/plotly/validators/layout/image/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_xanchor.py rename to plotly/validators/layout/image/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_xref.py b/plotly/validators/layout/image/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_xref.py rename to plotly/validators/layout/image/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_y.py b/plotly/validators/layout/image/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_y.py rename to plotly/validators/layout/image/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_yanchor.py b/plotly/validators/layout/image/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_yanchor.py rename to plotly/validators/layout/image/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/image/_yref.py b/plotly/validators/layout/image/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/image/_yref.py rename to plotly/validators/layout/image/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/__init__.py b/plotly/validators/layout/legend/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/__init__.py rename to plotly/validators/layout/legend/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_bgcolor.py b/plotly/validators/layout/legend/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_bgcolor.py rename to plotly/validators/layout/legend/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_bordercolor.py b/plotly/validators/layout/legend/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_bordercolor.py rename to plotly/validators/layout/legend/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_borderwidth.py b/plotly/validators/layout/legend/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_borderwidth.py rename to plotly/validators/layout/legend/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_entrywidth.py b/plotly/validators/layout/legend/_entrywidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_entrywidth.py rename to plotly/validators/layout/legend/_entrywidth.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_entrywidthmode.py b/plotly/validators/layout/legend/_entrywidthmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_entrywidthmode.py rename to plotly/validators/layout/legend/_entrywidthmode.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_font.py b/plotly/validators/layout/legend/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_font.py rename to plotly/validators/layout/legend/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_groupclick.py b/plotly/validators/layout/legend/_groupclick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_groupclick.py rename to plotly/validators/layout/legend/_groupclick.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_grouptitlefont.py b/plotly/validators/layout/legend/_grouptitlefont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_grouptitlefont.py rename to plotly/validators/layout/legend/_grouptitlefont.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_indentation.py b/plotly/validators/layout/legend/_indentation.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_indentation.py rename to plotly/validators/layout/legend/_indentation.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_itemclick.py b/plotly/validators/layout/legend/_itemclick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_itemclick.py rename to plotly/validators/layout/legend/_itemclick.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_itemdoubleclick.py b/plotly/validators/layout/legend/_itemdoubleclick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_itemdoubleclick.py rename to plotly/validators/layout/legend/_itemdoubleclick.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_itemsizing.py b/plotly/validators/layout/legend/_itemsizing.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_itemsizing.py rename to plotly/validators/layout/legend/_itemsizing.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_itemwidth.py b/plotly/validators/layout/legend/_itemwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_itemwidth.py rename to plotly/validators/layout/legend/_itemwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_orientation.py b/plotly/validators/layout/legend/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_orientation.py rename to plotly/validators/layout/legend/_orientation.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_title.py b/plotly/validators/layout/legend/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_title.py rename to plotly/validators/layout/legend/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_tracegroupgap.py b/plotly/validators/layout/legend/_tracegroupgap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_tracegroupgap.py rename to plotly/validators/layout/legend/_tracegroupgap.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_traceorder.py b/plotly/validators/layout/legend/_traceorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_traceorder.py rename to plotly/validators/layout/legend/_traceorder.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_uirevision.py b/plotly/validators/layout/legend/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_uirevision.py rename to plotly/validators/layout/legend/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_valign.py b/plotly/validators/layout/legend/_valign.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_valign.py rename to plotly/validators/layout/legend/_valign.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_visible.py b/plotly/validators/layout/legend/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_visible.py rename to plotly/validators/layout/legend/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_x.py b/plotly/validators/layout/legend/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_x.py rename to plotly/validators/layout/legend/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_xanchor.py b/plotly/validators/layout/legend/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_xanchor.py rename to plotly/validators/layout/legend/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_xref.py b/plotly/validators/layout/legend/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_xref.py rename to plotly/validators/layout/legend/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_y.py b/plotly/validators/layout/legend/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_y.py rename to plotly/validators/layout/legend/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_yanchor.py b/plotly/validators/layout/legend/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_yanchor.py rename to plotly/validators/layout/legend/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/_yref.py b/plotly/validators/layout/legend/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/_yref.py rename to plotly/validators/layout/legend/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/__init__.py b/plotly/validators/layout/legend/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/__init__.py rename to plotly/validators/layout/legend/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_color.py b/plotly/validators/layout/legend/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_color.py rename to plotly/validators/layout/legend/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_family.py b/plotly/validators/layout/legend/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_family.py rename to plotly/validators/layout/legend/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_lineposition.py b/plotly/validators/layout/legend/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_lineposition.py rename to plotly/validators/layout/legend/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_shadow.py b/plotly/validators/layout/legend/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_shadow.py rename to plotly/validators/layout/legend/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_size.py b/plotly/validators/layout/legend/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_size.py rename to plotly/validators/layout/legend/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_style.py b/plotly/validators/layout/legend/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_style.py rename to plotly/validators/layout/legend/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_textcase.py b/plotly/validators/layout/legend/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_textcase.py rename to plotly/validators/layout/legend/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_variant.py b/plotly/validators/layout/legend/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_variant.py rename to plotly/validators/layout/legend/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/font/_weight.py b/plotly/validators/layout/legend/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/font/_weight.py rename to plotly/validators/layout/legend/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/__init__.py b/plotly/validators/layout/legend/grouptitlefont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/__init__.py rename to plotly/validators/layout/legend/grouptitlefont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_color.py b/plotly/validators/layout/legend/grouptitlefont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_color.py rename to plotly/validators/layout/legend/grouptitlefont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_family.py b/plotly/validators/layout/legend/grouptitlefont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_family.py rename to plotly/validators/layout/legend/grouptitlefont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_lineposition.py b/plotly/validators/layout/legend/grouptitlefont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_lineposition.py rename to plotly/validators/layout/legend/grouptitlefont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_shadow.py b/plotly/validators/layout/legend/grouptitlefont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_shadow.py rename to plotly/validators/layout/legend/grouptitlefont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_size.py b/plotly/validators/layout/legend/grouptitlefont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_size.py rename to plotly/validators/layout/legend/grouptitlefont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_style.py b/plotly/validators/layout/legend/grouptitlefont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_style.py rename to plotly/validators/layout/legend/grouptitlefont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_textcase.py b/plotly/validators/layout/legend/grouptitlefont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_textcase.py rename to plotly/validators/layout/legend/grouptitlefont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_variant.py b/plotly/validators/layout/legend/grouptitlefont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_variant.py rename to plotly/validators/layout/legend/grouptitlefont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_weight.py b/plotly/validators/layout/legend/grouptitlefont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/grouptitlefont/_weight.py rename to plotly/validators/layout/legend/grouptitlefont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/__init__.py b/plotly/validators/layout/legend/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/__init__.py rename to plotly/validators/layout/legend/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/_font.py b/plotly/validators/layout/legend/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/_font.py rename to plotly/validators/layout/legend/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/_side.py b/plotly/validators/layout/legend/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/_side.py rename to plotly/validators/layout/legend/title/_side.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/_text.py b/plotly/validators/layout/legend/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/_text.py rename to plotly/validators/layout/legend/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/__init__.py b/plotly/validators/layout/legend/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/__init__.py rename to plotly/validators/layout/legend/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_color.py b/plotly/validators/layout/legend/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_color.py rename to plotly/validators/layout/legend/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_family.py b/plotly/validators/layout/legend/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_family.py rename to plotly/validators/layout/legend/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_lineposition.py b/plotly/validators/layout/legend/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_lineposition.py rename to plotly/validators/layout/legend/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_shadow.py b/plotly/validators/layout/legend/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_shadow.py rename to plotly/validators/layout/legend/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_size.py b/plotly/validators/layout/legend/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_size.py rename to plotly/validators/layout/legend/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_style.py b/plotly/validators/layout/legend/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_style.py rename to plotly/validators/layout/legend/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_textcase.py b/plotly/validators/layout/legend/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_textcase.py rename to plotly/validators/layout/legend/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_variant.py b/plotly/validators/layout/legend/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_variant.py rename to plotly/validators/layout/legend/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/legend/title/font/_weight.py b/plotly/validators/layout/legend/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/legend/title/font/_weight.py rename to plotly/validators/layout/legend/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/map/__init__.py b/plotly/validators/layout/map/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/__init__.py rename to plotly/validators/layout/map/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_bearing.py b/plotly/validators/layout/map/_bearing.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_bearing.py rename to plotly/validators/layout/map/_bearing.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_bounds.py b/plotly/validators/layout/map/_bounds.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_bounds.py rename to plotly/validators/layout/map/_bounds.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_center.py b/plotly/validators/layout/map/_center.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_center.py rename to plotly/validators/layout/map/_center.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_domain.py b/plotly/validators/layout/map/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_domain.py rename to plotly/validators/layout/map/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_layerdefaults.py b/plotly/validators/layout/map/_layerdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_layerdefaults.py rename to plotly/validators/layout/map/_layerdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_layers.py b/plotly/validators/layout/map/_layers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_layers.py rename to plotly/validators/layout/map/_layers.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_pitch.py b/plotly/validators/layout/map/_pitch.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_pitch.py rename to plotly/validators/layout/map/_pitch.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_style.py b/plotly/validators/layout/map/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_style.py rename to plotly/validators/layout/map/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_uirevision.py b/plotly/validators/layout/map/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_uirevision.py rename to plotly/validators/layout/map/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/map/_zoom.py b/plotly/validators/layout/map/_zoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/_zoom.py rename to plotly/validators/layout/map/_zoom.py diff --git a/packages/python/plotly/plotly/validators/layout/map/bounds/__init__.py b/plotly/validators/layout/map/bounds/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/bounds/__init__.py rename to plotly/validators/layout/map/bounds/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/bounds/_east.py b/plotly/validators/layout/map/bounds/_east.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/bounds/_east.py rename to plotly/validators/layout/map/bounds/_east.py diff --git a/packages/python/plotly/plotly/validators/layout/map/bounds/_north.py b/plotly/validators/layout/map/bounds/_north.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/bounds/_north.py rename to plotly/validators/layout/map/bounds/_north.py diff --git a/packages/python/plotly/plotly/validators/layout/map/bounds/_south.py b/plotly/validators/layout/map/bounds/_south.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/bounds/_south.py rename to plotly/validators/layout/map/bounds/_south.py diff --git a/packages/python/plotly/plotly/validators/layout/map/bounds/_west.py b/plotly/validators/layout/map/bounds/_west.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/bounds/_west.py rename to plotly/validators/layout/map/bounds/_west.py diff --git a/packages/python/plotly/plotly/validators/layout/map/center/__init__.py b/plotly/validators/layout/map/center/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/center/__init__.py rename to plotly/validators/layout/map/center/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/center/_lat.py b/plotly/validators/layout/map/center/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/center/_lat.py rename to plotly/validators/layout/map/center/_lat.py diff --git a/packages/python/plotly/plotly/validators/layout/map/center/_lon.py b/plotly/validators/layout/map/center/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/center/_lon.py rename to plotly/validators/layout/map/center/_lon.py diff --git a/packages/python/plotly/plotly/validators/layout/map/domain/__init__.py b/plotly/validators/layout/map/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/domain/__init__.py rename to plotly/validators/layout/map/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/domain/_column.py b/plotly/validators/layout/map/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/domain/_column.py rename to plotly/validators/layout/map/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/map/domain/_row.py b/plotly/validators/layout/map/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/domain/_row.py rename to plotly/validators/layout/map/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/map/domain/_x.py b/plotly/validators/layout/map/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/domain/_x.py rename to plotly/validators/layout/map/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/map/domain/_y.py b/plotly/validators/layout/map/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/domain/_y.py rename to plotly/validators/layout/map/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/__init__.py b/plotly/validators/layout/map/layer/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/__init__.py rename to plotly/validators/layout/map/layer/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_below.py b/plotly/validators/layout/map/layer/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_below.py rename to plotly/validators/layout/map/layer/_below.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_circle.py b/plotly/validators/layout/map/layer/_circle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_circle.py rename to plotly/validators/layout/map/layer/_circle.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_color.py b/plotly/validators/layout/map/layer/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_color.py rename to plotly/validators/layout/map/layer/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_coordinates.py b/plotly/validators/layout/map/layer/_coordinates.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_coordinates.py rename to plotly/validators/layout/map/layer/_coordinates.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_fill.py b/plotly/validators/layout/map/layer/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_fill.py rename to plotly/validators/layout/map/layer/_fill.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_line.py b/plotly/validators/layout/map/layer/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_line.py rename to plotly/validators/layout/map/layer/_line.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_maxzoom.py b/plotly/validators/layout/map/layer/_maxzoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_maxzoom.py rename to plotly/validators/layout/map/layer/_maxzoom.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_minzoom.py b/plotly/validators/layout/map/layer/_minzoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_minzoom.py rename to plotly/validators/layout/map/layer/_minzoom.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_name.py b/plotly/validators/layout/map/layer/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_name.py rename to plotly/validators/layout/map/layer/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_opacity.py b/plotly/validators/layout/map/layer/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_opacity.py rename to plotly/validators/layout/map/layer/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_source.py b/plotly/validators/layout/map/layer/_source.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_source.py rename to plotly/validators/layout/map/layer/_source.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_sourceattribution.py b/plotly/validators/layout/map/layer/_sourceattribution.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_sourceattribution.py rename to plotly/validators/layout/map/layer/_sourceattribution.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_sourcelayer.py b/plotly/validators/layout/map/layer/_sourcelayer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_sourcelayer.py rename to plotly/validators/layout/map/layer/_sourcelayer.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_sourcetype.py b/plotly/validators/layout/map/layer/_sourcetype.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_sourcetype.py rename to plotly/validators/layout/map/layer/_sourcetype.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_symbol.py b/plotly/validators/layout/map/layer/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_symbol.py rename to plotly/validators/layout/map/layer/_symbol.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_templateitemname.py b/plotly/validators/layout/map/layer/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_templateitemname.py rename to plotly/validators/layout/map/layer/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_type.py b/plotly/validators/layout/map/layer/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_type.py rename to plotly/validators/layout/map/layer/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/_visible.py b/plotly/validators/layout/map/layer/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/_visible.py rename to plotly/validators/layout/map/layer/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/circle/__init__.py b/plotly/validators/layout/map/layer/circle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/circle/__init__.py rename to plotly/validators/layout/map/layer/circle/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/circle/_radius.py b/plotly/validators/layout/map/layer/circle/_radius.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/circle/_radius.py rename to plotly/validators/layout/map/layer/circle/_radius.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/fill/__init__.py b/plotly/validators/layout/map/layer/fill/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/fill/__init__.py rename to plotly/validators/layout/map/layer/fill/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/fill/_outlinecolor.py b/plotly/validators/layout/map/layer/fill/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/fill/_outlinecolor.py rename to plotly/validators/layout/map/layer/fill/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/line/__init__.py b/plotly/validators/layout/map/layer/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/line/__init__.py rename to plotly/validators/layout/map/layer/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/line/_dash.py b/plotly/validators/layout/map/layer/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/line/_dash.py rename to plotly/validators/layout/map/layer/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/line/_dashsrc.py b/plotly/validators/layout/map/layer/line/_dashsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/line/_dashsrc.py rename to plotly/validators/layout/map/layer/line/_dashsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/line/_width.py b/plotly/validators/layout/map/layer/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/line/_width.py rename to plotly/validators/layout/map/layer/line/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/__init__.py b/plotly/validators/layout/map/layer/symbol/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/__init__.py rename to plotly/validators/layout/map/layer/symbol/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/_icon.py b/plotly/validators/layout/map/layer/symbol/_icon.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/_icon.py rename to plotly/validators/layout/map/layer/symbol/_icon.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/_iconsize.py b/plotly/validators/layout/map/layer/symbol/_iconsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/_iconsize.py rename to plotly/validators/layout/map/layer/symbol/_iconsize.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/_placement.py b/plotly/validators/layout/map/layer/symbol/_placement.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/_placement.py rename to plotly/validators/layout/map/layer/symbol/_placement.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/_text.py b/plotly/validators/layout/map/layer/symbol/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/_text.py rename to plotly/validators/layout/map/layer/symbol/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/_textfont.py b/plotly/validators/layout/map/layer/symbol/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/_textfont.py rename to plotly/validators/layout/map/layer/symbol/_textfont.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/_textposition.py b/plotly/validators/layout/map/layer/symbol/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/_textposition.py rename to plotly/validators/layout/map/layer/symbol/_textposition.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/__init__.py b/plotly/validators/layout/map/layer/symbol/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/__init__.py rename to plotly/validators/layout/map/layer/symbol/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_color.py b/plotly/validators/layout/map/layer/symbol/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_color.py rename to plotly/validators/layout/map/layer/symbol/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_family.py b/plotly/validators/layout/map/layer/symbol/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_family.py rename to plotly/validators/layout/map/layer/symbol/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_size.py b/plotly/validators/layout/map/layer/symbol/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_size.py rename to plotly/validators/layout/map/layer/symbol/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_style.py b/plotly/validators/layout/map/layer/symbol/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_style.py rename to plotly/validators/layout/map/layer/symbol/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_weight.py b/plotly/validators/layout/map/layer/symbol/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/map/layer/symbol/textfont/_weight.py rename to plotly/validators/layout/map/layer/symbol/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/__init__.py b/plotly/validators/layout/mapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/__init__.py rename to plotly/validators/layout/mapbox/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_accesstoken.py b/plotly/validators/layout/mapbox/_accesstoken.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_accesstoken.py rename to plotly/validators/layout/mapbox/_accesstoken.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_bearing.py b/plotly/validators/layout/mapbox/_bearing.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_bearing.py rename to plotly/validators/layout/mapbox/_bearing.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_bounds.py b/plotly/validators/layout/mapbox/_bounds.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_bounds.py rename to plotly/validators/layout/mapbox/_bounds.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_center.py b/plotly/validators/layout/mapbox/_center.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_center.py rename to plotly/validators/layout/mapbox/_center.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_domain.py b/plotly/validators/layout/mapbox/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_domain.py rename to plotly/validators/layout/mapbox/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_layerdefaults.py b/plotly/validators/layout/mapbox/_layerdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_layerdefaults.py rename to plotly/validators/layout/mapbox/_layerdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_layers.py b/plotly/validators/layout/mapbox/_layers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_layers.py rename to plotly/validators/layout/mapbox/_layers.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_pitch.py b/plotly/validators/layout/mapbox/_pitch.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_pitch.py rename to plotly/validators/layout/mapbox/_pitch.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_style.py b/plotly/validators/layout/mapbox/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_style.py rename to plotly/validators/layout/mapbox/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_uirevision.py b/plotly/validators/layout/mapbox/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_uirevision.py rename to plotly/validators/layout/mapbox/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/_zoom.py b/plotly/validators/layout/mapbox/_zoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/_zoom.py rename to plotly/validators/layout/mapbox/_zoom.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/bounds/__init__.py b/plotly/validators/layout/mapbox/bounds/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/bounds/__init__.py rename to plotly/validators/layout/mapbox/bounds/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/bounds/_east.py b/plotly/validators/layout/mapbox/bounds/_east.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/bounds/_east.py rename to plotly/validators/layout/mapbox/bounds/_east.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/bounds/_north.py b/plotly/validators/layout/mapbox/bounds/_north.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/bounds/_north.py rename to plotly/validators/layout/mapbox/bounds/_north.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/bounds/_south.py b/plotly/validators/layout/mapbox/bounds/_south.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/bounds/_south.py rename to plotly/validators/layout/mapbox/bounds/_south.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/bounds/_west.py b/plotly/validators/layout/mapbox/bounds/_west.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/bounds/_west.py rename to plotly/validators/layout/mapbox/bounds/_west.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/center/__init__.py b/plotly/validators/layout/mapbox/center/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/center/__init__.py rename to plotly/validators/layout/mapbox/center/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/center/_lat.py b/plotly/validators/layout/mapbox/center/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/center/_lat.py rename to plotly/validators/layout/mapbox/center/_lat.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/center/_lon.py b/plotly/validators/layout/mapbox/center/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/center/_lon.py rename to plotly/validators/layout/mapbox/center/_lon.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/domain/__init__.py b/plotly/validators/layout/mapbox/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/domain/__init__.py rename to plotly/validators/layout/mapbox/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/domain/_column.py b/plotly/validators/layout/mapbox/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/domain/_column.py rename to plotly/validators/layout/mapbox/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/domain/_row.py b/plotly/validators/layout/mapbox/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/domain/_row.py rename to plotly/validators/layout/mapbox/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/domain/_x.py b/plotly/validators/layout/mapbox/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/domain/_x.py rename to plotly/validators/layout/mapbox/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/domain/_y.py b/plotly/validators/layout/mapbox/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/domain/_y.py rename to plotly/validators/layout/mapbox/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/__init__.py b/plotly/validators/layout/mapbox/layer/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/__init__.py rename to plotly/validators/layout/mapbox/layer/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_below.py b/plotly/validators/layout/mapbox/layer/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_below.py rename to plotly/validators/layout/mapbox/layer/_below.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_circle.py b/plotly/validators/layout/mapbox/layer/_circle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_circle.py rename to plotly/validators/layout/mapbox/layer/_circle.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_color.py b/plotly/validators/layout/mapbox/layer/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_color.py rename to plotly/validators/layout/mapbox/layer/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_coordinates.py b/plotly/validators/layout/mapbox/layer/_coordinates.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_coordinates.py rename to plotly/validators/layout/mapbox/layer/_coordinates.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_fill.py b/plotly/validators/layout/mapbox/layer/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_fill.py rename to plotly/validators/layout/mapbox/layer/_fill.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_line.py b/plotly/validators/layout/mapbox/layer/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_line.py rename to plotly/validators/layout/mapbox/layer/_line.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_maxzoom.py b/plotly/validators/layout/mapbox/layer/_maxzoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_maxzoom.py rename to plotly/validators/layout/mapbox/layer/_maxzoom.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_minzoom.py b/plotly/validators/layout/mapbox/layer/_minzoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_minzoom.py rename to plotly/validators/layout/mapbox/layer/_minzoom.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_name.py b/plotly/validators/layout/mapbox/layer/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_name.py rename to plotly/validators/layout/mapbox/layer/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_opacity.py b/plotly/validators/layout/mapbox/layer/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_opacity.py rename to plotly/validators/layout/mapbox/layer/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_source.py b/plotly/validators/layout/mapbox/layer/_source.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_source.py rename to plotly/validators/layout/mapbox/layer/_source.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_sourceattribution.py b/plotly/validators/layout/mapbox/layer/_sourceattribution.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_sourceattribution.py rename to plotly/validators/layout/mapbox/layer/_sourceattribution.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_sourcelayer.py b/plotly/validators/layout/mapbox/layer/_sourcelayer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_sourcelayer.py rename to plotly/validators/layout/mapbox/layer/_sourcelayer.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_sourcetype.py b/plotly/validators/layout/mapbox/layer/_sourcetype.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_sourcetype.py rename to plotly/validators/layout/mapbox/layer/_sourcetype.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_symbol.py b/plotly/validators/layout/mapbox/layer/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_symbol.py rename to plotly/validators/layout/mapbox/layer/_symbol.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_templateitemname.py b/plotly/validators/layout/mapbox/layer/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_templateitemname.py rename to plotly/validators/layout/mapbox/layer/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_type.py b/plotly/validators/layout/mapbox/layer/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_type.py rename to plotly/validators/layout/mapbox/layer/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/_visible.py b/plotly/validators/layout/mapbox/layer/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/_visible.py rename to plotly/validators/layout/mapbox/layer/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/circle/__init__.py b/plotly/validators/layout/mapbox/layer/circle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/circle/__init__.py rename to plotly/validators/layout/mapbox/layer/circle/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/circle/_radius.py b/plotly/validators/layout/mapbox/layer/circle/_radius.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/circle/_radius.py rename to plotly/validators/layout/mapbox/layer/circle/_radius.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/fill/__init__.py b/plotly/validators/layout/mapbox/layer/fill/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/fill/__init__.py rename to plotly/validators/layout/mapbox/layer/fill/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/fill/_outlinecolor.py b/plotly/validators/layout/mapbox/layer/fill/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/fill/_outlinecolor.py rename to plotly/validators/layout/mapbox/layer/fill/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/line/__init__.py b/plotly/validators/layout/mapbox/layer/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/line/__init__.py rename to plotly/validators/layout/mapbox/layer/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/line/_dash.py b/plotly/validators/layout/mapbox/layer/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/line/_dash.py rename to plotly/validators/layout/mapbox/layer/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/line/_dashsrc.py b/plotly/validators/layout/mapbox/layer/line/_dashsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/line/_dashsrc.py rename to plotly/validators/layout/mapbox/layer/line/_dashsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/line/_width.py b/plotly/validators/layout/mapbox/layer/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/line/_width.py rename to plotly/validators/layout/mapbox/layer/line/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/__init__.py b/plotly/validators/layout/mapbox/layer/symbol/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/__init__.py rename to plotly/validators/layout/mapbox/layer/symbol/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_icon.py b/plotly/validators/layout/mapbox/layer/symbol/_icon.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_icon.py rename to plotly/validators/layout/mapbox/layer/symbol/_icon.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_iconsize.py b/plotly/validators/layout/mapbox/layer/symbol/_iconsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_iconsize.py rename to plotly/validators/layout/mapbox/layer/symbol/_iconsize.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_placement.py b/plotly/validators/layout/mapbox/layer/symbol/_placement.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_placement.py rename to plotly/validators/layout/mapbox/layer/symbol/_placement.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_text.py b/plotly/validators/layout/mapbox/layer/symbol/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_text.py rename to plotly/validators/layout/mapbox/layer/symbol/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_textfont.py b/plotly/validators/layout/mapbox/layer/symbol/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_textfont.py rename to plotly/validators/layout/mapbox/layer/symbol/_textfont.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_textposition.py b/plotly/validators/layout/mapbox/layer/symbol/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/_textposition.py rename to plotly/validators/layout/mapbox/layer/symbol/_textposition.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/__init__.py b/plotly/validators/layout/mapbox/layer/symbol/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/__init__.py rename to plotly/validators/layout/mapbox/layer/symbol/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_color.py b/plotly/validators/layout/mapbox/layer/symbol/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_color.py rename to plotly/validators/layout/mapbox/layer/symbol/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_family.py b/plotly/validators/layout/mapbox/layer/symbol/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_family.py rename to plotly/validators/layout/mapbox/layer/symbol/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_size.py b/plotly/validators/layout/mapbox/layer/symbol/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_size.py rename to plotly/validators/layout/mapbox/layer/symbol/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_style.py b/plotly/validators/layout/mapbox/layer/symbol/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_style.py rename to plotly/validators/layout/mapbox/layer/symbol/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_weight.py b/plotly/validators/layout/mapbox/layer/symbol/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/mapbox/layer/symbol/textfont/_weight.py rename to plotly/validators/layout/mapbox/layer/symbol/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/__init__.py b/plotly/validators/layout/margin/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/__init__.py rename to plotly/validators/layout/margin/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/_autoexpand.py b/plotly/validators/layout/margin/_autoexpand.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/_autoexpand.py rename to plotly/validators/layout/margin/_autoexpand.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/_b.py b/plotly/validators/layout/margin/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/_b.py rename to plotly/validators/layout/margin/_b.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/_l.py b/plotly/validators/layout/margin/_l.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/_l.py rename to plotly/validators/layout/margin/_l.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/_pad.py b/plotly/validators/layout/margin/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/_pad.py rename to plotly/validators/layout/margin/_pad.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/_r.py b/plotly/validators/layout/margin/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/_r.py rename to plotly/validators/layout/margin/_r.py diff --git a/packages/python/plotly/plotly/validators/layout/margin/_t.py b/plotly/validators/layout/margin/_t.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/margin/_t.py rename to plotly/validators/layout/margin/_t.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/__init__.py b/plotly/validators/layout/modebar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/__init__.py rename to plotly/validators/layout/modebar/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_activecolor.py b/plotly/validators/layout/modebar/_activecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_activecolor.py rename to plotly/validators/layout/modebar/_activecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_add.py b/plotly/validators/layout/modebar/_add.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_add.py rename to plotly/validators/layout/modebar/_add.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_addsrc.py b/plotly/validators/layout/modebar/_addsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_addsrc.py rename to plotly/validators/layout/modebar/_addsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_bgcolor.py b/plotly/validators/layout/modebar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_bgcolor.py rename to plotly/validators/layout/modebar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_color.py b/plotly/validators/layout/modebar/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_color.py rename to plotly/validators/layout/modebar/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_orientation.py b/plotly/validators/layout/modebar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_orientation.py rename to plotly/validators/layout/modebar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_remove.py b/plotly/validators/layout/modebar/_remove.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_remove.py rename to plotly/validators/layout/modebar/_remove.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_removesrc.py b/plotly/validators/layout/modebar/_removesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_removesrc.py rename to plotly/validators/layout/modebar/_removesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/modebar/_uirevision.py b/plotly/validators/layout/modebar/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/modebar/_uirevision.py rename to plotly/validators/layout/modebar/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/__init__.py b/plotly/validators/layout/newselection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/__init__.py rename to plotly/validators/layout/newselection/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/_line.py b/plotly/validators/layout/newselection/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/_line.py rename to plotly/validators/layout/newselection/_line.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/_mode.py b/plotly/validators/layout/newselection/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/_mode.py rename to plotly/validators/layout/newselection/_mode.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/line/__init__.py b/plotly/validators/layout/newselection/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/line/__init__.py rename to plotly/validators/layout/newselection/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/line/_color.py b/plotly/validators/layout/newselection/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/line/_color.py rename to plotly/validators/layout/newselection/line/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/line/_dash.py b/plotly/validators/layout/newselection/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/line/_dash.py rename to plotly/validators/layout/newselection/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/layout/newselection/line/_width.py b/plotly/validators/layout/newselection/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newselection/line/_width.py rename to plotly/validators/layout/newselection/line/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/__init__.py b/plotly/validators/layout/newshape/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/__init__.py rename to plotly/validators/layout/newshape/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_drawdirection.py b/plotly/validators/layout/newshape/_drawdirection.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_drawdirection.py rename to plotly/validators/layout/newshape/_drawdirection.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_fillcolor.py b/plotly/validators/layout/newshape/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_fillcolor.py rename to plotly/validators/layout/newshape/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_fillrule.py b/plotly/validators/layout/newshape/_fillrule.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_fillrule.py rename to plotly/validators/layout/newshape/_fillrule.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_label.py b/plotly/validators/layout/newshape/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_label.py rename to plotly/validators/layout/newshape/_label.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_layer.py b/plotly/validators/layout/newshape/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_layer.py rename to plotly/validators/layout/newshape/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_legend.py b/plotly/validators/layout/newshape/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_legend.py rename to plotly/validators/layout/newshape/_legend.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_legendgroup.py b/plotly/validators/layout/newshape/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_legendgroup.py rename to plotly/validators/layout/newshape/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_legendgrouptitle.py b/plotly/validators/layout/newshape/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_legendgrouptitle.py rename to plotly/validators/layout/newshape/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_legendrank.py b/plotly/validators/layout/newshape/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_legendrank.py rename to plotly/validators/layout/newshape/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_legendwidth.py b/plotly/validators/layout/newshape/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_legendwidth.py rename to plotly/validators/layout/newshape/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_line.py b/plotly/validators/layout/newshape/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_line.py rename to plotly/validators/layout/newshape/_line.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_name.py b/plotly/validators/layout/newshape/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_name.py rename to plotly/validators/layout/newshape/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_opacity.py b/plotly/validators/layout/newshape/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_opacity.py rename to plotly/validators/layout/newshape/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_showlegend.py b/plotly/validators/layout/newshape/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_showlegend.py rename to plotly/validators/layout/newshape/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/_visible.py b/plotly/validators/layout/newshape/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/_visible.py rename to plotly/validators/layout/newshape/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/__init__.py b/plotly/validators/layout/newshape/label/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/__init__.py rename to plotly/validators/layout/newshape/label/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_font.py b/plotly/validators/layout/newshape/label/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_font.py rename to plotly/validators/layout/newshape/label/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_padding.py b/plotly/validators/layout/newshape/label/_padding.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_padding.py rename to plotly/validators/layout/newshape/label/_padding.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_text.py b/plotly/validators/layout/newshape/label/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_text.py rename to plotly/validators/layout/newshape/label/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_textangle.py b/plotly/validators/layout/newshape/label/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_textangle.py rename to plotly/validators/layout/newshape/label/_textangle.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_textposition.py b/plotly/validators/layout/newshape/label/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_textposition.py rename to plotly/validators/layout/newshape/label/_textposition.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_texttemplate.py b/plotly/validators/layout/newshape/label/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_texttemplate.py rename to plotly/validators/layout/newshape/label/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_xanchor.py b/plotly/validators/layout/newshape/label/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_xanchor.py rename to plotly/validators/layout/newshape/label/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/_yanchor.py b/plotly/validators/layout/newshape/label/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/_yanchor.py rename to plotly/validators/layout/newshape/label/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/__init__.py b/plotly/validators/layout/newshape/label/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/__init__.py rename to plotly/validators/layout/newshape/label/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_color.py b/plotly/validators/layout/newshape/label/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_color.py rename to plotly/validators/layout/newshape/label/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_family.py b/plotly/validators/layout/newshape/label/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_family.py rename to plotly/validators/layout/newshape/label/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_lineposition.py b/plotly/validators/layout/newshape/label/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_lineposition.py rename to plotly/validators/layout/newshape/label/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_shadow.py b/plotly/validators/layout/newshape/label/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_shadow.py rename to plotly/validators/layout/newshape/label/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_size.py b/plotly/validators/layout/newshape/label/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_size.py rename to plotly/validators/layout/newshape/label/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_style.py b/plotly/validators/layout/newshape/label/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_style.py rename to plotly/validators/layout/newshape/label/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_textcase.py b/plotly/validators/layout/newshape/label/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_textcase.py rename to plotly/validators/layout/newshape/label/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_variant.py b/plotly/validators/layout/newshape/label/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_variant.py rename to plotly/validators/layout/newshape/label/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/label/font/_weight.py b/plotly/validators/layout/newshape/label/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/label/font/_weight.py rename to plotly/validators/layout/newshape/label/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/__init__.py b/plotly/validators/layout/newshape/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/__init__.py rename to plotly/validators/layout/newshape/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/_font.py b/plotly/validators/layout/newshape/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/_font.py rename to plotly/validators/layout/newshape/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/_text.py b/plotly/validators/layout/newshape/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/_text.py rename to plotly/validators/layout/newshape/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/__init__.py b/plotly/validators/layout/newshape/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/__init__.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_color.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_color.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_family.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_family.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_lineposition.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_lineposition.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_shadow.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_shadow.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_size.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_size.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_style.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_style.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_textcase.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_textcase.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_variant.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_variant.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_weight.py b/plotly/validators/layout/newshape/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/legendgrouptitle/font/_weight.py rename to plotly/validators/layout/newshape/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/line/__init__.py b/plotly/validators/layout/newshape/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/line/__init__.py rename to plotly/validators/layout/newshape/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/line/_color.py b/plotly/validators/layout/newshape/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/line/_color.py rename to plotly/validators/layout/newshape/line/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/line/_dash.py b/plotly/validators/layout/newshape/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/line/_dash.py rename to plotly/validators/layout/newshape/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/layout/newshape/line/_width.py b/plotly/validators/layout/newshape/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/newshape/line/_width.py rename to plotly/validators/layout/newshape/line/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/__init__.py b/plotly/validators/layout/polar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/__init__.py rename to plotly/validators/layout/polar/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_angularaxis.py b/plotly/validators/layout/polar/_angularaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_angularaxis.py rename to plotly/validators/layout/polar/_angularaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_bargap.py b/plotly/validators/layout/polar/_bargap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_bargap.py rename to plotly/validators/layout/polar/_bargap.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_barmode.py b/plotly/validators/layout/polar/_barmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_barmode.py rename to plotly/validators/layout/polar/_barmode.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_bgcolor.py b/plotly/validators/layout/polar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_bgcolor.py rename to plotly/validators/layout/polar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_domain.py b/plotly/validators/layout/polar/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_domain.py rename to plotly/validators/layout/polar/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_gridshape.py b/plotly/validators/layout/polar/_gridshape.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_gridshape.py rename to plotly/validators/layout/polar/_gridshape.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_hole.py b/plotly/validators/layout/polar/_hole.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_hole.py rename to plotly/validators/layout/polar/_hole.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_radialaxis.py b/plotly/validators/layout/polar/_radialaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_radialaxis.py rename to plotly/validators/layout/polar/_radialaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_sector.py b/plotly/validators/layout/polar/_sector.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_sector.py rename to plotly/validators/layout/polar/_sector.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/_uirevision.py b/plotly/validators/layout/polar/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/_uirevision.py rename to plotly/validators/layout/polar/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/__init__.py b/plotly/validators/layout/polar/angularaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/__init__.py rename to plotly/validators/layout/polar/angularaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_autotypenumbers.py b/plotly/validators/layout/polar/angularaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_autotypenumbers.py rename to plotly/validators/layout/polar/angularaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_categoryarray.py b/plotly/validators/layout/polar/angularaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_categoryarray.py rename to plotly/validators/layout/polar/angularaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_categoryarraysrc.py b/plotly/validators/layout/polar/angularaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_categoryarraysrc.py rename to plotly/validators/layout/polar/angularaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_categoryorder.py b/plotly/validators/layout/polar/angularaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_categoryorder.py rename to plotly/validators/layout/polar/angularaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_color.py b/plotly/validators/layout/polar/angularaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_color.py rename to plotly/validators/layout/polar/angularaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_direction.py b/plotly/validators/layout/polar/angularaxis/_direction.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_direction.py rename to plotly/validators/layout/polar/angularaxis/_direction.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_dtick.py b/plotly/validators/layout/polar/angularaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_dtick.py rename to plotly/validators/layout/polar/angularaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_exponentformat.py b/plotly/validators/layout/polar/angularaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_exponentformat.py rename to plotly/validators/layout/polar/angularaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_gridcolor.py b/plotly/validators/layout/polar/angularaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_gridcolor.py rename to plotly/validators/layout/polar/angularaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_griddash.py b/plotly/validators/layout/polar/angularaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_griddash.py rename to plotly/validators/layout/polar/angularaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_gridwidth.py b/plotly/validators/layout/polar/angularaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_gridwidth.py rename to plotly/validators/layout/polar/angularaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_hoverformat.py b/plotly/validators/layout/polar/angularaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_hoverformat.py rename to plotly/validators/layout/polar/angularaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_labelalias.py b/plotly/validators/layout/polar/angularaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_labelalias.py rename to plotly/validators/layout/polar/angularaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_layer.py b/plotly/validators/layout/polar/angularaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_layer.py rename to plotly/validators/layout/polar/angularaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_linecolor.py b/plotly/validators/layout/polar/angularaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_linecolor.py rename to plotly/validators/layout/polar/angularaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_linewidth.py b/plotly/validators/layout/polar/angularaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_linewidth.py rename to plotly/validators/layout/polar/angularaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_minexponent.py b/plotly/validators/layout/polar/angularaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_minexponent.py rename to plotly/validators/layout/polar/angularaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_nticks.py b/plotly/validators/layout/polar/angularaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_nticks.py rename to plotly/validators/layout/polar/angularaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_period.py b/plotly/validators/layout/polar/angularaxis/_period.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_period.py rename to plotly/validators/layout/polar/angularaxis/_period.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_rotation.py b/plotly/validators/layout/polar/angularaxis/_rotation.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_rotation.py rename to plotly/validators/layout/polar/angularaxis/_rotation.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_separatethousands.py b/plotly/validators/layout/polar/angularaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_separatethousands.py rename to plotly/validators/layout/polar/angularaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showexponent.py b/plotly/validators/layout/polar/angularaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showexponent.py rename to plotly/validators/layout/polar/angularaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showgrid.py b/plotly/validators/layout/polar/angularaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showgrid.py rename to plotly/validators/layout/polar/angularaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showline.py b/plotly/validators/layout/polar/angularaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showline.py rename to plotly/validators/layout/polar/angularaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showticklabels.py b/plotly/validators/layout/polar/angularaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showticklabels.py rename to plotly/validators/layout/polar/angularaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showtickprefix.py b/plotly/validators/layout/polar/angularaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showtickprefix.py rename to plotly/validators/layout/polar/angularaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showticksuffix.py b/plotly/validators/layout/polar/angularaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_showticksuffix.py rename to plotly/validators/layout/polar/angularaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_thetaunit.py b/plotly/validators/layout/polar/angularaxis/_thetaunit.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_thetaunit.py rename to plotly/validators/layout/polar/angularaxis/_thetaunit.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tick0.py b/plotly/validators/layout/polar/angularaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tick0.py rename to plotly/validators/layout/polar/angularaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickangle.py b/plotly/validators/layout/polar/angularaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickangle.py rename to plotly/validators/layout/polar/angularaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickcolor.py b/plotly/validators/layout/polar/angularaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickcolor.py rename to plotly/validators/layout/polar/angularaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickfont.py b/plotly/validators/layout/polar/angularaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickfont.py rename to plotly/validators/layout/polar/angularaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickformat.py b/plotly/validators/layout/polar/angularaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickformat.py rename to plotly/validators/layout/polar/angularaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py b/plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/polar/angularaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickformatstops.py b/plotly/validators/layout/polar/angularaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickformatstops.py rename to plotly/validators/layout/polar/angularaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticklabelstep.py b/plotly/validators/layout/polar/angularaxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticklabelstep.py rename to plotly/validators/layout/polar/angularaxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticklen.py b/plotly/validators/layout/polar/angularaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticklen.py rename to plotly/validators/layout/polar/angularaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickmode.py b/plotly/validators/layout/polar/angularaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickmode.py rename to plotly/validators/layout/polar/angularaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickprefix.py b/plotly/validators/layout/polar/angularaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickprefix.py rename to plotly/validators/layout/polar/angularaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticks.py b/plotly/validators/layout/polar/angularaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticks.py rename to plotly/validators/layout/polar/angularaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticksuffix.py b/plotly/validators/layout/polar/angularaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticksuffix.py rename to plotly/validators/layout/polar/angularaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticktext.py b/plotly/validators/layout/polar/angularaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticktext.py rename to plotly/validators/layout/polar/angularaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticktextsrc.py b/plotly/validators/layout/polar/angularaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_ticktextsrc.py rename to plotly/validators/layout/polar/angularaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickvals.py b/plotly/validators/layout/polar/angularaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickvals.py rename to plotly/validators/layout/polar/angularaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickvalssrc.py b/plotly/validators/layout/polar/angularaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickvalssrc.py rename to plotly/validators/layout/polar/angularaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickwidth.py b/plotly/validators/layout/polar/angularaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_tickwidth.py rename to plotly/validators/layout/polar/angularaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_type.py b/plotly/validators/layout/polar/angularaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_type.py rename to plotly/validators/layout/polar/angularaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_uirevision.py b/plotly/validators/layout/polar/angularaxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_uirevision.py rename to plotly/validators/layout/polar/angularaxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/_visible.py b/plotly/validators/layout/polar/angularaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/_visible.py rename to plotly/validators/layout/polar/angularaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/__init__.py b/plotly/validators/layout/polar/angularaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/__init__.py rename to plotly/validators/layout/polar/angularaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_color.py b/plotly/validators/layout/polar/angularaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_color.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_family.py b/plotly/validators/layout/polar/angularaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_family.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_lineposition.py b/plotly/validators/layout/polar/angularaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_lineposition.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_shadow.py b/plotly/validators/layout/polar/angularaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_shadow.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_size.py b/plotly/validators/layout/polar/angularaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_size.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_style.py b/plotly/validators/layout/polar/angularaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_style.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_textcase.py b/plotly/validators/layout/polar/angularaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_textcase.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_variant.py b/plotly/validators/layout/polar/angularaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_variant.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_weight.py b/plotly/validators/layout/polar/angularaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickfont/_weight.py rename to plotly/validators/layout/polar/angularaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/__init__.py b/plotly/validators/layout/polar/angularaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/__init__.py rename to plotly/validators/layout/polar/angularaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/polar/angularaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/polar/angularaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_enabled.py b/plotly/validators/layout/polar/angularaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/polar/angularaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_name.py b/plotly/validators/layout/polar/angularaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_name.py rename to plotly/validators/layout/polar/angularaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/polar/angularaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/polar/angularaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_value.py b/plotly/validators/layout/polar/angularaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/angularaxis/tickformatstop/_value.py rename to plotly/validators/layout/polar/angularaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/domain/__init__.py b/plotly/validators/layout/polar/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/domain/__init__.py rename to plotly/validators/layout/polar/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/domain/_column.py b/plotly/validators/layout/polar/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/domain/_column.py rename to plotly/validators/layout/polar/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/domain/_row.py b/plotly/validators/layout/polar/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/domain/_row.py rename to plotly/validators/layout/polar/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/domain/_x.py b/plotly/validators/layout/polar/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/domain/_x.py rename to plotly/validators/layout/polar/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/domain/_y.py b/plotly/validators/layout/polar/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/domain/_y.py rename to plotly/validators/layout/polar/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/__init__.py b/plotly/validators/layout/polar/radialaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/__init__.py rename to plotly/validators/layout/polar/radialaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_angle.py b/plotly/validators/layout/polar/radialaxis/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_angle.py rename to plotly/validators/layout/polar/radialaxis/_angle.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autorange.py b/plotly/validators/layout/polar/radialaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autorange.py rename to plotly/validators/layout/polar/radialaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autorangeoptions.py b/plotly/validators/layout/polar/radialaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autorangeoptions.py rename to plotly/validators/layout/polar/radialaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autotickangles.py b/plotly/validators/layout/polar/radialaxis/_autotickangles.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autotickangles.py rename to plotly/validators/layout/polar/radialaxis/_autotickangles.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autotypenumbers.py b/plotly/validators/layout/polar/radialaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_autotypenumbers.py rename to plotly/validators/layout/polar/radialaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_calendar.py b/plotly/validators/layout/polar/radialaxis/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_calendar.py rename to plotly/validators/layout/polar/radialaxis/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_categoryarray.py b/plotly/validators/layout/polar/radialaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_categoryarray.py rename to plotly/validators/layout/polar/radialaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_categoryarraysrc.py b/plotly/validators/layout/polar/radialaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_categoryarraysrc.py rename to plotly/validators/layout/polar/radialaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_categoryorder.py b/plotly/validators/layout/polar/radialaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_categoryorder.py rename to plotly/validators/layout/polar/radialaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_color.py b/plotly/validators/layout/polar/radialaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_color.py rename to plotly/validators/layout/polar/radialaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_dtick.py b/plotly/validators/layout/polar/radialaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_dtick.py rename to plotly/validators/layout/polar/radialaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_exponentformat.py b/plotly/validators/layout/polar/radialaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_exponentformat.py rename to plotly/validators/layout/polar/radialaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_gridcolor.py b/plotly/validators/layout/polar/radialaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_gridcolor.py rename to plotly/validators/layout/polar/radialaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_griddash.py b/plotly/validators/layout/polar/radialaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_griddash.py rename to plotly/validators/layout/polar/radialaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_gridwidth.py b/plotly/validators/layout/polar/radialaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_gridwidth.py rename to plotly/validators/layout/polar/radialaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_hoverformat.py b/plotly/validators/layout/polar/radialaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_hoverformat.py rename to plotly/validators/layout/polar/radialaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_labelalias.py b/plotly/validators/layout/polar/radialaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_labelalias.py rename to plotly/validators/layout/polar/radialaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_layer.py b/plotly/validators/layout/polar/radialaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_layer.py rename to plotly/validators/layout/polar/radialaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_linecolor.py b/plotly/validators/layout/polar/radialaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_linecolor.py rename to plotly/validators/layout/polar/radialaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_linewidth.py b/plotly/validators/layout/polar/radialaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_linewidth.py rename to plotly/validators/layout/polar/radialaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_maxallowed.py b/plotly/validators/layout/polar/radialaxis/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_maxallowed.py rename to plotly/validators/layout/polar/radialaxis/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_minallowed.py b/plotly/validators/layout/polar/radialaxis/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_minallowed.py rename to plotly/validators/layout/polar/radialaxis/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_minexponent.py b/plotly/validators/layout/polar/radialaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_minexponent.py rename to plotly/validators/layout/polar/radialaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_nticks.py b/plotly/validators/layout/polar/radialaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_nticks.py rename to plotly/validators/layout/polar/radialaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_range.py b/plotly/validators/layout/polar/radialaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_range.py rename to plotly/validators/layout/polar/radialaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_rangemode.py b/plotly/validators/layout/polar/radialaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_rangemode.py rename to plotly/validators/layout/polar/radialaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_separatethousands.py b/plotly/validators/layout/polar/radialaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_separatethousands.py rename to plotly/validators/layout/polar/radialaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showexponent.py b/plotly/validators/layout/polar/radialaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showexponent.py rename to plotly/validators/layout/polar/radialaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showgrid.py b/plotly/validators/layout/polar/radialaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showgrid.py rename to plotly/validators/layout/polar/radialaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showline.py b/plotly/validators/layout/polar/radialaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showline.py rename to plotly/validators/layout/polar/radialaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showticklabels.py b/plotly/validators/layout/polar/radialaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showticklabels.py rename to plotly/validators/layout/polar/radialaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showtickprefix.py b/plotly/validators/layout/polar/radialaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showtickprefix.py rename to plotly/validators/layout/polar/radialaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showticksuffix.py b/plotly/validators/layout/polar/radialaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_showticksuffix.py rename to plotly/validators/layout/polar/radialaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_side.py b/plotly/validators/layout/polar/radialaxis/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_side.py rename to plotly/validators/layout/polar/radialaxis/_side.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tick0.py b/plotly/validators/layout/polar/radialaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tick0.py rename to plotly/validators/layout/polar/radialaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickangle.py b/plotly/validators/layout/polar/radialaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickangle.py rename to plotly/validators/layout/polar/radialaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickcolor.py b/plotly/validators/layout/polar/radialaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickcolor.py rename to plotly/validators/layout/polar/radialaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickfont.py b/plotly/validators/layout/polar/radialaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickfont.py rename to plotly/validators/layout/polar/radialaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickformat.py b/plotly/validators/layout/polar/radialaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickformat.py rename to plotly/validators/layout/polar/radialaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py b/plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/polar/radialaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickformatstops.py b/plotly/validators/layout/polar/radialaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickformatstops.py rename to plotly/validators/layout/polar/radialaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticklabelstep.py b/plotly/validators/layout/polar/radialaxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticklabelstep.py rename to plotly/validators/layout/polar/radialaxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticklen.py b/plotly/validators/layout/polar/radialaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticklen.py rename to plotly/validators/layout/polar/radialaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickmode.py b/plotly/validators/layout/polar/radialaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickmode.py rename to plotly/validators/layout/polar/radialaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickprefix.py b/plotly/validators/layout/polar/radialaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickprefix.py rename to plotly/validators/layout/polar/radialaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticks.py b/plotly/validators/layout/polar/radialaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticks.py rename to plotly/validators/layout/polar/radialaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticksuffix.py b/plotly/validators/layout/polar/radialaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticksuffix.py rename to plotly/validators/layout/polar/radialaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticktext.py b/plotly/validators/layout/polar/radialaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticktext.py rename to plotly/validators/layout/polar/radialaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticktextsrc.py b/plotly/validators/layout/polar/radialaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_ticktextsrc.py rename to plotly/validators/layout/polar/radialaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickvals.py b/plotly/validators/layout/polar/radialaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickvals.py rename to plotly/validators/layout/polar/radialaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickvalssrc.py b/plotly/validators/layout/polar/radialaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickvalssrc.py rename to plotly/validators/layout/polar/radialaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickwidth.py b/plotly/validators/layout/polar/radialaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_tickwidth.py rename to plotly/validators/layout/polar/radialaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_title.py b/plotly/validators/layout/polar/radialaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_title.py rename to plotly/validators/layout/polar/radialaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_type.py b/plotly/validators/layout/polar/radialaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_type.py rename to plotly/validators/layout/polar/radialaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_uirevision.py b/plotly/validators/layout/polar/radialaxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_uirevision.py rename to plotly/validators/layout/polar/radialaxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/_visible.py b/plotly/validators/layout/polar/radialaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/_visible.py rename to plotly/validators/layout/polar/radialaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/__init__.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/__init__.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmax.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmax.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmax.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmin.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmin.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/_clipmin.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_include.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/_include.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_include.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/_include.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_includesrc.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/_includesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_includesrc.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/_includesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_maxallowed.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_maxallowed.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_minallowed.py b/plotly/validators/layout/polar/radialaxis/autorangeoptions/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/autorangeoptions/_minallowed.py rename to plotly/validators/layout/polar/radialaxis/autorangeoptions/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/__init__.py b/plotly/validators/layout/polar/radialaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/__init__.py rename to plotly/validators/layout/polar/radialaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_color.py b/plotly/validators/layout/polar/radialaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_color.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_family.py b/plotly/validators/layout/polar/radialaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_family.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_lineposition.py b/plotly/validators/layout/polar/radialaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_lineposition.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_shadow.py b/plotly/validators/layout/polar/radialaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_shadow.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_size.py b/plotly/validators/layout/polar/radialaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_size.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_style.py b/plotly/validators/layout/polar/radialaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_style.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_textcase.py b/plotly/validators/layout/polar/radialaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_textcase.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_variant.py b/plotly/validators/layout/polar/radialaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_variant.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_weight.py b/plotly/validators/layout/polar/radialaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickfont/_weight.py rename to plotly/validators/layout/polar/radialaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/__init__.py b/plotly/validators/layout/polar/radialaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/__init__.py rename to plotly/validators/layout/polar/radialaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/polar/radialaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/polar/radialaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_enabled.py b/plotly/validators/layout/polar/radialaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/polar/radialaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_name.py b/plotly/validators/layout/polar/radialaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_name.py rename to plotly/validators/layout/polar/radialaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/polar/radialaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/polar/radialaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_value.py b/plotly/validators/layout/polar/radialaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/tickformatstop/_value.py rename to plotly/validators/layout/polar/radialaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/__init__.py b/plotly/validators/layout/polar/radialaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/__init__.py rename to plotly/validators/layout/polar/radialaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/_font.py b/plotly/validators/layout/polar/radialaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/_font.py rename to plotly/validators/layout/polar/radialaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/_text.py b/plotly/validators/layout/polar/radialaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/_text.py rename to plotly/validators/layout/polar/radialaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/__init__.py b/plotly/validators/layout/polar/radialaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/__init__.py rename to plotly/validators/layout/polar/radialaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_color.py b/plotly/validators/layout/polar/radialaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_color.py rename to plotly/validators/layout/polar/radialaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_family.py b/plotly/validators/layout/polar/radialaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_family.py rename to plotly/validators/layout/polar/radialaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_lineposition.py b/plotly/validators/layout/polar/radialaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_lineposition.py rename to plotly/validators/layout/polar/radialaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_shadow.py b/plotly/validators/layout/polar/radialaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_shadow.py rename to plotly/validators/layout/polar/radialaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_size.py b/plotly/validators/layout/polar/radialaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_size.py rename to plotly/validators/layout/polar/radialaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_style.py b/plotly/validators/layout/polar/radialaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_style.py rename to plotly/validators/layout/polar/radialaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_textcase.py b/plotly/validators/layout/polar/radialaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_textcase.py rename to plotly/validators/layout/polar/radialaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_variant.py b/plotly/validators/layout/polar/radialaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_variant.py rename to plotly/validators/layout/polar/radialaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_weight.py b/plotly/validators/layout/polar/radialaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/polar/radialaxis/title/font/_weight.py rename to plotly/validators/layout/polar/radialaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/__init__.py b/plotly/validators/layout/scene/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/__init__.py rename to plotly/validators/layout/scene/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_annotationdefaults.py b/plotly/validators/layout/scene/_annotationdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_annotationdefaults.py rename to plotly/validators/layout/scene/_annotationdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_annotations.py b/plotly/validators/layout/scene/_annotations.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_annotations.py rename to plotly/validators/layout/scene/_annotations.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_aspectmode.py b/plotly/validators/layout/scene/_aspectmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_aspectmode.py rename to plotly/validators/layout/scene/_aspectmode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_aspectratio.py b/plotly/validators/layout/scene/_aspectratio.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_aspectratio.py rename to plotly/validators/layout/scene/_aspectratio.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_bgcolor.py b/plotly/validators/layout/scene/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_bgcolor.py rename to plotly/validators/layout/scene/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_camera.py b/plotly/validators/layout/scene/_camera.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_camera.py rename to plotly/validators/layout/scene/_camera.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_domain.py b/plotly/validators/layout/scene/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_domain.py rename to plotly/validators/layout/scene/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_dragmode.py b/plotly/validators/layout/scene/_dragmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_dragmode.py rename to plotly/validators/layout/scene/_dragmode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_hovermode.py b/plotly/validators/layout/scene/_hovermode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_hovermode.py rename to plotly/validators/layout/scene/_hovermode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_uirevision.py b/plotly/validators/layout/scene/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_uirevision.py rename to plotly/validators/layout/scene/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_xaxis.py b/plotly/validators/layout/scene/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_xaxis.py rename to plotly/validators/layout/scene/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_yaxis.py b/plotly/validators/layout/scene/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_yaxis.py rename to plotly/validators/layout/scene/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/_zaxis.py b/plotly/validators/layout/scene/_zaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/_zaxis.py rename to plotly/validators/layout/scene/_zaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/__init__.py b/plotly/validators/layout/scene/annotation/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/__init__.py rename to plotly/validators/layout/scene/annotation/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_align.py b/plotly/validators/layout/scene/annotation/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_align.py rename to plotly/validators/layout/scene/annotation/_align.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowcolor.py b/plotly/validators/layout/scene/annotation/_arrowcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowcolor.py rename to plotly/validators/layout/scene/annotation/_arrowcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowhead.py b/plotly/validators/layout/scene/annotation/_arrowhead.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowhead.py rename to plotly/validators/layout/scene/annotation/_arrowhead.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowside.py b/plotly/validators/layout/scene/annotation/_arrowside.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowside.py rename to plotly/validators/layout/scene/annotation/_arrowside.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowsize.py b/plotly/validators/layout/scene/annotation/_arrowsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowsize.py rename to plotly/validators/layout/scene/annotation/_arrowsize.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowwidth.py b/plotly/validators/layout/scene/annotation/_arrowwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_arrowwidth.py rename to plotly/validators/layout/scene/annotation/_arrowwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_ax.py b/plotly/validators/layout/scene/annotation/_ax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_ax.py rename to plotly/validators/layout/scene/annotation/_ax.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_ay.py b/plotly/validators/layout/scene/annotation/_ay.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_ay.py rename to plotly/validators/layout/scene/annotation/_ay.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_bgcolor.py b/plotly/validators/layout/scene/annotation/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_bgcolor.py rename to plotly/validators/layout/scene/annotation/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_bordercolor.py b/plotly/validators/layout/scene/annotation/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_bordercolor.py rename to plotly/validators/layout/scene/annotation/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_borderpad.py b/plotly/validators/layout/scene/annotation/_borderpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_borderpad.py rename to plotly/validators/layout/scene/annotation/_borderpad.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_borderwidth.py b/plotly/validators/layout/scene/annotation/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_borderwidth.py rename to plotly/validators/layout/scene/annotation/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_captureevents.py b/plotly/validators/layout/scene/annotation/_captureevents.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_captureevents.py rename to plotly/validators/layout/scene/annotation/_captureevents.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_font.py b/plotly/validators/layout/scene/annotation/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_font.py rename to plotly/validators/layout/scene/annotation/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_height.py b/plotly/validators/layout/scene/annotation/_height.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_height.py rename to plotly/validators/layout/scene/annotation/_height.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_hoverlabel.py b/plotly/validators/layout/scene/annotation/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_hoverlabel.py rename to plotly/validators/layout/scene/annotation/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_hovertext.py b/plotly/validators/layout/scene/annotation/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_hovertext.py rename to plotly/validators/layout/scene/annotation/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_name.py b/plotly/validators/layout/scene/annotation/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_name.py rename to plotly/validators/layout/scene/annotation/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_opacity.py b/plotly/validators/layout/scene/annotation/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_opacity.py rename to plotly/validators/layout/scene/annotation/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_showarrow.py b/plotly/validators/layout/scene/annotation/_showarrow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_showarrow.py rename to plotly/validators/layout/scene/annotation/_showarrow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_standoff.py b/plotly/validators/layout/scene/annotation/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_standoff.py rename to plotly/validators/layout/scene/annotation/_standoff.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_startarrowhead.py b/plotly/validators/layout/scene/annotation/_startarrowhead.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_startarrowhead.py rename to plotly/validators/layout/scene/annotation/_startarrowhead.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_startarrowsize.py b/plotly/validators/layout/scene/annotation/_startarrowsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_startarrowsize.py rename to plotly/validators/layout/scene/annotation/_startarrowsize.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_startstandoff.py b/plotly/validators/layout/scene/annotation/_startstandoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_startstandoff.py rename to plotly/validators/layout/scene/annotation/_startstandoff.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_templateitemname.py b/plotly/validators/layout/scene/annotation/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_templateitemname.py rename to plotly/validators/layout/scene/annotation/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_text.py b/plotly/validators/layout/scene/annotation/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_text.py rename to plotly/validators/layout/scene/annotation/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_textangle.py b/plotly/validators/layout/scene/annotation/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_textangle.py rename to plotly/validators/layout/scene/annotation/_textangle.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_valign.py b/plotly/validators/layout/scene/annotation/_valign.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_valign.py rename to plotly/validators/layout/scene/annotation/_valign.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_visible.py b/plotly/validators/layout/scene/annotation/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_visible.py rename to plotly/validators/layout/scene/annotation/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_width.py b/plotly/validators/layout/scene/annotation/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_width.py rename to plotly/validators/layout/scene/annotation/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_x.py b/plotly/validators/layout/scene/annotation/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_x.py rename to plotly/validators/layout/scene/annotation/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_xanchor.py b/plotly/validators/layout/scene/annotation/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_xanchor.py rename to plotly/validators/layout/scene/annotation/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_xshift.py b/plotly/validators/layout/scene/annotation/_xshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_xshift.py rename to plotly/validators/layout/scene/annotation/_xshift.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_y.py b/plotly/validators/layout/scene/annotation/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_y.py rename to plotly/validators/layout/scene/annotation/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_yanchor.py b/plotly/validators/layout/scene/annotation/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_yanchor.py rename to plotly/validators/layout/scene/annotation/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_yshift.py b/plotly/validators/layout/scene/annotation/_yshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_yshift.py rename to plotly/validators/layout/scene/annotation/_yshift.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/_z.py b/plotly/validators/layout/scene/annotation/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/_z.py rename to plotly/validators/layout/scene/annotation/_z.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/__init__.py b/plotly/validators/layout/scene/annotation/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/__init__.py rename to plotly/validators/layout/scene/annotation/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_color.py b/plotly/validators/layout/scene/annotation/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_color.py rename to plotly/validators/layout/scene/annotation/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_family.py b/plotly/validators/layout/scene/annotation/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_family.py rename to plotly/validators/layout/scene/annotation/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_lineposition.py b/plotly/validators/layout/scene/annotation/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_lineposition.py rename to plotly/validators/layout/scene/annotation/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_shadow.py b/plotly/validators/layout/scene/annotation/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_shadow.py rename to plotly/validators/layout/scene/annotation/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_size.py b/plotly/validators/layout/scene/annotation/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_size.py rename to plotly/validators/layout/scene/annotation/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_style.py b/plotly/validators/layout/scene/annotation/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_style.py rename to plotly/validators/layout/scene/annotation/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_textcase.py b/plotly/validators/layout/scene/annotation/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_textcase.py rename to plotly/validators/layout/scene/annotation/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_variant.py b/plotly/validators/layout/scene/annotation/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_variant.py rename to plotly/validators/layout/scene/annotation/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/font/_weight.py b/plotly/validators/layout/scene/annotation/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/font/_weight.py rename to plotly/validators/layout/scene/annotation/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/__init__.py b/plotly/validators/layout/scene/annotation/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/__init__.py rename to plotly/validators/layout/scene/annotation/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/_bgcolor.py b/plotly/validators/layout/scene/annotation/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/_bgcolor.py rename to plotly/validators/layout/scene/annotation/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/_bordercolor.py b/plotly/validators/layout/scene/annotation/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/_bordercolor.py rename to plotly/validators/layout/scene/annotation/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/_font.py b/plotly/validators/layout/scene/annotation/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/_font.py rename to plotly/validators/layout/scene/annotation/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/__init__.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/__init__.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_color.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_color.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_family.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_family.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_lineposition.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_lineposition.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_shadow.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_shadow.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_size.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_size.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_style.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_style.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_textcase.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_textcase.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_variant.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_variant.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_weight.py b/plotly/validators/layout/scene/annotation/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/annotation/hoverlabel/font/_weight.py rename to plotly/validators/layout/scene/annotation/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/aspectratio/__init__.py b/plotly/validators/layout/scene/aspectratio/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/aspectratio/__init__.py rename to plotly/validators/layout/scene/aspectratio/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/aspectratio/_x.py b/plotly/validators/layout/scene/aspectratio/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/aspectratio/_x.py rename to plotly/validators/layout/scene/aspectratio/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/aspectratio/_y.py b/plotly/validators/layout/scene/aspectratio/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/aspectratio/_y.py rename to plotly/validators/layout/scene/aspectratio/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/aspectratio/_z.py b/plotly/validators/layout/scene/aspectratio/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/aspectratio/_z.py rename to plotly/validators/layout/scene/aspectratio/_z.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/__init__.py b/plotly/validators/layout/scene/camera/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/__init__.py rename to plotly/validators/layout/scene/camera/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/_center.py b/plotly/validators/layout/scene/camera/_center.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/_center.py rename to plotly/validators/layout/scene/camera/_center.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/_eye.py b/plotly/validators/layout/scene/camera/_eye.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/_eye.py rename to plotly/validators/layout/scene/camera/_eye.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/_projection.py b/plotly/validators/layout/scene/camera/_projection.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/_projection.py rename to plotly/validators/layout/scene/camera/_projection.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/_up.py b/plotly/validators/layout/scene/camera/_up.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/_up.py rename to plotly/validators/layout/scene/camera/_up.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/center/__init__.py b/plotly/validators/layout/scene/camera/center/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/center/__init__.py rename to plotly/validators/layout/scene/camera/center/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/center/_x.py b/plotly/validators/layout/scene/camera/center/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/center/_x.py rename to plotly/validators/layout/scene/camera/center/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/center/_y.py b/plotly/validators/layout/scene/camera/center/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/center/_y.py rename to plotly/validators/layout/scene/camera/center/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/center/_z.py b/plotly/validators/layout/scene/camera/center/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/center/_z.py rename to plotly/validators/layout/scene/camera/center/_z.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/eye/__init__.py b/plotly/validators/layout/scene/camera/eye/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/eye/__init__.py rename to plotly/validators/layout/scene/camera/eye/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/eye/_x.py b/plotly/validators/layout/scene/camera/eye/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/eye/_x.py rename to plotly/validators/layout/scene/camera/eye/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/eye/_y.py b/plotly/validators/layout/scene/camera/eye/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/eye/_y.py rename to plotly/validators/layout/scene/camera/eye/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/eye/_z.py b/plotly/validators/layout/scene/camera/eye/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/eye/_z.py rename to plotly/validators/layout/scene/camera/eye/_z.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/projection/__init__.py b/plotly/validators/layout/scene/camera/projection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/projection/__init__.py rename to plotly/validators/layout/scene/camera/projection/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/projection/_type.py b/plotly/validators/layout/scene/camera/projection/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/projection/_type.py rename to plotly/validators/layout/scene/camera/projection/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/up/__init__.py b/plotly/validators/layout/scene/camera/up/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/up/__init__.py rename to plotly/validators/layout/scene/camera/up/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/up/_x.py b/plotly/validators/layout/scene/camera/up/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/up/_x.py rename to plotly/validators/layout/scene/camera/up/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/up/_y.py b/plotly/validators/layout/scene/camera/up/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/up/_y.py rename to plotly/validators/layout/scene/camera/up/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/camera/up/_z.py b/plotly/validators/layout/scene/camera/up/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/camera/up/_z.py rename to plotly/validators/layout/scene/camera/up/_z.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/domain/__init__.py b/plotly/validators/layout/scene/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/domain/__init__.py rename to plotly/validators/layout/scene/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/domain/_column.py b/plotly/validators/layout/scene/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/domain/_column.py rename to plotly/validators/layout/scene/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/domain/_row.py b/plotly/validators/layout/scene/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/domain/_row.py rename to plotly/validators/layout/scene/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/domain/_x.py b/plotly/validators/layout/scene/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/domain/_x.py rename to plotly/validators/layout/scene/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/domain/_y.py b/plotly/validators/layout/scene/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/domain/_y.py rename to plotly/validators/layout/scene/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/__init__.py b/plotly/validators/layout/scene/xaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/__init__.py rename to plotly/validators/layout/scene/xaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_autorange.py b/plotly/validators/layout/scene/xaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_autorange.py rename to plotly/validators/layout/scene/xaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_autorangeoptions.py b/plotly/validators/layout/scene/xaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_autorangeoptions.py rename to plotly/validators/layout/scene/xaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_autotypenumbers.py b/plotly/validators/layout/scene/xaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_autotypenumbers.py rename to plotly/validators/layout/scene/xaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_backgroundcolor.py b/plotly/validators/layout/scene/xaxis/_backgroundcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_backgroundcolor.py rename to plotly/validators/layout/scene/xaxis/_backgroundcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_calendar.py b/plotly/validators/layout/scene/xaxis/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_calendar.py rename to plotly/validators/layout/scene/xaxis/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_categoryarray.py b/plotly/validators/layout/scene/xaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_categoryarray.py rename to plotly/validators/layout/scene/xaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_categoryarraysrc.py b/plotly/validators/layout/scene/xaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_categoryarraysrc.py rename to plotly/validators/layout/scene/xaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_categoryorder.py b/plotly/validators/layout/scene/xaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_categoryorder.py rename to plotly/validators/layout/scene/xaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_color.py b/plotly/validators/layout/scene/xaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_color.py rename to plotly/validators/layout/scene/xaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_dtick.py b/plotly/validators/layout/scene/xaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_dtick.py rename to plotly/validators/layout/scene/xaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_exponentformat.py b/plotly/validators/layout/scene/xaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_exponentformat.py rename to plotly/validators/layout/scene/xaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_gridcolor.py b/plotly/validators/layout/scene/xaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_gridcolor.py rename to plotly/validators/layout/scene/xaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_gridwidth.py b/plotly/validators/layout/scene/xaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_gridwidth.py rename to plotly/validators/layout/scene/xaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_hoverformat.py b/plotly/validators/layout/scene/xaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_hoverformat.py rename to plotly/validators/layout/scene/xaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_labelalias.py b/plotly/validators/layout/scene/xaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_labelalias.py rename to plotly/validators/layout/scene/xaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_linecolor.py b/plotly/validators/layout/scene/xaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_linecolor.py rename to plotly/validators/layout/scene/xaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_linewidth.py b/plotly/validators/layout/scene/xaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_linewidth.py rename to plotly/validators/layout/scene/xaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_maxallowed.py b/plotly/validators/layout/scene/xaxis/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_maxallowed.py rename to plotly/validators/layout/scene/xaxis/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_minallowed.py b/plotly/validators/layout/scene/xaxis/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_minallowed.py rename to plotly/validators/layout/scene/xaxis/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_minexponent.py b/plotly/validators/layout/scene/xaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_minexponent.py rename to plotly/validators/layout/scene/xaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_mirror.py b/plotly/validators/layout/scene/xaxis/_mirror.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_mirror.py rename to plotly/validators/layout/scene/xaxis/_mirror.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_nticks.py b/plotly/validators/layout/scene/xaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_nticks.py rename to plotly/validators/layout/scene/xaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_range.py b/plotly/validators/layout/scene/xaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_range.py rename to plotly/validators/layout/scene/xaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_rangemode.py b/plotly/validators/layout/scene/xaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_rangemode.py rename to plotly/validators/layout/scene/xaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_separatethousands.py b/plotly/validators/layout/scene/xaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_separatethousands.py rename to plotly/validators/layout/scene/xaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showaxeslabels.py b/plotly/validators/layout/scene/xaxis/_showaxeslabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showaxeslabels.py rename to plotly/validators/layout/scene/xaxis/_showaxeslabels.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showbackground.py b/plotly/validators/layout/scene/xaxis/_showbackground.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showbackground.py rename to plotly/validators/layout/scene/xaxis/_showbackground.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showexponent.py b/plotly/validators/layout/scene/xaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showexponent.py rename to plotly/validators/layout/scene/xaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showgrid.py b/plotly/validators/layout/scene/xaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showgrid.py rename to plotly/validators/layout/scene/xaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showline.py b/plotly/validators/layout/scene/xaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showline.py rename to plotly/validators/layout/scene/xaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showspikes.py b/plotly/validators/layout/scene/xaxis/_showspikes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showspikes.py rename to plotly/validators/layout/scene/xaxis/_showspikes.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showticklabels.py b/plotly/validators/layout/scene/xaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showticklabels.py rename to plotly/validators/layout/scene/xaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showtickprefix.py b/plotly/validators/layout/scene/xaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showtickprefix.py rename to plotly/validators/layout/scene/xaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_showticksuffix.py b/plotly/validators/layout/scene/xaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_showticksuffix.py rename to plotly/validators/layout/scene/xaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_spikecolor.py b/plotly/validators/layout/scene/xaxis/_spikecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_spikecolor.py rename to plotly/validators/layout/scene/xaxis/_spikecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_spikesides.py b/plotly/validators/layout/scene/xaxis/_spikesides.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_spikesides.py rename to plotly/validators/layout/scene/xaxis/_spikesides.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_spikethickness.py b/plotly/validators/layout/scene/xaxis/_spikethickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_spikethickness.py rename to plotly/validators/layout/scene/xaxis/_spikethickness.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tick0.py b/plotly/validators/layout/scene/xaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tick0.py rename to plotly/validators/layout/scene/xaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickangle.py b/plotly/validators/layout/scene/xaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickangle.py rename to plotly/validators/layout/scene/xaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickcolor.py b/plotly/validators/layout/scene/xaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickcolor.py rename to plotly/validators/layout/scene/xaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickfont.py b/plotly/validators/layout/scene/xaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickfont.py rename to plotly/validators/layout/scene/xaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickformat.py b/plotly/validators/layout/scene/xaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickformat.py rename to plotly/validators/layout/scene/xaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py b/plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/scene/xaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickformatstops.py b/plotly/validators/layout/scene/xaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickformatstops.py rename to plotly/validators/layout/scene/xaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticklen.py b/plotly/validators/layout/scene/xaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticklen.py rename to plotly/validators/layout/scene/xaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickmode.py b/plotly/validators/layout/scene/xaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickmode.py rename to plotly/validators/layout/scene/xaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickprefix.py b/plotly/validators/layout/scene/xaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickprefix.py rename to plotly/validators/layout/scene/xaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticks.py b/plotly/validators/layout/scene/xaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticks.py rename to plotly/validators/layout/scene/xaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticksuffix.py b/plotly/validators/layout/scene/xaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticksuffix.py rename to plotly/validators/layout/scene/xaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticktext.py b/plotly/validators/layout/scene/xaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticktext.py rename to plotly/validators/layout/scene/xaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticktextsrc.py b/plotly/validators/layout/scene/xaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_ticktextsrc.py rename to plotly/validators/layout/scene/xaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickvals.py b/plotly/validators/layout/scene/xaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickvals.py rename to plotly/validators/layout/scene/xaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickvalssrc.py b/plotly/validators/layout/scene/xaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickvalssrc.py rename to plotly/validators/layout/scene/xaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickwidth.py b/plotly/validators/layout/scene/xaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_tickwidth.py rename to plotly/validators/layout/scene/xaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_title.py b/plotly/validators/layout/scene/xaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_title.py rename to plotly/validators/layout/scene/xaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_type.py b/plotly/validators/layout/scene/xaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_type.py rename to plotly/validators/layout/scene/xaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_visible.py b/plotly/validators/layout/scene/xaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_visible.py rename to plotly/validators/layout/scene/xaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_zeroline.py b/plotly/validators/layout/scene/xaxis/_zeroline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_zeroline.py rename to plotly/validators/layout/scene/xaxis/_zeroline.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_zerolinecolor.py b/plotly/validators/layout/scene/xaxis/_zerolinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_zerolinecolor.py rename to plotly/validators/layout/scene/xaxis/_zerolinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/_zerolinewidth.py b/plotly/validators/layout/scene/xaxis/_zerolinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/_zerolinewidth.py rename to plotly/validators/layout/scene/xaxis/_zerolinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/__init__.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/__init__.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmax.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmax.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmax.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmin.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmin.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/_clipmin.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_include.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/_include.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_include.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/_include.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_includesrc.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/_includesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_includesrc.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/_includesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_maxallowed.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_maxallowed.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_minallowed.py b/plotly/validators/layout/scene/xaxis/autorangeoptions/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/autorangeoptions/_minallowed.py rename to plotly/validators/layout/scene/xaxis/autorangeoptions/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/__init__.py b/plotly/validators/layout/scene/xaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/__init__.py rename to plotly/validators/layout/scene/xaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_color.py b/plotly/validators/layout/scene/xaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_color.py rename to plotly/validators/layout/scene/xaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_family.py b/plotly/validators/layout/scene/xaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_family.py rename to plotly/validators/layout/scene/xaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_lineposition.py b/plotly/validators/layout/scene/xaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_lineposition.py rename to plotly/validators/layout/scene/xaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_shadow.py b/plotly/validators/layout/scene/xaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_shadow.py rename to plotly/validators/layout/scene/xaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_size.py b/plotly/validators/layout/scene/xaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_size.py rename to plotly/validators/layout/scene/xaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_style.py b/plotly/validators/layout/scene/xaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_style.py rename to plotly/validators/layout/scene/xaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_textcase.py b/plotly/validators/layout/scene/xaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_textcase.py rename to plotly/validators/layout/scene/xaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_variant.py b/plotly/validators/layout/scene/xaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_variant.py rename to plotly/validators/layout/scene/xaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_weight.py b/plotly/validators/layout/scene/xaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickfont/_weight.py rename to plotly/validators/layout/scene/xaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/__init__.py b/plotly/validators/layout/scene/xaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/__init__.py rename to plotly/validators/layout/scene/xaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/scene/xaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/scene/xaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_enabled.py b/plotly/validators/layout/scene/xaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/scene/xaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_name.py b/plotly/validators/layout/scene/xaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_name.py rename to plotly/validators/layout/scene/xaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/scene/xaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/scene/xaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_value.py b/plotly/validators/layout/scene/xaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/tickformatstop/_value.py rename to plotly/validators/layout/scene/xaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/__init__.py b/plotly/validators/layout/scene/xaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/__init__.py rename to plotly/validators/layout/scene/xaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/_font.py b/plotly/validators/layout/scene/xaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/_font.py rename to plotly/validators/layout/scene/xaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/_text.py b/plotly/validators/layout/scene/xaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/_text.py rename to plotly/validators/layout/scene/xaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/__init__.py b/plotly/validators/layout/scene/xaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/__init__.py rename to plotly/validators/layout/scene/xaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_color.py b/plotly/validators/layout/scene/xaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_color.py rename to plotly/validators/layout/scene/xaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_family.py b/plotly/validators/layout/scene/xaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_family.py rename to plotly/validators/layout/scene/xaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_lineposition.py b/plotly/validators/layout/scene/xaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_lineposition.py rename to plotly/validators/layout/scene/xaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_shadow.py b/plotly/validators/layout/scene/xaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_shadow.py rename to plotly/validators/layout/scene/xaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_size.py b/plotly/validators/layout/scene/xaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_size.py rename to plotly/validators/layout/scene/xaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_style.py b/plotly/validators/layout/scene/xaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_style.py rename to plotly/validators/layout/scene/xaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_textcase.py b/plotly/validators/layout/scene/xaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_textcase.py rename to plotly/validators/layout/scene/xaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_variant.py b/plotly/validators/layout/scene/xaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_variant.py rename to plotly/validators/layout/scene/xaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_weight.py b/plotly/validators/layout/scene/xaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/xaxis/title/font/_weight.py rename to plotly/validators/layout/scene/xaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/__init__.py b/plotly/validators/layout/scene/yaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/__init__.py rename to plotly/validators/layout/scene/yaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_autorange.py b/plotly/validators/layout/scene/yaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_autorange.py rename to plotly/validators/layout/scene/yaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_autorangeoptions.py b/plotly/validators/layout/scene/yaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_autorangeoptions.py rename to plotly/validators/layout/scene/yaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_autotypenumbers.py b/plotly/validators/layout/scene/yaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_autotypenumbers.py rename to plotly/validators/layout/scene/yaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_backgroundcolor.py b/plotly/validators/layout/scene/yaxis/_backgroundcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_backgroundcolor.py rename to plotly/validators/layout/scene/yaxis/_backgroundcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_calendar.py b/plotly/validators/layout/scene/yaxis/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_calendar.py rename to plotly/validators/layout/scene/yaxis/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_categoryarray.py b/plotly/validators/layout/scene/yaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_categoryarray.py rename to plotly/validators/layout/scene/yaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_categoryarraysrc.py b/plotly/validators/layout/scene/yaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_categoryarraysrc.py rename to plotly/validators/layout/scene/yaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_categoryorder.py b/plotly/validators/layout/scene/yaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_categoryorder.py rename to plotly/validators/layout/scene/yaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_color.py b/plotly/validators/layout/scene/yaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_color.py rename to plotly/validators/layout/scene/yaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_dtick.py b/plotly/validators/layout/scene/yaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_dtick.py rename to plotly/validators/layout/scene/yaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_exponentformat.py b/plotly/validators/layout/scene/yaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_exponentformat.py rename to plotly/validators/layout/scene/yaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_gridcolor.py b/plotly/validators/layout/scene/yaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_gridcolor.py rename to plotly/validators/layout/scene/yaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_gridwidth.py b/plotly/validators/layout/scene/yaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_gridwidth.py rename to plotly/validators/layout/scene/yaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_hoverformat.py b/plotly/validators/layout/scene/yaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_hoverformat.py rename to plotly/validators/layout/scene/yaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_labelalias.py b/plotly/validators/layout/scene/yaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_labelalias.py rename to plotly/validators/layout/scene/yaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_linecolor.py b/plotly/validators/layout/scene/yaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_linecolor.py rename to plotly/validators/layout/scene/yaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_linewidth.py b/plotly/validators/layout/scene/yaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_linewidth.py rename to plotly/validators/layout/scene/yaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_maxallowed.py b/plotly/validators/layout/scene/yaxis/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_maxallowed.py rename to plotly/validators/layout/scene/yaxis/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_minallowed.py b/plotly/validators/layout/scene/yaxis/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_minallowed.py rename to plotly/validators/layout/scene/yaxis/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_minexponent.py b/plotly/validators/layout/scene/yaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_minexponent.py rename to plotly/validators/layout/scene/yaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_mirror.py b/plotly/validators/layout/scene/yaxis/_mirror.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_mirror.py rename to plotly/validators/layout/scene/yaxis/_mirror.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_nticks.py b/plotly/validators/layout/scene/yaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_nticks.py rename to plotly/validators/layout/scene/yaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_range.py b/plotly/validators/layout/scene/yaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_range.py rename to plotly/validators/layout/scene/yaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_rangemode.py b/plotly/validators/layout/scene/yaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_rangemode.py rename to plotly/validators/layout/scene/yaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_separatethousands.py b/plotly/validators/layout/scene/yaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_separatethousands.py rename to plotly/validators/layout/scene/yaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showaxeslabels.py b/plotly/validators/layout/scene/yaxis/_showaxeslabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showaxeslabels.py rename to plotly/validators/layout/scene/yaxis/_showaxeslabels.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showbackground.py b/plotly/validators/layout/scene/yaxis/_showbackground.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showbackground.py rename to plotly/validators/layout/scene/yaxis/_showbackground.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showexponent.py b/plotly/validators/layout/scene/yaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showexponent.py rename to plotly/validators/layout/scene/yaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showgrid.py b/plotly/validators/layout/scene/yaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showgrid.py rename to plotly/validators/layout/scene/yaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showline.py b/plotly/validators/layout/scene/yaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showline.py rename to plotly/validators/layout/scene/yaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showspikes.py b/plotly/validators/layout/scene/yaxis/_showspikes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showspikes.py rename to plotly/validators/layout/scene/yaxis/_showspikes.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showticklabels.py b/plotly/validators/layout/scene/yaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showticklabels.py rename to plotly/validators/layout/scene/yaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showtickprefix.py b/plotly/validators/layout/scene/yaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showtickprefix.py rename to plotly/validators/layout/scene/yaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_showticksuffix.py b/plotly/validators/layout/scene/yaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_showticksuffix.py rename to plotly/validators/layout/scene/yaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_spikecolor.py b/plotly/validators/layout/scene/yaxis/_spikecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_spikecolor.py rename to plotly/validators/layout/scene/yaxis/_spikecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_spikesides.py b/plotly/validators/layout/scene/yaxis/_spikesides.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_spikesides.py rename to plotly/validators/layout/scene/yaxis/_spikesides.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_spikethickness.py b/plotly/validators/layout/scene/yaxis/_spikethickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_spikethickness.py rename to plotly/validators/layout/scene/yaxis/_spikethickness.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tick0.py b/plotly/validators/layout/scene/yaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tick0.py rename to plotly/validators/layout/scene/yaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickangle.py b/plotly/validators/layout/scene/yaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickangle.py rename to plotly/validators/layout/scene/yaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickcolor.py b/plotly/validators/layout/scene/yaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickcolor.py rename to plotly/validators/layout/scene/yaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickfont.py b/plotly/validators/layout/scene/yaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickfont.py rename to plotly/validators/layout/scene/yaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickformat.py b/plotly/validators/layout/scene/yaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickformat.py rename to plotly/validators/layout/scene/yaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py b/plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/scene/yaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickformatstops.py b/plotly/validators/layout/scene/yaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickformatstops.py rename to plotly/validators/layout/scene/yaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticklen.py b/plotly/validators/layout/scene/yaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticklen.py rename to plotly/validators/layout/scene/yaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickmode.py b/plotly/validators/layout/scene/yaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickmode.py rename to plotly/validators/layout/scene/yaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickprefix.py b/plotly/validators/layout/scene/yaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickprefix.py rename to plotly/validators/layout/scene/yaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticks.py b/plotly/validators/layout/scene/yaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticks.py rename to plotly/validators/layout/scene/yaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticksuffix.py b/plotly/validators/layout/scene/yaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticksuffix.py rename to plotly/validators/layout/scene/yaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticktext.py b/plotly/validators/layout/scene/yaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticktext.py rename to plotly/validators/layout/scene/yaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticktextsrc.py b/plotly/validators/layout/scene/yaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_ticktextsrc.py rename to plotly/validators/layout/scene/yaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickvals.py b/plotly/validators/layout/scene/yaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickvals.py rename to plotly/validators/layout/scene/yaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickvalssrc.py b/plotly/validators/layout/scene/yaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickvalssrc.py rename to plotly/validators/layout/scene/yaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickwidth.py b/plotly/validators/layout/scene/yaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_tickwidth.py rename to plotly/validators/layout/scene/yaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_title.py b/plotly/validators/layout/scene/yaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_title.py rename to plotly/validators/layout/scene/yaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_type.py b/plotly/validators/layout/scene/yaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_type.py rename to plotly/validators/layout/scene/yaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_visible.py b/plotly/validators/layout/scene/yaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_visible.py rename to plotly/validators/layout/scene/yaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_zeroline.py b/plotly/validators/layout/scene/yaxis/_zeroline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_zeroline.py rename to plotly/validators/layout/scene/yaxis/_zeroline.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_zerolinecolor.py b/plotly/validators/layout/scene/yaxis/_zerolinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_zerolinecolor.py rename to plotly/validators/layout/scene/yaxis/_zerolinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/_zerolinewidth.py b/plotly/validators/layout/scene/yaxis/_zerolinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/_zerolinewidth.py rename to plotly/validators/layout/scene/yaxis/_zerolinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/__init__.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/__init__.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmax.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmax.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmax.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmin.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmin.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/_clipmin.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_include.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/_include.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_include.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/_include.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_includesrc.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/_includesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_includesrc.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/_includesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_maxallowed.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_maxallowed.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_minallowed.py b/plotly/validators/layout/scene/yaxis/autorangeoptions/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/autorangeoptions/_minallowed.py rename to plotly/validators/layout/scene/yaxis/autorangeoptions/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/__init__.py b/plotly/validators/layout/scene/yaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/__init__.py rename to plotly/validators/layout/scene/yaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_color.py b/plotly/validators/layout/scene/yaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_color.py rename to plotly/validators/layout/scene/yaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_family.py b/plotly/validators/layout/scene/yaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_family.py rename to plotly/validators/layout/scene/yaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_lineposition.py b/plotly/validators/layout/scene/yaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_lineposition.py rename to plotly/validators/layout/scene/yaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_shadow.py b/plotly/validators/layout/scene/yaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_shadow.py rename to plotly/validators/layout/scene/yaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_size.py b/plotly/validators/layout/scene/yaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_size.py rename to plotly/validators/layout/scene/yaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_style.py b/plotly/validators/layout/scene/yaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_style.py rename to plotly/validators/layout/scene/yaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_textcase.py b/plotly/validators/layout/scene/yaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_textcase.py rename to plotly/validators/layout/scene/yaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_variant.py b/plotly/validators/layout/scene/yaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_variant.py rename to plotly/validators/layout/scene/yaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_weight.py b/plotly/validators/layout/scene/yaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickfont/_weight.py rename to plotly/validators/layout/scene/yaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/__init__.py b/plotly/validators/layout/scene/yaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/__init__.py rename to plotly/validators/layout/scene/yaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/scene/yaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/scene/yaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_enabled.py b/plotly/validators/layout/scene/yaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/scene/yaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_name.py b/plotly/validators/layout/scene/yaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_name.py rename to plotly/validators/layout/scene/yaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/scene/yaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/scene/yaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_value.py b/plotly/validators/layout/scene/yaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/tickformatstop/_value.py rename to plotly/validators/layout/scene/yaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/__init__.py b/plotly/validators/layout/scene/yaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/__init__.py rename to plotly/validators/layout/scene/yaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/_font.py b/plotly/validators/layout/scene/yaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/_font.py rename to plotly/validators/layout/scene/yaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/_text.py b/plotly/validators/layout/scene/yaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/_text.py rename to plotly/validators/layout/scene/yaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/__init__.py b/plotly/validators/layout/scene/yaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/__init__.py rename to plotly/validators/layout/scene/yaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_color.py b/plotly/validators/layout/scene/yaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_color.py rename to plotly/validators/layout/scene/yaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_family.py b/plotly/validators/layout/scene/yaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_family.py rename to plotly/validators/layout/scene/yaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_lineposition.py b/plotly/validators/layout/scene/yaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_lineposition.py rename to plotly/validators/layout/scene/yaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_shadow.py b/plotly/validators/layout/scene/yaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_shadow.py rename to plotly/validators/layout/scene/yaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_size.py b/plotly/validators/layout/scene/yaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_size.py rename to plotly/validators/layout/scene/yaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_style.py b/plotly/validators/layout/scene/yaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_style.py rename to plotly/validators/layout/scene/yaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_textcase.py b/plotly/validators/layout/scene/yaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_textcase.py rename to plotly/validators/layout/scene/yaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_variant.py b/plotly/validators/layout/scene/yaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_variant.py rename to plotly/validators/layout/scene/yaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_weight.py b/plotly/validators/layout/scene/yaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/yaxis/title/font/_weight.py rename to plotly/validators/layout/scene/yaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/__init__.py b/plotly/validators/layout/scene/zaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/__init__.py rename to plotly/validators/layout/scene/zaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_autorange.py b/plotly/validators/layout/scene/zaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_autorange.py rename to plotly/validators/layout/scene/zaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_autorangeoptions.py b/plotly/validators/layout/scene/zaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_autorangeoptions.py rename to plotly/validators/layout/scene/zaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_autotypenumbers.py b/plotly/validators/layout/scene/zaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_autotypenumbers.py rename to plotly/validators/layout/scene/zaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_backgroundcolor.py b/plotly/validators/layout/scene/zaxis/_backgroundcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_backgroundcolor.py rename to plotly/validators/layout/scene/zaxis/_backgroundcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_calendar.py b/plotly/validators/layout/scene/zaxis/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_calendar.py rename to plotly/validators/layout/scene/zaxis/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_categoryarray.py b/plotly/validators/layout/scene/zaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_categoryarray.py rename to plotly/validators/layout/scene/zaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_categoryarraysrc.py b/plotly/validators/layout/scene/zaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_categoryarraysrc.py rename to plotly/validators/layout/scene/zaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_categoryorder.py b/plotly/validators/layout/scene/zaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_categoryorder.py rename to plotly/validators/layout/scene/zaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_color.py b/plotly/validators/layout/scene/zaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_color.py rename to plotly/validators/layout/scene/zaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_dtick.py b/plotly/validators/layout/scene/zaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_dtick.py rename to plotly/validators/layout/scene/zaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_exponentformat.py b/plotly/validators/layout/scene/zaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_exponentformat.py rename to plotly/validators/layout/scene/zaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_gridcolor.py b/plotly/validators/layout/scene/zaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_gridcolor.py rename to plotly/validators/layout/scene/zaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_gridwidth.py b/plotly/validators/layout/scene/zaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_gridwidth.py rename to plotly/validators/layout/scene/zaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_hoverformat.py b/plotly/validators/layout/scene/zaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_hoverformat.py rename to plotly/validators/layout/scene/zaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_labelalias.py b/plotly/validators/layout/scene/zaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_labelalias.py rename to plotly/validators/layout/scene/zaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_linecolor.py b/plotly/validators/layout/scene/zaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_linecolor.py rename to plotly/validators/layout/scene/zaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_linewidth.py b/plotly/validators/layout/scene/zaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_linewidth.py rename to plotly/validators/layout/scene/zaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_maxallowed.py b/plotly/validators/layout/scene/zaxis/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_maxallowed.py rename to plotly/validators/layout/scene/zaxis/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_minallowed.py b/plotly/validators/layout/scene/zaxis/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_minallowed.py rename to plotly/validators/layout/scene/zaxis/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_minexponent.py b/plotly/validators/layout/scene/zaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_minexponent.py rename to plotly/validators/layout/scene/zaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_mirror.py b/plotly/validators/layout/scene/zaxis/_mirror.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_mirror.py rename to plotly/validators/layout/scene/zaxis/_mirror.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_nticks.py b/plotly/validators/layout/scene/zaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_nticks.py rename to plotly/validators/layout/scene/zaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_range.py b/plotly/validators/layout/scene/zaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_range.py rename to plotly/validators/layout/scene/zaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_rangemode.py b/plotly/validators/layout/scene/zaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_rangemode.py rename to plotly/validators/layout/scene/zaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_separatethousands.py b/plotly/validators/layout/scene/zaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_separatethousands.py rename to plotly/validators/layout/scene/zaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showaxeslabels.py b/plotly/validators/layout/scene/zaxis/_showaxeslabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showaxeslabels.py rename to plotly/validators/layout/scene/zaxis/_showaxeslabels.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showbackground.py b/plotly/validators/layout/scene/zaxis/_showbackground.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showbackground.py rename to plotly/validators/layout/scene/zaxis/_showbackground.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showexponent.py b/plotly/validators/layout/scene/zaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showexponent.py rename to plotly/validators/layout/scene/zaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showgrid.py b/plotly/validators/layout/scene/zaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showgrid.py rename to plotly/validators/layout/scene/zaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showline.py b/plotly/validators/layout/scene/zaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showline.py rename to plotly/validators/layout/scene/zaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showspikes.py b/plotly/validators/layout/scene/zaxis/_showspikes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showspikes.py rename to plotly/validators/layout/scene/zaxis/_showspikes.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showticklabels.py b/plotly/validators/layout/scene/zaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showticklabels.py rename to plotly/validators/layout/scene/zaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showtickprefix.py b/plotly/validators/layout/scene/zaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showtickprefix.py rename to plotly/validators/layout/scene/zaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_showticksuffix.py b/plotly/validators/layout/scene/zaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_showticksuffix.py rename to plotly/validators/layout/scene/zaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_spikecolor.py b/plotly/validators/layout/scene/zaxis/_spikecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_spikecolor.py rename to plotly/validators/layout/scene/zaxis/_spikecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_spikesides.py b/plotly/validators/layout/scene/zaxis/_spikesides.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_spikesides.py rename to plotly/validators/layout/scene/zaxis/_spikesides.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_spikethickness.py b/plotly/validators/layout/scene/zaxis/_spikethickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_spikethickness.py rename to plotly/validators/layout/scene/zaxis/_spikethickness.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tick0.py b/plotly/validators/layout/scene/zaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tick0.py rename to plotly/validators/layout/scene/zaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickangle.py b/plotly/validators/layout/scene/zaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickangle.py rename to plotly/validators/layout/scene/zaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickcolor.py b/plotly/validators/layout/scene/zaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickcolor.py rename to plotly/validators/layout/scene/zaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickfont.py b/plotly/validators/layout/scene/zaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickfont.py rename to plotly/validators/layout/scene/zaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickformat.py b/plotly/validators/layout/scene/zaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickformat.py rename to plotly/validators/layout/scene/zaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py b/plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/scene/zaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickformatstops.py b/plotly/validators/layout/scene/zaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickformatstops.py rename to plotly/validators/layout/scene/zaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticklen.py b/plotly/validators/layout/scene/zaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticklen.py rename to plotly/validators/layout/scene/zaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickmode.py b/plotly/validators/layout/scene/zaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickmode.py rename to plotly/validators/layout/scene/zaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickprefix.py b/plotly/validators/layout/scene/zaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickprefix.py rename to plotly/validators/layout/scene/zaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticks.py b/plotly/validators/layout/scene/zaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticks.py rename to plotly/validators/layout/scene/zaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticksuffix.py b/plotly/validators/layout/scene/zaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticksuffix.py rename to plotly/validators/layout/scene/zaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticktext.py b/plotly/validators/layout/scene/zaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticktext.py rename to plotly/validators/layout/scene/zaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticktextsrc.py b/plotly/validators/layout/scene/zaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_ticktextsrc.py rename to plotly/validators/layout/scene/zaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickvals.py b/plotly/validators/layout/scene/zaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickvals.py rename to plotly/validators/layout/scene/zaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickvalssrc.py b/plotly/validators/layout/scene/zaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickvalssrc.py rename to plotly/validators/layout/scene/zaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickwidth.py b/plotly/validators/layout/scene/zaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_tickwidth.py rename to plotly/validators/layout/scene/zaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_title.py b/plotly/validators/layout/scene/zaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_title.py rename to plotly/validators/layout/scene/zaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_type.py b/plotly/validators/layout/scene/zaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_type.py rename to plotly/validators/layout/scene/zaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_visible.py b/plotly/validators/layout/scene/zaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_visible.py rename to plotly/validators/layout/scene/zaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_zeroline.py b/plotly/validators/layout/scene/zaxis/_zeroline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_zeroline.py rename to plotly/validators/layout/scene/zaxis/_zeroline.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_zerolinecolor.py b/plotly/validators/layout/scene/zaxis/_zerolinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_zerolinecolor.py rename to plotly/validators/layout/scene/zaxis/_zerolinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/_zerolinewidth.py b/plotly/validators/layout/scene/zaxis/_zerolinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/_zerolinewidth.py rename to plotly/validators/layout/scene/zaxis/_zerolinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/__init__.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/__init__.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmax.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmax.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmax.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmin.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmin.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/_clipmin.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_include.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/_include.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_include.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/_include.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_includesrc.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/_includesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_includesrc.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/_includesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_maxallowed.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_maxallowed.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_minallowed.py b/plotly/validators/layout/scene/zaxis/autorangeoptions/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/autorangeoptions/_minallowed.py rename to plotly/validators/layout/scene/zaxis/autorangeoptions/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/__init__.py b/plotly/validators/layout/scene/zaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/__init__.py rename to plotly/validators/layout/scene/zaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_color.py b/plotly/validators/layout/scene/zaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_color.py rename to plotly/validators/layout/scene/zaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_family.py b/plotly/validators/layout/scene/zaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_family.py rename to plotly/validators/layout/scene/zaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_lineposition.py b/plotly/validators/layout/scene/zaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_lineposition.py rename to plotly/validators/layout/scene/zaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_shadow.py b/plotly/validators/layout/scene/zaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_shadow.py rename to plotly/validators/layout/scene/zaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_size.py b/plotly/validators/layout/scene/zaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_size.py rename to plotly/validators/layout/scene/zaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_style.py b/plotly/validators/layout/scene/zaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_style.py rename to plotly/validators/layout/scene/zaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_textcase.py b/plotly/validators/layout/scene/zaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_textcase.py rename to plotly/validators/layout/scene/zaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_variant.py b/plotly/validators/layout/scene/zaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_variant.py rename to plotly/validators/layout/scene/zaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_weight.py b/plotly/validators/layout/scene/zaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickfont/_weight.py rename to plotly/validators/layout/scene/zaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/__init__.py b/plotly/validators/layout/scene/zaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/__init__.py rename to plotly/validators/layout/scene/zaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/scene/zaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/scene/zaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_enabled.py b/plotly/validators/layout/scene/zaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/scene/zaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_name.py b/plotly/validators/layout/scene/zaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_name.py rename to plotly/validators/layout/scene/zaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/scene/zaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/scene/zaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_value.py b/plotly/validators/layout/scene/zaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/tickformatstop/_value.py rename to plotly/validators/layout/scene/zaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/__init__.py b/plotly/validators/layout/scene/zaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/__init__.py rename to plotly/validators/layout/scene/zaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/_font.py b/plotly/validators/layout/scene/zaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/_font.py rename to plotly/validators/layout/scene/zaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/_text.py b/plotly/validators/layout/scene/zaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/_text.py rename to plotly/validators/layout/scene/zaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/__init__.py b/plotly/validators/layout/scene/zaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/__init__.py rename to plotly/validators/layout/scene/zaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_color.py b/plotly/validators/layout/scene/zaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_color.py rename to plotly/validators/layout/scene/zaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_family.py b/plotly/validators/layout/scene/zaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_family.py rename to plotly/validators/layout/scene/zaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_lineposition.py b/plotly/validators/layout/scene/zaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_lineposition.py rename to plotly/validators/layout/scene/zaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_shadow.py b/plotly/validators/layout/scene/zaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_shadow.py rename to plotly/validators/layout/scene/zaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_size.py b/plotly/validators/layout/scene/zaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_size.py rename to plotly/validators/layout/scene/zaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_style.py b/plotly/validators/layout/scene/zaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_style.py rename to plotly/validators/layout/scene/zaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_textcase.py b/plotly/validators/layout/scene/zaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_textcase.py rename to plotly/validators/layout/scene/zaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_variant.py b/plotly/validators/layout/scene/zaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_variant.py rename to plotly/validators/layout/scene/zaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_weight.py b/plotly/validators/layout/scene/zaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/scene/zaxis/title/font/_weight.py rename to plotly/validators/layout/scene/zaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/__init__.py b/plotly/validators/layout/selection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/__init__.py rename to plotly/validators/layout/selection/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_line.py b/plotly/validators/layout/selection/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_line.py rename to plotly/validators/layout/selection/_line.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_name.py b/plotly/validators/layout/selection/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_name.py rename to plotly/validators/layout/selection/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_opacity.py b/plotly/validators/layout/selection/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_opacity.py rename to plotly/validators/layout/selection/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_path.py b/plotly/validators/layout/selection/_path.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_path.py rename to plotly/validators/layout/selection/_path.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_templateitemname.py b/plotly/validators/layout/selection/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_templateitemname.py rename to plotly/validators/layout/selection/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_type.py b/plotly/validators/layout/selection/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_type.py rename to plotly/validators/layout/selection/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_x0.py b/plotly/validators/layout/selection/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_x0.py rename to plotly/validators/layout/selection/_x0.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_x1.py b/plotly/validators/layout/selection/_x1.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_x1.py rename to plotly/validators/layout/selection/_x1.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_xref.py b/plotly/validators/layout/selection/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_xref.py rename to plotly/validators/layout/selection/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_y0.py b/plotly/validators/layout/selection/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_y0.py rename to plotly/validators/layout/selection/_y0.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_y1.py b/plotly/validators/layout/selection/_y1.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_y1.py rename to plotly/validators/layout/selection/_y1.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/_yref.py b/plotly/validators/layout/selection/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/_yref.py rename to plotly/validators/layout/selection/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/line/__init__.py b/plotly/validators/layout/selection/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/line/__init__.py rename to plotly/validators/layout/selection/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/line/_color.py b/plotly/validators/layout/selection/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/line/_color.py rename to plotly/validators/layout/selection/line/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/line/_dash.py b/plotly/validators/layout/selection/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/line/_dash.py rename to plotly/validators/layout/selection/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/layout/selection/line/_width.py b/plotly/validators/layout/selection/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/selection/line/_width.py rename to plotly/validators/layout/selection/line/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/__init__.py b/plotly/validators/layout/shape/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/__init__.py rename to plotly/validators/layout/shape/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_editable.py b/plotly/validators/layout/shape/_editable.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_editable.py rename to plotly/validators/layout/shape/_editable.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_fillcolor.py b/plotly/validators/layout/shape/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_fillcolor.py rename to plotly/validators/layout/shape/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_fillrule.py b/plotly/validators/layout/shape/_fillrule.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_fillrule.py rename to plotly/validators/layout/shape/_fillrule.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_label.py b/plotly/validators/layout/shape/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_label.py rename to plotly/validators/layout/shape/_label.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_layer.py b/plotly/validators/layout/shape/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_layer.py rename to plotly/validators/layout/shape/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_legend.py b/plotly/validators/layout/shape/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_legend.py rename to plotly/validators/layout/shape/_legend.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_legendgroup.py b/plotly/validators/layout/shape/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_legendgroup.py rename to plotly/validators/layout/shape/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_legendgrouptitle.py b/plotly/validators/layout/shape/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_legendgrouptitle.py rename to plotly/validators/layout/shape/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_legendrank.py b/plotly/validators/layout/shape/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_legendrank.py rename to plotly/validators/layout/shape/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_legendwidth.py b/plotly/validators/layout/shape/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_legendwidth.py rename to plotly/validators/layout/shape/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_line.py b/plotly/validators/layout/shape/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_line.py rename to plotly/validators/layout/shape/_line.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_name.py b/plotly/validators/layout/shape/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_name.py rename to plotly/validators/layout/shape/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_opacity.py b/plotly/validators/layout/shape/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_opacity.py rename to plotly/validators/layout/shape/_opacity.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_path.py b/plotly/validators/layout/shape/_path.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_path.py rename to plotly/validators/layout/shape/_path.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_showlegend.py b/plotly/validators/layout/shape/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_showlegend.py rename to plotly/validators/layout/shape/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_templateitemname.py b/plotly/validators/layout/shape/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_templateitemname.py rename to plotly/validators/layout/shape/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_type.py b/plotly/validators/layout/shape/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_type.py rename to plotly/validators/layout/shape/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_visible.py b/plotly/validators/layout/shape/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_visible.py rename to plotly/validators/layout/shape/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_x0.py b/plotly/validators/layout/shape/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_x0.py rename to plotly/validators/layout/shape/_x0.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_x0shift.py b/plotly/validators/layout/shape/_x0shift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_x0shift.py rename to plotly/validators/layout/shape/_x0shift.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_x1.py b/plotly/validators/layout/shape/_x1.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_x1.py rename to plotly/validators/layout/shape/_x1.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_x1shift.py b/plotly/validators/layout/shape/_x1shift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_x1shift.py rename to plotly/validators/layout/shape/_x1shift.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_xanchor.py b/plotly/validators/layout/shape/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_xanchor.py rename to plotly/validators/layout/shape/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_xref.py b/plotly/validators/layout/shape/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_xref.py rename to plotly/validators/layout/shape/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_xsizemode.py b/plotly/validators/layout/shape/_xsizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_xsizemode.py rename to plotly/validators/layout/shape/_xsizemode.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_y0.py b/plotly/validators/layout/shape/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_y0.py rename to plotly/validators/layout/shape/_y0.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_y0shift.py b/plotly/validators/layout/shape/_y0shift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_y0shift.py rename to plotly/validators/layout/shape/_y0shift.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_y1.py b/plotly/validators/layout/shape/_y1.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_y1.py rename to plotly/validators/layout/shape/_y1.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_y1shift.py b/plotly/validators/layout/shape/_y1shift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_y1shift.py rename to plotly/validators/layout/shape/_y1shift.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_yanchor.py b/plotly/validators/layout/shape/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_yanchor.py rename to plotly/validators/layout/shape/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_yref.py b/plotly/validators/layout/shape/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_yref.py rename to plotly/validators/layout/shape/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/_ysizemode.py b/plotly/validators/layout/shape/_ysizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/_ysizemode.py rename to plotly/validators/layout/shape/_ysizemode.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/__init__.py b/plotly/validators/layout/shape/label/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/__init__.py rename to plotly/validators/layout/shape/label/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_font.py b/plotly/validators/layout/shape/label/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_font.py rename to plotly/validators/layout/shape/label/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_padding.py b/plotly/validators/layout/shape/label/_padding.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_padding.py rename to plotly/validators/layout/shape/label/_padding.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_text.py b/plotly/validators/layout/shape/label/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_text.py rename to plotly/validators/layout/shape/label/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_textangle.py b/plotly/validators/layout/shape/label/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_textangle.py rename to plotly/validators/layout/shape/label/_textangle.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_textposition.py b/plotly/validators/layout/shape/label/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_textposition.py rename to plotly/validators/layout/shape/label/_textposition.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_texttemplate.py b/plotly/validators/layout/shape/label/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_texttemplate.py rename to plotly/validators/layout/shape/label/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_xanchor.py b/plotly/validators/layout/shape/label/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_xanchor.py rename to plotly/validators/layout/shape/label/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/_yanchor.py b/plotly/validators/layout/shape/label/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/_yanchor.py rename to plotly/validators/layout/shape/label/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/__init__.py b/plotly/validators/layout/shape/label/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/__init__.py rename to plotly/validators/layout/shape/label/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_color.py b/plotly/validators/layout/shape/label/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_color.py rename to plotly/validators/layout/shape/label/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_family.py b/plotly/validators/layout/shape/label/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_family.py rename to plotly/validators/layout/shape/label/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_lineposition.py b/plotly/validators/layout/shape/label/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_lineposition.py rename to plotly/validators/layout/shape/label/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_shadow.py b/plotly/validators/layout/shape/label/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_shadow.py rename to plotly/validators/layout/shape/label/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_size.py b/plotly/validators/layout/shape/label/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_size.py rename to plotly/validators/layout/shape/label/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_style.py b/plotly/validators/layout/shape/label/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_style.py rename to plotly/validators/layout/shape/label/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_textcase.py b/plotly/validators/layout/shape/label/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_textcase.py rename to plotly/validators/layout/shape/label/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_variant.py b/plotly/validators/layout/shape/label/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_variant.py rename to plotly/validators/layout/shape/label/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/label/font/_weight.py b/plotly/validators/layout/shape/label/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/label/font/_weight.py rename to plotly/validators/layout/shape/label/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/__init__.py b/plotly/validators/layout/shape/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/__init__.py rename to plotly/validators/layout/shape/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/_font.py b/plotly/validators/layout/shape/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/_font.py rename to plotly/validators/layout/shape/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/_text.py b/plotly/validators/layout/shape/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/_text.py rename to plotly/validators/layout/shape/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/__init__.py b/plotly/validators/layout/shape/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/__init__.py rename to plotly/validators/layout/shape/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_color.py b/plotly/validators/layout/shape/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_color.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_family.py b/plotly/validators/layout/shape/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_family.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_lineposition.py b/plotly/validators/layout/shape/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_lineposition.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_shadow.py b/plotly/validators/layout/shape/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_shadow.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_size.py b/plotly/validators/layout/shape/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_size.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_style.py b/plotly/validators/layout/shape/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_style.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_textcase.py b/plotly/validators/layout/shape/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_textcase.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_variant.py b/plotly/validators/layout/shape/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_variant.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_weight.py b/plotly/validators/layout/shape/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/legendgrouptitle/font/_weight.py rename to plotly/validators/layout/shape/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/line/__init__.py b/plotly/validators/layout/shape/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/line/__init__.py rename to plotly/validators/layout/shape/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/line/_color.py b/plotly/validators/layout/shape/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/line/_color.py rename to plotly/validators/layout/shape/line/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/line/_dash.py b/plotly/validators/layout/shape/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/line/_dash.py rename to plotly/validators/layout/shape/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/layout/shape/line/_width.py b/plotly/validators/layout/shape/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/shape/line/_width.py rename to plotly/validators/layout/shape/line/_width.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/__init__.py b/plotly/validators/layout/slider/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/__init__.py rename to plotly/validators/layout/slider/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_active.py b/plotly/validators/layout/slider/_active.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_active.py rename to plotly/validators/layout/slider/_active.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_activebgcolor.py b/plotly/validators/layout/slider/_activebgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_activebgcolor.py rename to plotly/validators/layout/slider/_activebgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_bgcolor.py b/plotly/validators/layout/slider/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_bgcolor.py rename to plotly/validators/layout/slider/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_bordercolor.py b/plotly/validators/layout/slider/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_bordercolor.py rename to plotly/validators/layout/slider/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_borderwidth.py b/plotly/validators/layout/slider/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_borderwidth.py rename to plotly/validators/layout/slider/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_currentvalue.py b/plotly/validators/layout/slider/_currentvalue.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_currentvalue.py rename to plotly/validators/layout/slider/_currentvalue.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_font.py b/plotly/validators/layout/slider/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_font.py rename to plotly/validators/layout/slider/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_len.py b/plotly/validators/layout/slider/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_len.py rename to plotly/validators/layout/slider/_len.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_lenmode.py b/plotly/validators/layout/slider/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_lenmode.py rename to plotly/validators/layout/slider/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_minorticklen.py b/plotly/validators/layout/slider/_minorticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_minorticklen.py rename to plotly/validators/layout/slider/_minorticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_name.py b/plotly/validators/layout/slider/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_name.py rename to plotly/validators/layout/slider/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_pad.py b/plotly/validators/layout/slider/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_pad.py rename to plotly/validators/layout/slider/_pad.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_stepdefaults.py b/plotly/validators/layout/slider/_stepdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_stepdefaults.py rename to plotly/validators/layout/slider/_stepdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_steps.py b/plotly/validators/layout/slider/_steps.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_steps.py rename to plotly/validators/layout/slider/_steps.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_templateitemname.py b/plotly/validators/layout/slider/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_templateitemname.py rename to plotly/validators/layout/slider/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_tickcolor.py b/plotly/validators/layout/slider/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_tickcolor.py rename to plotly/validators/layout/slider/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_ticklen.py b/plotly/validators/layout/slider/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_ticklen.py rename to plotly/validators/layout/slider/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_tickwidth.py b/plotly/validators/layout/slider/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_tickwidth.py rename to plotly/validators/layout/slider/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_transition.py b/plotly/validators/layout/slider/_transition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_transition.py rename to plotly/validators/layout/slider/_transition.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_visible.py b/plotly/validators/layout/slider/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_visible.py rename to plotly/validators/layout/slider/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_x.py b/plotly/validators/layout/slider/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_x.py rename to plotly/validators/layout/slider/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_xanchor.py b/plotly/validators/layout/slider/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_xanchor.py rename to plotly/validators/layout/slider/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_y.py b/plotly/validators/layout/slider/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_y.py rename to plotly/validators/layout/slider/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/_yanchor.py b/plotly/validators/layout/slider/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/_yanchor.py rename to plotly/validators/layout/slider/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/__init__.py b/plotly/validators/layout/slider/currentvalue/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/__init__.py rename to plotly/validators/layout/slider/currentvalue/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/_font.py b/plotly/validators/layout/slider/currentvalue/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/_font.py rename to plotly/validators/layout/slider/currentvalue/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/_offset.py b/plotly/validators/layout/slider/currentvalue/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/_offset.py rename to plotly/validators/layout/slider/currentvalue/_offset.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/_prefix.py b/plotly/validators/layout/slider/currentvalue/_prefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/_prefix.py rename to plotly/validators/layout/slider/currentvalue/_prefix.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/_suffix.py b/plotly/validators/layout/slider/currentvalue/_suffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/_suffix.py rename to plotly/validators/layout/slider/currentvalue/_suffix.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/_visible.py b/plotly/validators/layout/slider/currentvalue/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/_visible.py rename to plotly/validators/layout/slider/currentvalue/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/_xanchor.py b/plotly/validators/layout/slider/currentvalue/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/_xanchor.py rename to plotly/validators/layout/slider/currentvalue/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/__init__.py b/plotly/validators/layout/slider/currentvalue/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/__init__.py rename to plotly/validators/layout/slider/currentvalue/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_color.py b/plotly/validators/layout/slider/currentvalue/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_color.py rename to plotly/validators/layout/slider/currentvalue/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_family.py b/plotly/validators/layout/slider/currentvalue/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_family.py rename to plotly/validators/layout/slider/currentvalue/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_lineposition.py b/plotly/validators/layout/slider/currentvalue/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_lineposition.py rename to plotly/validators/layout/slider/currentvalue/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_shadow.py b/plotly/validators/layout/slider/currentvalue/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_shadow.py rename to plotly/validators/layout/slider/currentvalue/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_size.py b/plotly/validators/layout/slider/currentvalue/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_size.py rename to plotly/validators/layout/slider/currentvalue/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_style.py b/plotly/validators/layout/slider/currentvalue/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_style.py rename to plotly/validators/layout/slider/currentvalue/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_textcase.py b/plotly/validators/layout/slider/currentvalue/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_textcase.py rename to plotly/validators/layout/slider/currentvalue/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_variant.py b/plotly/validators/layout/slider/currentvalue/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_variant.py rename to plotly/validators/layout/slider/currentvalue/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_weight.py b/plotly/validators/layout/slider/currentvalue/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/currentvalue/font/_weight.py rename to plotly/validators/layout/slider/currentvalue/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/__init__.py b/plotly/validators/layout/slider/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/__init__.py rename to plotly/validators/layout/slider/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_color.py b/plotly/validators/layout/slider/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_color.py rename to plotly/validators/layout/slider/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_family.py b/plotly/validators/layout/slider/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_family.py rename to plotly/validators/layout/slider/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_lineposition.py b/plotly/validators/layout/slider/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_lineposition.py rename to plotly/validators/layout/slider/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_shadow.py b/plotly/validators/layout/slider/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_shadow.py rename to plotly/validators/layout/slider/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_size.py b/plotly/validators/layout/slider/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_size.py rename to plotly/validators/layout/slider/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_style.py b/plotly/validators/layout/slider/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_style.py rename to plotly/validators/layout/slider/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_textcase.py b/plotly/validators/layout/slider/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_textcase.py rename to plotly/validators/layout/slider/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_variant.py b/plotly/validators/layout/slider/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_variant.py rename to plotly/validators/layout/slider/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/font/_weight.py b/plotly/validators/layout/slider/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/font/_weight.py rename to plotly/validators/layout/slider/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/pad/__init__.py b/plotly/validators/layout/slider/pad/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/pad/__init__.py rename to plotly/validators/layout/slider/pad/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/pad/_b.py b/plotly/validators/layout/slider/pad/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/pad/_b.py rename to plotly/validators/layout/slider/pad/_b.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/pad/_l.py b/plotly/validators/layout/slider/pad/_l.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/pad/_l.py rename to plotly/validators/layout/slider/pad/_l.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/pad/_r.py b/plotly/validators/layout/slider/pad/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/pad/_r.py rename to plotly/validators/layout/slider/pad/_r.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/pad/_t.py b/plotly/validators/layout/slider/pad/_t.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/pad/_t.py rename to plotly/validators/layout/slider/pad/_t.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/__init__.py b/plotly/validators/layout/slider/step/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/__init__.py rename to plotly/validators/layout/slider/step/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_args.py b/plotly/validators/layout/slider/step/_args.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_args.py rename to plotly/validators/layout/slider/step/_args.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_execute.py b/plotly/validators/layout/slider/step/_execute.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_execute.py rename to plotly/validators/layout/slider/step/_execute.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_label.py b/plotly/validators/layout/slider/step/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_label.py rename to plotly/validators/layout/slider/step/_label.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_method.py b/plotly/validators/layout/slider/step/_method.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_method.py rename to plotly/validators/layout/slider/step/_method.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_name.py b/plotly/validators/layout/slider/step/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_name.py rename to plotly/validators/layout/slider/step/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_templateitemname.py b/plotly/validators/layout/slider/step/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_templateitemname.py rename to plotly/validators/layout/slider/step/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_value.py b/plotly/validators/layout/slider/step/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_value.py rename to plotly/validators/layout/slider/step/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/step/_visible.py b/plotly/validators/layout/slider/step/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/step/_visible.py rename to plotly/validators/layout/slider/step/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/transition/__init__.py b/plotly/validators/layout/slider/transition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/transition/__init__.py rename to plotly/validators/layout/slider/transition/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/transition/_duration.py b/plotly/validators/layout/slider/transition/_duration.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/transition/_duration.py rename to plotly/validators/layout/slider/transition/_duration.py diff --git a/packages/python/plotly/plotly/validators/layout/slider/transition/_easing.py b/plotly/validators/layout/slider/transition/_easing.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/slider/transition/_easing.py rename to plotly/validators/layout/slider/transition/_easing.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/__init__.py b/plotly/validators/layout/smith/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/__init__.py rename to plotly/validators/layout/smith/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/_bgcolor.py b/plotly/validators/layout/smith/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/_bgcolor.py rename to plotly/validators/layout/smith/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/_domain.py b/plotly/validators/layout/smith/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/_domain.py rename to plotly/validators/layout/smith/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/_imaginaryaxis.py b/plotly/validators/layout/smith/_imaginaryaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/_imaginaryaxis.py rename to plotly/validators/layout/smith/_imaginaryaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/_realaxis.py b/plotly/validators/layout/smith/_realaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/_realaxis.py rename to plotly/validators/layout/smith/_realaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/domain/__init__.py b/plotly/validators/layout/smith/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/domain/__init__.py rename to plotly/validators/layout/smith/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/domain/_column.py b/plotly/validators/layout/smith/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/domain/_column.py rename to plotly/validators/layout/smith/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/domain/_row.py b/plotly/validators/layout/smith/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/domain/_row.py rename to plotly/validators/layout/smith/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/domain/_x.py b/plotly/validators/layout/smith/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/domain/_x.py rename to plotly/validators/layout/smith/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/domain/_y.py b/plotly/validators/layout/smith/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/domain/_y.py rename to plotly/validators/layout/smith/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/__init__.py b/plotly/validators/layout/smith/imaginaryaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/__init__.py rename to plotly/validators/layout/smith/imaginaryaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_color.py b/plotly/validators/layout/smith/imaginaryaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_color.py rename to plotly/validators/layout/smith/imaginaryaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_gridcolor.py b/plotly/validators/layout/smith/imaginaryaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_gridcolor.py rename to plotly/validators/layout/smith/imaginaryaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_griddash.py b/plotly/validators/layout/smith/imaginaryaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_griddash.py rename to plotly/validators/layout/smith/imaginaryaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_gridwidth.py b/plotly/validators/layout/smith/imaginaryaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_gridwidth.py rename to plotly/validators/layout/smith/imaginaryaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_hoverformat.py b/plotly/validators/layout/smith/imaginaryaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_hoverformat.py rename to plotly/validators/layout/smith/imaginaryaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_labelalias.py b/plotly/validators/layout/smith/imaginaryaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_labelalias.py rename to plotly/validators/layout/smith/imaginaryaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_layer.py b/plotly/validators/layout/smith/imaginaryaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_layer.py rename to plotly/validators/layout/smith/imaginaryaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_linecolor.py b/plotly/validators/layout/smith/imaginaryaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_linecolor.py rename to plotly/validators/layout/smith/imaginaryaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_linewidth.py b/plotly/validators/layout/smith/imaginaryaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_linewidth.py rename to plotly/validators/layout/smith/imaginaryaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showgrid.py b/plotly/validators/layout/smith/imaginaryaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showgrid.py rename to plotly/validators/layout/smith/imaginaryaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showline.py b/plotly/validators/layout/smith/imaginaryaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showline.py rename to plotly/validators/layout/smith/imaginaryaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showticklabels.py b/plotly/validators/layout/smith/imaginaryaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showticklabels.py rename to plotly/validators/layout/smith/imaginaryaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showtickprefix.py b/plotly/validators/layout/smith/imaginaryaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showtickprefix.py rename to plotly/validators/layout/smith/imaginaryaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showticksuffix.py b/plotly/validators/layout/smith/imaginaryaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_showticksuffix.py rename to plotly/validators/layout/smith/imaginaryaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickcolor.py b/plotly/validators/layout/smith/imaginaryaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickcolor.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickfont.py b/plotly/validators/layout/smith/imaginaryaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickfont.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickformat.py b/plotly/validators/layout/smith/imaginaryaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickformat.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_ticklen.py b/plotly/validators/layout/smith/imaginaryaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_ticklen.py rename to plotly/validators/layout/smith/imaginaryaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickprefix.py b/plotly/validators/layout/smith/imaginaryaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickprefix.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_ticks.py b/plotly/validators/layout/smith/imaginaryaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_ticks.py rename to plotly/validators/layout/smith/imaginaryaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_ticksuffix.py b/plotly/validators/layout/smith/imaginaryaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_ticksuffix.py rename to plotly/validators/layout/smith/imaginaryaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickvals.py b/plotly/validators/layout/smith/imaginaryaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickvals.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickvalssrc.py b/plotly/validators/layout/smith/imaginaryaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickvalssrc.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickwidth.py b/plotly/validators/layout/smith/imaginaryaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_tickwidth.py rename to plotly/validators/layout/smith/imaginaryaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_visible.py b/plotly/validators/layout/smith/imaginaryaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/_visible.py rename to plotly/validators/layout/smith/imaginaryaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/__init__.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/__init__.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_color.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_color.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_family.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_family.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_lineposition.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_lineposition.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_shadow.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_shadow.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_size.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_size.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_style.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_style.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_textcase.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_textcase.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_variant.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_variant.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_weight.py b/plotly/validators/layout/smith/imaginaryaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/imaginaryaxis/tickfont/_weight.py rename to plotly/validators/layout/smith/imaginaryaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/__init__.py b/plotly/validators/layout/smith/realaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/__init__.py rename to plotly/validators/layout/smith/realaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_color.py b/plotly/validators/layout/smith/realaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_color.py rename to plotly/validators/layout/smith/realaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_gridcolor.py b/plotly/validators/layout/smith/realaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_gridcolor.py rename to plotly/validators/layout/smith/realaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_griddash.py b/plotly/validators/layout/smith/realaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_griddash.py rename to plotly/validators/layout/smith/realaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_gridwidth.py b/plotly/validators/layout/smith/realaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_gridwidth.py rename to plotly/validators/layout/smith/realaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_hoverformat.py b/plotly/validators/layout/smith/realaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_hoverformat.py rename to plotly/validators/layout/smith/realaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_labelalias.py b/plotly/validators/layout/smith/realaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_labelalias.py rename to plotly/validators/layout/smith/realaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_layer.py b/plotly/validators/layout/smith/realaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_layer.py rename to plotly/validators/layout/smith/realaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_linecolor.py b/plotly/validators/layout/smith/realaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_linecolor.py rename to plotly/validators/layout/smith/realaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_linewidth.py b/plotly/validators/layout/smith/realaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_linewidth.py rename to plotly/validators/layout/smith/realaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_showgrid.py b/plotly/validators/layout/smith/realaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_showgrid.py rename to plotly/validators/layout/smith/realaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_showline.py b/plotly/validators/layout/smith/realaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_showline.py rename to plotly/validators/layout/smith/realaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_showticklabels.py b/plotly/validators/layout/smith/realaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_showticklabels.py rename to plotly/validators/layout/smith/realaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_showtickprefix.py b/plotly/validators/layout/smith/realaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_showtickprefix.py rename to plotly/validators/layout/smith/realaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_showticksuffix.py b/plotly/validators/layout/smith/realaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_showticksuffix.py rename to plotly/validators/layout/smith/realaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_side.py b/plotly/validators/layout/smith/realaxis/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_side.py rename to plotly/validators/layout/smith/realaxis/_side.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickangle.py b/plotly/validators/layout/smith/realaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickangle.py rename to plotly/validators/layout/smith/realaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickcolor.py b/plotly/validators/layout/smith/realaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickcolor.py rename to plotly/validators/layout/smith/realaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickfont.py b/plotly/validators/layout/smith/realaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickfont.py rename to plotly/validators/layout/smith/realaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickformat.py b/plotly/validators/layout/smith/realaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickformat.py rename to plotly/validators/layout/smith/realaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_ticklen.py b/plotly/validators/layout/smith/realaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_ticklen.py rename to plotly/validators/layout/smith/realaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickprefix.py b/plotly/validators/layout/smith/realaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickprefix.py rename to plotly/validators/layout/smith/realaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_ticks.py b/plotly/validators/layout/smith/realaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_ticks.py rename to plotly/validators/layout/smith/realaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_ticksuffix.py b/plotly/validators/layout/smith/realaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_ticksuffix.py rename to plotly/validators/layout/smith/realaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickvals.py b/plotly/validators/layout/smith/realaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickvals.py rename to plotly/validators/layout/smith/realaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickvalssrc.py b/plotly/validators/layout/smith/realaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickvalssrc.py rename to plotly/validators/layout/smith/realaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickwidth.py b/plotly/validators/layout/smith/realaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_tickwidth.py rename to plotly/validators/layout/smith/realaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/_visible.py b/plotly/validators/layout/smith/realaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/_visible.py rename to plotly/validators/layout/smith/realaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/__init__.py b/plotly/validators/layout/smith/realaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/__init__.py rename to plotly/validators/layout/smith/realaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_color.py b/plotly/validators/layout/smith/realaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_color.py rename to plotly/validators/layout/smith/realaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_family.py b/plotly/validators/layout/smith/realaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_family.py rename to plotly/validators/layout/smith/realaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_lineposition.py b/plotly/validators/layout/smith/realaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_lineposition.py rename to plotly/validators/layout/smith/realaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_shadow.py b/plotly/validators/layout/smith/realaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_shadow.py rename to plotly/validators/layout/smith/realaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_size.py b/plotly/validators/layout/smith/realaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_size.py rename to plotly/validators/layout/smith/realaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_style.py b/plotly/validators/layout/smith/realaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_style.py rename to plotly/validators/layout/smith/realaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_textcase.py b/plotly/validators/layout/smith/realaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_textcase.py rename to plotly/validators/layout/smith/realaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_variant.py b/plotly/validators/layout/smith/realaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_variant.py rename to plotly/validators/layout/smith/realaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_weight.py b/plotly/validators/layout/smith/realaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/smith/realaxis/tickfont/_weight.py rename to plotly/validators/layout/smith/realaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/template/__init__.py b/plotly/validators/layout/template/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/__init__.py rename to plotly/validators/layout/template/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/template/_data.py b/plotly/validators/layout/template/_data.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/_data.py rename to plotly/validators/layout/template/_data.py diff --git a/packages/python/plotly/plotly/validators/layout/template/_layout.py b/plotly/validators/layout/template/_layout.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/_layout.py rename to plotly/validators/layout/template/_layout.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/__init__.py b/plotly/validators/layout/template/data/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/__init__.py rename to plotly/validators/layout/template/data/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_bar.py b/plotly/validators/layout/template/data/_bar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_bar.py rename to plotly/validators/layout/template/data/_bar.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_barpolar.py b/plotly/validators/layout/template/data/_barpolar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_barpolar.py rename to plotly/validators/layout/template/data/_barpolar.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_box.py b/plotly/validators/layout/template/data/_box.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_box.py rename to plotly/validators/layout/template/data/_box.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_candlestick.py b/plotly/validators/layout/template/data/_candlestick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_candlestick.py rename to plotly/validators/layout/template/data/_candlestick.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_carpet.py b/plotly/validators/layout/template/data/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_carpet.py rename to plotly/validators/layout/template/data/_carpet.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_choropleth.py b/plotly/validators/layout/template/data/_choropleth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_choropleth.py rename to plotly/validators/layout/template/data/_choropleth.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_choroplethmap.py b/plotly/validators/layout/template/data/_choroplethmap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_choroplethmap.py rename to plotly/validators/layout/template/data/_choroplethmap.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_choroplethmapbox.py b/plotly/validators/layout/template/data/_choroplethmapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_choroplethmapbox.py rename to plotly/validators/layout/template/data/_choroplethmapbox.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_cone.py b/plotly/validators/layout/template/data/_cone.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_cone.py rename to plotly/validators/layout/template/data/_cone.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_contour.py b/plotly/validators/layout/template/data/_contour.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_contour.py rename to plotly/validators/layout/template/data/_contour.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_contourcarpet.py b/plotly/validators/layout/template/data/_contourcarpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_contourcarpet.py rename to plotly/validators/layout/template/data/_contourcarpet.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_densitymap.py b/plotly/validators/layout/template/data/_densitymap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_densitymap.py rename to plotly/validators/layout/template/data/_densitymap.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_densitymapbox.py b/plotly/validators/layout/template/data/_densitymapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_densitymapbox.py rename to plotly/validators/layout/template/data/_densitymapbox.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_funnel.py b/plotly/validators/layout/template/data/_funnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_funnel.py rename to plotly/validators/layout/template/data/_funnel.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_funnelarea.py b/plotly/validators/layout/template/data/_funnelarea.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_funnelarea.py rename to plotly/validators/layout/template/data/_funnelarea.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_heatmap.py b/plotly/validators/layout/template/data/_heatmap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_heatmap.py rename to plotly/validators/layout/template/data/_heatmap.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_histogram.py b/plotly/validators/layout/template/data/_histogram.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_histogram.py rename to plotly/validators/layout/template/data/_histogram.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_histogram2d.py b/plotly/validators/layout/template/data/_histogram2d.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_histogram2d.py rename to plotly/validators/layout/template/data/_histogram2d.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_histogram2dcontour.py b/plotly/validators/layout/template/data/_histogram2dcontour.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_histogram2dcontour.py rename to plotly/validators/layout/template/data/_histogram2dcontour.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_icicle.py b/plotly/validators/layout/template/data/_icicle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_icicle.py rename to plotly/validators/layout/template/data/_icicle.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_image.py b/plotly/validators/layout/template/data/_image.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_image.py rename to plotly/validators/layout/template/data/_image.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_indicator.py b/plotly/validators/layout/template/data/_indicator.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_indicator.py rename to plotly/validators/layout/template/data/_indicator.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_isosurface.py b/plotly/validators/layout/template/data/_isosurface.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_isosurface.py rename to plotly/validators/layout/template/data/_isosurface.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_mesh3d.py b/plotly/validators/layout/template/data/_mesh3d.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_mesh3d.py rename to plotly/validators/layout/template/data/_mesh3d.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_ohlc.py b/plotly/validators/layout/template/data/_ohlc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_ohlc.py rename to plotly/validators/layout/template/data/_ohlc.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_parcats.py b/plotly/validators/layout/template/data/_parcats.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_parcats.py rename to plotly/validators/layout/template/data/_parcats.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_parcoords.py b/plotly/validators/layout/template/data/_parcoords.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_parcoords.py rename to plotly/validators/layout/template/data/_parcoords.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_pie.py b/plotly/validators/layout/template/data/_pie.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_pie.py rename to plotly/validators/layout/template/data/_pie.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_sankey.py b/plotly/validators/layout/template/data/_sankey.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_sankey.py rename to plotly/validators/layout/template/data/_sankey.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scatter.py b/plotly/validators/layout/template/data/_scatter.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scatter.py rename to plotly/validators/layout/template/data/_scatter.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scatter3d.py b/plotly/validators/layout/template/data/_scatter3d.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scatter3d.py rename to plotly/validators/layout/template/data/_scatter3d.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scattercarpet.py b/plotly/validators/layout/template/data/_scattercarpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scattercarpet.py rename to plotly/validators/layout/template/data/_scattercarpet.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scattergeo.py b/plotly/validators/layout/template/data/_scattergeo.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scattergeo.py rename to plotly/validators/layout/template/data/_scattergeo.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scattergl.py b/plotly/validators/layout/template/data/_scattergl.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scattergl.py rename to plotly/validators/layout/template/data/_scattergl.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scattermap.py b/plotly/validators/layout/template/data/_scattermap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scattermap.py rename to plotly/validators/layout/template/data/_scattermap.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scattermapbox.py b/plotly/validators/layout/template/data/_scattermapbox.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scattermapbox.py rename to plotly/validators/layout/template/data/_scattermapbox.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scatterpolar.py b/plotly/validators/layout/template/data/_scatterpolar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scatterpolar.py rename to plotly/validators/layout/template/data/_scatterpolar.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scatterpolargl.py b/plotly/validators/layout/template/data/_scatterpolargl.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scatterpolargl.py rename to plotly/validators/layout/template/data/_scatterpolargl.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scattersmith.py b/plotly/validators/layout/template/data/_scattersmith.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scattersmith.py rename to plotly/validators/layout/template/data/_scattersmith.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_scatterternary.py b/plotly/validators/layout/template/data/_scatterternary.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_scatterternary.py rename to plotly/validators/layout/template/data/_scatterternary.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_splom.py b/plotly/validators/layout/template/data/_splom.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_splom.py rename to plotly/validators/layout/template/data/_splom.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_streamtube.py b/plotly/validators/layout/template/data/_streamtube.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_streamtube.py rename to plotly/validators/layout/template/data/_streamtube.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_sunburst.py b/plotly/validators/layout/template/data/_sunburst.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_sunburst.py rename to plotly/validators/layout/template/data/_sunburst.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_surface.py b/plotly/validators/layout/template/data/_surface.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_surface.py rename to plotly/validators/layout/template/data/_surface.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_table.py b/plotly/validators/layout/template/data/_table.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_table.py rename to plotly/validators/layout/template/data/_table.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_treemap.py b/plotly/validators/layout/template/data/_treemap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_treemap.py rename to plotly/validators/layout/template/data/_treemap.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_violin.py b/plotly/validators/layout/template/data/_violin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_violin.py rename to plotly/validators/layout/template/data/_violin.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_volume.py b/plotly/validators/layout/template/data/_volume.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_volume.py rename to plotly/validators/layout/template/data/_volume.py diff --git a/packages/python/plotly/plotly/validators/layout/template/data/_waterfall.py b/plotly/validators/layout/template/data/_waterfall.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/template/data/_waterfall.py rename to plotly/validators/layout/template/data/_waterfall.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/__init__.py b/plotly/validators/layout/ternary/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/__init__.py rename to plotly/validators/layout/ternary/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_aaxis.py b/plotly/validators/layout/ternary/_aaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_aaxis.py rename to plotly/validators/layout/ternary/_aaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_baxis.py b/plotly/validators/layout/ternary/_baxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_baxis.py rename to plotly/validators/layout/ternary/_baxis.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_bgcolor.py b/plotly/validators/layout/ternary/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_bgcolor.py rename to plotly/validators/layout/ternary/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_caxis.py b/plotly/validators/layout/ternary/_caxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_caxis.py rename to plotly/validators/layout/ternary/_caxis.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_domain.py b/plotly/validators/layout/ternary/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_domain.py rename to plotly/validators/layout/ternary/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_sum.py b/plotly/validators/layout/ternary/_sum.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_sum.py rename to plotly/validators/layout/ternary/_sum.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/_uirevision.py b/plotly/validators/layout/ternary/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/_uirevision.py rename to plotly/validators/layout/ternary/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/__init__.py b/plotly/validators/layout/ternary/aaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/__init__.py rename to plotly/validators/layout/ternary/aaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_color.py b/plotly/validators/layout/ternary/aaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_color.py rename to plotly/validators/layout/ternary/aaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_dtick.py b/plotly/validators/layout/ternary/aaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_dtick.py rename to plotly/validators/layout/ternary/aaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_exponentformat.py b/plotly/validators/layout/ternary/aaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_exponentformat.py rename to plotly/validators/layout/ternary/aaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_gridcolor.py b/plotly/validators/layout/ternary/aaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_gridcolor.py rename to plotly/validators/layout/ternary/aaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_griddash.py b/plotly/validators/layout/ternary/aaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_griddash.py rename to plotly/validators/layout/ternary/aaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_gridwidth.py b/plotly/validators/layout/ternary/aaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_gridwidth.py rename to plotly/validators/layout/ternary/aaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_hoverformat.py b/plotly/validators/layout/ternary/aaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_hoverformat.py rename to plotly/validators/layout/ternary/aaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_labelalias.py b/plotly/validators/layout/ternary/aaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_labelalias.py rename to plotly/validators/layout/ternary/aaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_layer.py b/plotly/validators/layout/ternary/aaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_layer.py rename to plotly/validators/layout/ternary/aaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_linecolor.py b/plotly/validators/layout/ternary/aaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_linecolor.py rename to plotly/validators/layout/ternary/aaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_linewidth.py b/plotly/validators/layout/ternary/aaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_linewidth.py rename to plotly/validators/layout/ternary/aaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_min.py b/plotly/validators/layout/ternary/aaxis/_min.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_min.py rename to plotly/validators/layout/ternary/aaxis/_min.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_minexponent.py b/plotly/validators/layout/ternary/aaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_minexponent.py rename to plotly/validators/layout/ternary/aaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_nticks.py b/plotly/validators/layout/ternary/aaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_nticks.py rename to plotly/validators/layout/ternary/aaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_separatethousands.py b/plotly/validators/layout/ternary/aaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_separatethousands.py rename to plotly/validators/layout/ternary/aaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showexponent.py b/plotly/validators/layout/ternary/aaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showexponent.py rename to plotly/validators/layout/ternary/aaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showgrid.py b/plotly/validators/layout/ternary/aaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showgrid.py rename to plotly/validators/layout/ternary/aaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showline.py b/plotly/validators/layout/ternary/aaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showline.py rename to plotly/validators/layout/ternary/aaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showticklabels.py b/plotly/validators/layout/ternary/aaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showticklabels.py rename to plotly/validators/layout/ternary/aaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showtickprefix.py b/plotly/validators/layout/ternary/aaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showtickprefix.py rename to plotly/validators/layout/ternary/aaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showticksuffix.py b/plotly/validators/layout/ternary/aaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_showticksuffix.py rename to plotly/validators/layout/ternary/aaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tick0.py b/plotly/validators/layout/ternary/aaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tick0.py rename to plotly/validators/layout/ternary/aaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickangle.py b/plotly/validators/layout/ternary/aaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickangle.py rename to plotly/validators/layout/ternary/aaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickcolor.py b/plotly/validators/layout/ternary/aaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickcolor.py rename to plotly/validators/layout/ternary/aaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickfont.py b/plotly/validators/layout/ternary/aaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickfont.py rename to plotly/validators/layout/ternary/aaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickformat.py b/plotly/validators/layout/ternary/aaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickformat.py rename to plotly/validators/layout/ternary/aaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py b/plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/ternary/aaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickformatstops.py b/plotly/validators/layout/ternary/aaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickformatstops.py rename to plotly/validators/layout/ternary/aaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticklabelstep.py b/plotly/validators/layout/ternary/aaxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticklabelstep.py rename to plotly/validators/layout/ternary/aaxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticklen.py b/plotly/validators/layout/ternary/aaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticklen.py rename to plotly/validators/layout/ternary/aaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickmode.py b/plotly/validators/layout/ternary/aaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickmode.py rename to plotly/validators/layout/ternary/aaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickprefix.py b/plotly/validators/layout/ternary/aaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickprefix.py rename to plotly/validators/layout/ternary/aaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticks.py b/plotly/validators/layout/ternary/aaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticks.py rename to plotly/validators/layout/ternary/aaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticksuffix.py b/plotly/validators/layout/ternary/aaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticksuffix.py rename to plotly/validators/layout/ternary/aaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticktext.py b/plotly/validators/layout/ternary/aaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticktext.py rename to plotly/validators/layout/ternary/aaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticktextsrc.py b/plotly/validators/layout/ternary/aaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_ticktextsrc.py rename to plotly/validators/layout/ternary/aaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickvals.py b/plotly/validators/layout/ternary/aaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickvals.py rename to plotly/validators/layout/ternary/aaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickvalssrc.py b/plotly/validators/layout/ternary/aaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickvalssrc.py rename to plotly/validators/layout/ternary/aaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickwidth.py b/plotly/validators/layout/ternary/aaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_tickwidth.py rename to plotly/validators/layout/ternary/aaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_title.py b/plotly/validators/layout/ternary/aaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_title.py rename to plotly/validators/layout/ternary/aaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/_uirevision.py b/plotly/validators/layout/ternary/aaxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/_uirevision.py rename to plotly/validators/layout/ternary/aaxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/__init__.py b/plotly/validators/layout/ternary/aaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/__init__.py rename to plotly/validators/layout/ternary/aaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_color.py b/plotly/validators/layout/ternary/aaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_color.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_family.py b/plotly/validators/layout/ternary/aaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_family.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_lineposition.py b/plotly/validators/layout/ternary/aaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_lineposition.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_shadow.py b/plotly/validators/layout/ternary/aaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_shadow.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_size.py b/plotly/validators/layout/ternary/aaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_size.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_style.py b/plotly/validators/layout/ternary/aaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_style.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_textcase.py b/plotly/validators/layout/ternary/aaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_textcase.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_variant.py b/plotly/validators/layout/ternary/aaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_variant.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_weight.py b/plotly/validators/layout/ternary/aaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickfont/_weight.py rename to plotly/validators/layout/ternary/aaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/__init__.py b/plotly/validators/layout/ternary/aaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/__init__.py rename to plotly/validators/layout/ternary/aaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/ternary/aaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/ternary/aaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_enabled.py b/plotly/validators/layout/ternary/aaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/ternary/aaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_name.py b/plotly/validators/layout/ternary/aaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_name.py rename to plotly/validators/layout/ternary/aaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/ternary/aaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/ternary/aaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_value.py b/plotly/validators/layout/ternary/aaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/tickformatstop/_value.py rename to plotly/validators/layout/ternary/aaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/__init__.py b/plotly/validators/layout/ternary/aaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/__init__.py rename to plotly/validators/layout/ternary/aaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/_font.py b/plotly/validators/layout/ternary/aaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/_font.py rename to plotly/validators/layout/ternary/aaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/_text.py b/plotly/validators/layout/ternary/aaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/_text.py rename to plotly/validators/layout/ternary/aaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/__init__.py b/plotly/validators/layout/ternary/aaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/__init__.py rename to plotly/validators/layout/ternary/aaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_color.py b/plotly/validators/layout/ternary/aaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_color.py rename to plotly/validators/layout/ternary/aaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_family.py b/plotly/validators/layout/ternary/aaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_family.py rename to plotly/validators/layout/ternary/aaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_lineposition.py b/plotly/validators/layout/ternary/aaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_lineposition.py rename to plotly/validators/layout/ternary/aaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_shadow.py b/plotly/validators/layout/ternary/aaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_shadow.py rename to plotly/validators/layout/ternary/aaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_size.py b/plotly/validators/layout/ternary/aaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_size.py rename to plotly/validators/layout/ternary/aaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_style.py b/plotly/validators/layout/ternary/aaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_style.py rename to plotly/validators/layout/ternary/aaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_textcase.py b/plotly/validators/layout/ternary/aaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_textcase.py rename to plotly/validators/layout/ternary/aaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_variant.py b/plotly/validators/layout/ternary/aaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_variant.py rename to plotly/validators/layout/ternary/aaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_weight.py b/plotly/validators/layout/ternary/aaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/aaxis/title/font/_weight.py rename to plotly/validators/layout/ternary/aaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/__init__.py b/plotly/validators/layout/ternary/baxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/__init__.py rename to plotly/validators/layout/ternary/baxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_color.py b/plotly/validators/layout/ternary/baxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_color.py rename to plotly/validators/layout/ternary/baxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_dtick.py b/plotly/validators/layout/ternary/baxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_dtick.py rename to plotly/validators/layout/ternary/baxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_exponentformat.py b/plotly/validators/layout/ternary/baxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_exponentformat.py rename to plotly/validators/layout/ternary/baxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_gridcolor.py b/plotly/validators/layout/ternary/baxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_gridcolor.py rename to plotly/validators/layout/ternary/baxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_griddash.py b/plotly/validators/layout/ternary/baxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_griddash.py rename to plotly/validators/layout/ternary/baxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_gridwidth.py b/plotly/validators/layout/ternary/baxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_gridwidth.py rename to plotly/validators/layout/ternary/baxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_hoverformat.py b/plotly/validators/layout/ternary/baxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_hoverformat.py rename to plotly/validators/layout/ternary/baxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_labelalias.py b/plotly/validators/layout/ternary/baxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_labelalias.py rename to plotly/validators/layout/ternary/baxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_layer.py b/plotly/validators/layout/ternary/baxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_layer.py rename to plotly/validators/layout/ternary/baxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_linecolor.py b/plotly/validators/layout/ternary/baxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_linecolor.py rename to plotly/validators/layout/ternary/baxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_linewidth.py b/plotly/validators/layout/ternary/baxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_linewidth.py rename to plotly/validators/layout/ternary/baxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_min.py b/plotly/validators/layout/ternary/baxis/_min.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_min.py rename to plotly/validators/layout/ternary/baxis/_min.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_minexponent.py b/plotly/validators/layout/ternary/baxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_minexponent.py rename to plotly/validators/layout/ternary/baxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_nticks.py b/plotly/validators/layout/ternary/baxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_nticks.py rename to plotly/validators/layout/ternary/baxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_separatethousands.py b/plotly/validators/layout/ternary/baxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_separatethousands.py rename to plotly/validators/layout/ternary/baxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_showexponent.py b/plotly/validators/layout/ternary/baxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_showexponent.py rename to plotly/validators/layout/ternary/baxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_showgrid.py b/plotly/validators/layout/ternary/baxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_showgrid.py rename to plotly/validators/layout/ternary/baxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_showline.py b/plotly/validators/layout/ternary/baxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_showline.py rename to plotly/validators/layout/ternary/baxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_showticklabels.py b/plotly/validators/layout/ternary/baxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_showticklabels.py rename to plotly/validators/layout/ternary/baxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_showtickprefix.py b/plotly/validators/layout/ternary/baxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_showtickprefix.py rename to plotly/validators/layout/ternary/baxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_showticksuffix.py b/plotly/validators/layout/ternary/baxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_showticksuffix.py rename to plotly/validators/layout/ternary/baxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tick0.py b/plotly/validators/layout/ternary/baxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tick0.py rename to plotly/validators/layout/ternary/baxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickangle.py b/plotly/validators/layout/ternary/baxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickangle.py rename to plotly/validators/layout/ternary/baxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickcolor.py b/plotly/validators/layout/ternary/baxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickcolor.py rename to plotly/validators/layout/ternary/baxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickfont.py b/plotly/validators/layout/ternary/baxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickfont.py rename to plotly/validators/layout/ternary/baxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickformat.py b/plotly/validators/layout/ternary/baxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickformat.py rename to plotly/validators/layout/ternary/baxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py b/plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py rename to plotly/validators/layout/ternary/baxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickformatstops.py b/plotly/validators/layout/ternary/baxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickformatstops.py rename to plotly/validators/layout/ternary/baxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticklabelstep.py b/plotly/validators/layout/ternary/baxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticklabelstep.py rename to plotly/validators/layout/ternary/baxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticklen.py b/plotly/validators/layout/ternary/baxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticklen.py rename to plotly/validators/layout/ternary/baxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickmode.py b/plotly/validators/layout/ternary/baxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickmode.py rename to plotly/validators/layout/ternary/baxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickprefix.py b/plotly/validators/layout/ternary/baxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickprefix.py rename to plotly/validators/layout/ternary/baxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticks.py b/plotly/validators/layout/ternary/baxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticks.py rename to plotly/validators/layout/ternary/baxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticksuffix.py b/plotly/validators/layout/ternary/baxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticksuffix.py rename to plotly/validators/layout/ternary/baxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticktext.py b/plotly/validators/layout/ternary/baxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticktext.py rename to plotly/validators/layout/ternary/baxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticktextsrc.py b/plotly/validators/layout/ternary/baxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_ticktextsrc.py rename to plotly/validators/layout/ternary/baxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickvals.py b/plotly/validators/layout/ternary/baxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickvals.py rename to plotly/validators/layout/ternary/baxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickvalssrc.py b/plotly/validators/layout/ternary/baxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickvalssrc.py rename to plotly/validators/layout/ternary/baxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickwidth.py b/plotly/validators/layout/ternary/baxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_tickwidth.py rename to plotly/validators/layout/ternary/baxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_title.py b/plotly/validators/layout/ternary/baxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_title.py rename to plotly/validators/layout/ternary/baxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/_uirevision.py b/plotly/validators/layout/ternary/baxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/_uirevision.py rename to plotly/validators/layout/ternary/baxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/__init__.py b/plotly/validators/layout/ternary/baxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/__init__.py rename to plotly/validators/layout/ternary/baxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_color.py b/plotly/validators/layout/ternary/baxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_color.py rename to plotly/validators/layout/ternary/baxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_family.py b/plotly/validators/layout/ternary/baxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_family.py rename to plotly/validators/layout/ternary/baxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_lineposition.py b/plotly/validators/layout/ternary/baxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_lineposition.py rename to plotly/validators/layout/ternary/baxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_shadow.py b/plotly/validators/layout/ternary/baxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_shadow.py rename to plotly/validators/layout/ternary/baxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_size.py b/plotly/validators/layout/ternary/baxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_size.py rename to plotly/validators/layout/ternary/baxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_style.py b/plotly/validators/layout/ternary/baxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_style.py rename to plotly/validators/layout/ternary/baxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_textcase.py b/plotly/validators/layout/ternary/baxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_textcase.py rename to plotly/validators/layout/ternary/baxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_variant.py b/plotly/validators/layout/ternary/baxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_variant.py rename to plotly/validators/layout/ternary/baxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_weight.py b/plotly/validators/layout/ternary/baxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickfont/_weight.py rename to plotly/validators/layout/ternary/baxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/__init__.py b/plotly/validators/layout/ternary/baxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/__init__.py rename to plotly/validators/layout/ternary/baxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/ternary/baxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/ternary/baxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_enabled.py b/plotly/validators/layout/ternary/baxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_enabled.py rename to plotly/validators/layout/ternary/baxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_name.py b/plotly/validators/layout/ternary/baxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_name.py rename to plotly/validators/layout/ternary/baxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/ternary/baxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/ternary/baxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_value.py b/plotly/validators/layout/ternary/baxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/tickformatstop/_value.py rename to plotly/validators/layout/ternary/baxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/__init__.py b/plotly/validators/layout/ternary/baxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/__init__.py rename to plotly/validators/layout/ternary/baxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/_font.py b/plotly/validators/layout/ternary/baxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/_font.py rename to plotly/validators/layout/ternary/baxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/_text.py b/plotly/validators/layout/ternary/baxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/_text.py rename to plotly/validators/layout/ternary/baxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/__init__.py b/plotly/validators/layout/ternary/baxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/__init__.py rename to plotly/validators/layout/ternary/baxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_color.py b/plotly/validators/layout/ternary/baxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_color.py rename to plotly/validators/layout/ternary/baxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_family.py b/plotly/validators/layout/ternary/baxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_family.py rename to plotly/validators/layout/ternary/baxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_lineposition.py b/plotly/validators/layout/ternary/baxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_lineposition.py rename to plotly/validators/layout/ternary/baxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_shadow.py b/plotly/validators/layout/ternary/baxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_shadow.py rename to plotly/validators/layout/ternary/baxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_size.py b/plotly/validators/layout/ternary/baxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_size.py rename to plotly/validators/layout/ternary/baxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_style.py b/plotly/validators/layout/ternary/baxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_style.py rename to plotly/validators/layout/ternary/baxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_textcase.py b/plotly/validators/layout/ternary/baxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_textcase.py rename to plotly/validators/layout/ternary/baxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_variant.py b/plotly/validators/layout/ternary/baxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_variant.py rename to plotly/validators/layout/ternary/baxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_weight.py b/plotly/validators/layout/ternary/baxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/baxis/title/font/_weight.py rename to plotly/validators/layout/ternary/baxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/__init__.py b/plotly/validators/layout/ternary/caxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/__init__.py rename to plotly/validators/layout/ternary/caxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_color.py b/plotly/validators/layout/ternary/caxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_color.py rename to plotly/validators/layout/ternary/caxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_dtick.py b/plotly/validators/layout/ternary/caxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_dtick.py rename to plotly/validators/layout/ternary/caxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_exponentformat.py b/plotly/validators/layout/ternary/caxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_exponentformat.py rename to plotly/validators/layout/ternary/caxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_gridcolor.py b/plotly/validators/layout/ternary/caxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_gridcolor.py rename to plotly/validators/layout/ternary/caxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_griddash.py b/plotly/validators/layout/ternary/caxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_griddash.py rename to plotly/validators/layout/ternary/caxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_gridwidth.py b/plotly/validators/layout/ternary/caxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_gridwidth.py rename to plotly/validators/layout/ternary/caxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_hoverformat.py b/plotly/validators/layout/ternary/caxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_hoverformat.py rename to plotly/validators/layout/ternary/caxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_labelalias.py b/plotly/validators/layout/ternary/caxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_labelalias.py rename to plotly/validators/layout/ternary/caxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_layer.py b/plotly/validators/layout/ternary/caxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_layer.py rename to plotly/validators/layout/ternary/caxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_linecolor.py b/plotly/validators/layout/ternary/caxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_linecolor.py rename to plotly/validators/layout/ternary/caxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_linewidth.py b/plotly/validators/layout/ternary/caxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_linewidth.py rename to plotly/validators/layout/ternary/caxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_min.py b/plotly/validators/layout/ternary/caxis/_min.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_min.py rename to plotly/validators/layout/ternary/caxis/_min.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_minexponent.py b/plotly/validators/layout/ternary/caxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_minexponent.py rename to plotly/validators/layout/ternary/caxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_nticks.py b/plotly/validators/layout/ternary/caxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_nticks.py rename to plotly/validators/layout/ternary/caxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_separatethousands.py b/plotly/validators/layout/ternary/caxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_separatethousands.py rename to plotly/validators/layout/ternary/caxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_showexponent.py b/plotly/validators/layout/ternary/caxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_showexponent.py rename to plotly/validators/layout/ternary/caxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_showgrid.py b/plotly/validators/layout/ternary/caxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_showgrid.py rename to plotly/validators/layout/ternary/caxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_showline.py b/plotly/validators/layout/ternary/caxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_showline.py rename to plotly/validators/layout/ternary/caxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_showticklabels.py b/plotly/validators/layout/ternary/caxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_showticklabels.py rename to plotly/validators/layout/ternary/caxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_showtickprefix.py b/plotly/validators/layout/ternary/caxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_showtickprefix.py rename to plotly/validators/layout/ternary/caxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_showticksuffix.py b/plotly/validators/layout/ternary/caxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_showticksuffix.py rename to plotly/validators/layout/ternary/caxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tick0.py b/plotly/validators/layout/ternary/caxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tick0.py rename to plotly/validators/layout/ternary/caxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickangle.py b/plotly/validators/layout/ternary/caxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickangle.py rename to plotly/validators/layout/ternary/caxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickcolor.py b/plotly/validators/layout/ternary/caxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickcolor.py rename to plotly/validators/layout/ternary/caxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickfont.py b/plotly/validators/layout/ternary/caxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickfont.py rename to plotly/validators/layout/ternary/caxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickformat.py b/plotly/validators/layout/ternary/caxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickformat.py rename to plotly/validators/layout/ternary/caxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py b/plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py rename to plotly/validators/layout/ternary/caxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickformatstops.py b/plotly/validators/layout/ternary/caxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickformatstops.py rename to plotly/validators/layout/ternary/caxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticklabelstep.py b/plotly/validators/layout/ternary/caxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticklabelstep.py rename to plotly/validators/layout/ternary/caxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticklen.py b/plotly/validators/layout/ternary/caxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticklen.py rename to plotly/validators/layout/ternary/caxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickmode.py b/plotly/validators/layout/ternary/caxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickmode.py rename to plotly/validators/layout/ternary/caxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickprefix.py b/plotly/validators/layout/ternary/caxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickprefix.py rename to plotly/validators/layout/ternary/caxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticks.py b/plotly/validators/layout/ternary/caxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticks.py rename to plotly/validators/layout/ternary/caxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticksuffix.py b/plotly/validators/layout/ternary/caxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticksuffix.py rename to plotly/validators/layout/ternary/caxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticktext.py b/plotly/validators/layout/ternary/caxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticktext.py rename to plotly/validators/layout/ternary/caxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticktextsrc.py b/plotly/validators/layout/ternary/caxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_ticktextsrc.py rename to plotly/validators/layout/ternary/caxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickvals.py b/plotly/validators/layout/ternary/caxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickvals.py rename to plotly/validators/layout/ternary/caxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickvalssrc.py b/plotly/validators/layout/ternary/caxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickvalssrc.py rename to plotly/validators/layout/ternary/caxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickwidth.py b/plotly/validators/layout/ternary/caxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_tickwidth.py rename to plotly/validators/layout/ternary/caxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_title.py b/plotly/validators/layout/ternary/caxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_title.py rename to plotly/validators/layout/ternary/caxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/_uirevision.py b/plotly/validators/layout/ternary/caxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/_uirevision.py rename to plotly/validators/layout/ternary/caxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/__init__.py b/plotly/validators/layout/ternary/caxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/__init__.py rename to plotly/validators/layout/ternary/caxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_color.py b/plotly/validators/layout/ternary/caxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_color.py rename to plotly/validators/layout/ternary/caxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_family.py b/plotly/validators/layout/ternary/caxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_family.py rename to plotly/validators/layout/ternary/caxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_lineposition.py b/plotly/validators/layout/ternary/caxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_lineposition.py rename to plotly/validators/layout/ternary/caxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_shadow.py b/plotly/validators/layout/ternary/caxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_shadow.py rename to plotly/validators/layout/ternary/caxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_size.py b/plotly/validators/layout/ternary/caxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_size.py rename to plotly/validators/layout/ternary/caxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_style.py b/plotly/validators/layout/ternary/caxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_style.py rename to plotly/validators/layout/ternary/caxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_textcase.py b/plotly/validators/layout/ternary/caxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_textcase.py rename to plotly/validators/layout/ternary/caxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_variant.py b/plotly/validators/layout/ternary/caxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_variant.py rename to plotly/validators/layout/ternary/caxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_weight.py b/plotly/validators/layout/ternary/caxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickfont/_weight.py rename to plotly/validators/layout/ternary/caxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/__init__.py b/plotly/validators/layout/ternary/caxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/__init__.py rename to plotly/validators/layout/ternary/caxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/ternary/caxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/ternary/caxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_enabled.py b/plotly/validators/layout/ternary/caxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_enabled.py rename to plotly/validators/layout/ternary/caxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_name.py b/plotly/validators/layout/ternary/caxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_name.py rename to plotly/validators/layout/ternary/caxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/ternary/caxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/ternary/caxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_value.py b/plotly/validators/layout/ternary/caxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/tickformatstop/_value.py rename to plotly/validators/layout/ternary/caxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/__init__.py b/plotly/validators/layout/ternary/caxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/__init__.py rename to plotly/validators/layout/ternary/caxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/_font.py b/plotly/validators/layout/ternary/caxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/_font.py rename to plotly/validators/layout/ternary/caxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/_text.py b/plotly/validators/layout/ternary/caxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/_text.py rename to plotly/validators/layout/ternary/caxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/__init__.py b/plotly/validators/layout/ternary/caxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/__init__.py rename to plotly/validators/layout/ternary/caxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_color.py b/plotly/validators/layout/ternary/caxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_color.py rename to plotly/validators/layout/ternary/caxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_family.py b/plotly/validators/layout/ternary/caxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_family.py rename to plotly/validators/layout/ternary/caxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_lineposition.py b/plotly/validators/layout/ternary/caxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_lineposition.py rename to plotly/validators/layout/ternary/caxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_shadow.py b/plotly/validators/layout/ternary/caxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_shadow.py rename to plotly/validators/layout/ternary/caxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_size.py b/plotly/validators/layout/ternary/caxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_size.py rename to plotly/validators/layout/ternary/caxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_style.py b/plotly/validators/layout/ternary/caxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_style.py rename to plotly/validators/layout/ternary/caxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_textcase.py b/plotly/validators/layout/ternary/caxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_textcase.py rename to plotly/validators/layout/ternary/caxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_variant.py b/plotly/validators/layout/ternary/caxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_variant.py rename to plotly/validators/layout/ternary/caxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_weight.py b/plotly/validators/layout/ternary/caxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/caxis/title/font/_weight.py rename to plotly/validators/layout/ternary/caxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/domain/__init__.py b/plotly/validators/layout/ternary/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/domain/__init__.py rename to plotly/validators/layout/ternary/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/domain/_column.py b/plotly/validators/layout/ternary/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/domain/_column.py rename to plotly/validators/layout/ternary/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/domain/_row.py b/plotly/validators/layout/ternary/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/domain/_row.py rename to plotly/validators/layout/ternary/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/domain/_x.py b/plotly/validators/layout/ternary/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/domain/_x.py rename to plotly/validators/layout/ternary/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/ternary/domain/_y.py b/plotly/validators/layout/ternary/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/ternary/domain/_y.py rename to plotly/validators/layout/ternary/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/title/__init__.py b/plotly/validators/layout/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/__init__.py rename to plotly/validators/layout/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_automargin.py b/plotly/validators/layout/title/_automargin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_automargin.py rename to plotly/validators/layout/title/_automargin.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_font.py b/plotly/validators/layout/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_font.py rename to plotly/validators/layout/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_pad.py b/plotly/validators/layout/title/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_pad.py rename to plotly/validators/layout/title/_pad.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_subtitle.py b/plotly/validators/layout/title/_subtitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_subtitle.py rename to plotly/validators/layout/title/_subtitle.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_text.py b/plotly/validators/layout/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_text.py rename to plotly/validators/layout/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_x.py b/plotly/validators/layout/title/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_x.py rename to plotly/validators/layout/title/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_xanchor.py b/plotly/validators/layout/title/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_xanchor.py rename to plotly/validators/layout/title/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_xref.py b/plotly/validators/layout/title/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_xref.py rename to plotly/validators/layout/title/_xref.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_y.py b/plotly/validators/layout/title/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_y.py rename to plotly/validators/layout/title/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_yanchor.py b/plotly/validators/layout/title/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_yanchor.py rename to plotly/validators/layout/title/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/title/_yref.py b/plotly/validators/layout/title/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/_yref.py rename to plotly/validators/layout/title/_yref.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/__init__.py b/plotly/validators/layout/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/__init__.py rename to plotly/validators/layout/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_color.py b/plotly/validators/layout/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_color.py rename to plotly/validators/layout/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_family.py b/plotly/validators/layout/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_family.py rename to plotly/validators/layout/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_lineposition.py b/plotly/validators/layout/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_lineposition.py rename to plotly/validators/layout/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_shadow.py b/plotly/validators/layout/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_shadow.py rename to plotly/validators/layout/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_size.py b/plotly/validators/layout/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_size.py rename to plotly/validators/layout/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_style.py b/plotly/validators/layout/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_style.py rename to plotly/validators/layout/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_textcase.py b/plotly/validators/layout/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_textcase.py rename to plotly/validators/layout/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_variant.py b/plotly/validators/layout/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_variant.py rename to plotly/validators/layout/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/title/font/_weight.py b/plotly/validators/layout/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/font/_weight.py rename to plotly/validators/layout/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/title/pad/__init__.py b/plotly/validators/layout/title/pad/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/pad/__init__.py rename to plotly/validators/layout/title/pad/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/title/pad/_b.py b/plotly/validators/layout/title/pad/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/pad/_b.py rename to plotly/validators/layout/title/pad/_b.py diff --git a/packages/python/plotly/plotly/validators/layout/title/pad/_l.py b/plotly/validators/layout/title/pad/_l.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/pad/_l.py rename to plotly/validators/layout/title/pad/_l.py diff --git a/packages/python/plotly/plotly/validators/layout/title/pad/_r.py b/plotly/validators/layout/title/pad/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/pad/_r.py rename to plotly/validators/layout/title/pad/_r.py diff --git a/packages/python/plotly/plotly/validators/layout/title/pad/_t.py b/plotly/validators/layout/title/pad/_t.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/pad/_t.py rename to plotly/validators/layout/title/pad/_t.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/__init__.py b/plotly/validators/layout/title/subtitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/__init__.py rename to plotly/validators/layout/title/subtitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/_font.py b/plotly/validators/layout/title/subtitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/_font.py rename to plotly/validators/layout/title/subtitle/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/_text.py b/plotly/validators/layout/title/subtitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/_text.py rename to plotly/validators/layout/title/subtitle/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/__init__.py b/plotly/validators/layout/title/subtitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/__init__.py rename to plotly/validators/layout/title/subtitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_color.py b/plotly/validators/layout/title/subtitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_color.py rename to plotly/validators/layout/title/subtitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_family.py b/plotly/validators/layout/title/subtitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_family.py rename to plotly/validators/layout/title/subtitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_lineposition.py b/plotly/validators/layout/title/subtitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_lineposition.py rename to plotly/validators/layout/title/subtitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_shadow.py b/plotly/validators/layout/title/subtitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_shadow.py rename to plotly/validators/layout/title/subtitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_size.py b/plotly/validators/layout/title/subtitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_size.py rename to plotly/validators/layout/title/subtitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_style.py b/plotly/validators/layout/title/subtitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_style.py rename to plotly/validators/layout/title/subtitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_textcase.py b/plotly/validators/layout/title/subtitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_textcase.py rename to plotly/validators/layout/title/subtitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_variant.py b/plotly/validators/layout/title/subtitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_variant.py rename to plotly/validators/layout/title/subtitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/title/subtitle/font/_weight.py b/plotly/validators/layout/title/subtitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/title/subtitle/font/_weight.py rename to plotly/validators/layout/title/subtitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/transition/__init__.py b/plotly/validators/layout/transition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/transition/__init__.py rename to plotly/validators/layout/transition/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/transition/_duration.py b/plotly/validators/layout/transition/_duration.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/transition/_duration.py rename to plotly/validators/layout/transition/_duration.py diff --git a/packages/python/plotly/plotly/validators/layout/transition/_easing.py b/plotly/validators/layout/transition/_easing.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/transition/_easing.py rename to plotly/validators/layout/transition/_easing.py diff --git a/packages/python/plotly/plotly/validators/layout/transition/_ordering.py b/plotly/validators/layout/transition/_ordering.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/transition/_ordering.py rename to plotly/validators/layout/transition/_ordering.py diff --git a/packages/python/plotly/plotly/validators/layout/uniformtext/__init__.py b/plotly/validators/layout/uniformtext/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/uniformtext/__init__.py rename to plotly/validators/layout/uniformtext/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/uniformtext/_minsize.py b/plotly/validators/layout/uniformtext/_minsize.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/uniformtext/_minsize.py rename to plotly/validators/layout/uniformtext/_minsize.py diff --git a/packages/python/plotly/plotly/validators/layout/uniformtext/_mode.py b/plotly/validators/layout/uniformtext/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/uniformtext/_mode.py rename to plotly/validators/layout/uniformtext/_mode.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/__init__.py b/plotly/validators/layout/updatemenu/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/__init__.py rename to plotly/validators/layout/updatemenu/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_active.py b/plotly/validators/layout/updatemenu/_active.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_active.py rename to plotly/validators/layout/updatemenu/_active.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_bgcolor.py b/plotly/validators/layout/updatemenu/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_bgcolor.py rename to plotly/validators/layout/updatemenu/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_bordercolor.py b/plotly/validators/layout/updatemenu/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_bordercolor.py rename to plotly/validators/layout/updatemenu/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_borderwidth.py b/plotly/validators/layout/updatemenu/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_borderwidth.py rename to plotly/validators/layout/updatemenu/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_buttondefaults.py b/plotly/validators/layout/updatemenu/_buttondefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_buttondefaults.py rename to plotly/validators/layout/updatemenu/_buttondefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_buttons.py b/plotly/validators/layout/updatemenu/_buttons.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_buttons.py rename to plotly/validators/layout/updatemenu/_buttons.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_direction.py b/plotly/validators/layout/updatemenu/_direction.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_direction.py rename to plotly/validators/layout/updatemenu/_direction.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_font.py b/plotly/validators/layout/updatemenu/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_font.py rename to plotly/validators/layout/updatemenu/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_name.py b/plotly/validators/layout/updatemenu/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_name.py rename to plotly/validators/layout/updatemenu/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_pad.py b/plotly/validators/layout/updatemenu/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_pad.py rename to plotly/validators/layout/updatemenu/_pad.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_showactive.py b/plotly/validators/layout/updatemenu/_showactive.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_showactive.py rename to plotly/validators/layout/updatemenu/_showactive.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_templateitemname.py b/plotly/validators/layout/updatemenu/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_templateitemname.py rename to plotly/validators/layout/updatemenu/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_type.py b/plotly/validators/layout/updatemenu/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_type.py rename to plotly/validators/layout/updatemenu/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_visible.py b/plotly/validators/layout/updatemenu/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_visible.py rename to plotly/validators/layout/updatemenu/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_x.py b/plotly/validators/layout/updatemenu/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_x.py rename to plotly/validators/layout/updatemenu/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_xanchor.py b/plotly/validators/layout/updatemenu/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_xanchor.py rename to plotly/validators/layout/updatemenu/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_y.py b/plotly/validators/layout/updatemenu/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_y.py rename to plotly/validators/layout/updatemenu/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/_yanchor.py b/plotly/validators/layout/updatemenu/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/_yanchor.py rename to plotly/validators/layout/updatemenu/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/__init__.py b/plotly/validators/layout/updatemenu/button/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/__init__.py rename to plotly/validators/layout/updatemenu/button/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_args.py b/plotly/validators/layout/updatemenu/button/_args.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_args.py rename to plotly/validators/layout/updatemenu/button/_args.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_args2.py b/plotly/validators/layout/updatemenu/button/_args2.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_args2.py rename to plotly/validators/layout/updatemenu/button/_args2.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_execute.py b/plotly/validators/layout/updatemenu/button/_execute.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_execute.py rename to plotly/validators/layout/updatemenu/button/_execute.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_label.py b/plotly/validators/layout/updatemenu/button/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_label.py rename to plotly/validators/layout/updatemenu/button/_label.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_method.py b/plotly/validators/layout/updatemenu/button/_method.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_method.py rename to plotly/validators/layout/updatemenu/button/_method.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_name.py b/plotly/validators/layout/updatemenu/button/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_name.py rename to plotly/validators/layout/updatemenu/button/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_templateitemname.py b/plotly/validators/layout/updatemenu/button/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_templateitemname.py rename to plotly/validators/layout/updatemenu/button/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/button/_visible.py b/plotly/validators/layout/updatemenu/button/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/button/_visible.py rename to plotly/validators/layout/updatemenu/button/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/__init__.py b/plotly/validators/layout/updatemenu/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/__init__.py rename to plotly/validators/layout/updatemenu/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_color.py b/plotly/validators/layout/updatemenu/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_color.py rename to plotly/validators/layout/updatemenu/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_family.py b/plotly/validators/layout/updatemenu/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_family.py rename to plotly/validators/layout/updatemenu/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_lineposition.py b/plotly/validators/layout/updatemenu/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_lineposition.py rename to plotly/validators/layout/updatemenu/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_shadow.py b/plotly/validators/layout/updatemenu/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_shadow.py rename to plotly/validators/layout/updatemenu/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_size.py b/plotly/validators/layout/updatemenu/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_size.py rename to plotly/validators/layout/updatemenu/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_style.py b/plotly/validators/layout/updatemenu/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_style.py rename to plotly/validators/layout/updatemenu/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_textcase.py b/plotly/validators/layout/updatemenu/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_textcase.py rename to plotly/validators/layout/updatemenu/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_variant.py b/plotly/validators/layout/updatemenu/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_variant.py rename to plotly/validators/layout/updatemenu/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/font/_weight.py b/plotly/validators/layout/updatemenu/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/font/_weight.py rename to plotly/validators/layout/updatemenu/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/pad/__init__.py b/plotly/validators/layout/updatemenu/pad/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/pad/__init__.py rename to plotly/validators/layout/updatemenu/pad/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/pad/_b.py b/plotly/validators/layout/updatemenu/pad/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/pad/_b.py rename to plotly/validators/layout/updatemenu/pad/_b.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/pad/_l.py b/plotly/validators/layout/updatemenu/pad/_l.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/pad/_l.py rename to plotly/validators/layout/updatemenu/pad/_l.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/pad/_r.py b/plotly/validators/layout/updatemenu/pad/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/pad/_r.py rename to plotly/validators/layout/updatemenu/pad/_r.py diff --git a/packages/python/plotly/plotly/validators/layout/updatemenu/pad/_t.py b/plotly/validators/layout/updatemenu/pad/_t.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/updatemenu/pad/_t.py rename to plotly/validators/layout/updatemenu/pad/_t.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/__init__.py b/plotly/validators/layout/xaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/__init__.py rename to plotly/validators/layout/xaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_anchor.py b/plotly/validators/layout/xaxis/_anchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_anchor.py rename to plotly/validators/layout/xaxis/_anchor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_automargin.py b/plotly/validators/layout/xaxis/_automargin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_automargin.py rename to plotly/validators/layout/xaxis/_automargin.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_autorange.py b/plotly/validators/layout/xaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_autorange.py rename to plotly/validators/layout/xaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_autorangeoptions.py b/plotly/validators/layout/xaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_autorangeoptions.py rename to plotly/validators/layout/xaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_autotickangles.py b/plotly/validators/layout/xaxis/_autotickangles.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_autotickangles.py rename to plotly/validators/layout/xaxis/_autotickangles.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_autotypenumbers.py b/plotly/validators/layout/xaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_autotypenumbers.py rename to plotly/validators/layout/xaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_calendar.py b/plotly/validators/layout/xaxis/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_calendar.py rename to plotly/validators/layout/xaxis/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_categoryarray.py b/plotly/validators/layout/xaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_categoryarray.py rename to plotly/validators/layout/xaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_categoryarraysrc.py b/plotly/validators/layout/xaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_categoryarraysrc.py rename to plotly/validators/layout/xaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_categoryorder.py b/plotly/validators/layout/xaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_categoryorder.py rename to plotly/validators/layout/xaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_color.py b/plotly/validators/layout/xaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_color.py rename to plotly/validators/layout/xaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_constrain.py b/plotly/validators/layout/xaxis/_constrain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_constrain.py rename to plotly/validators/layout/xaxis/_constrain.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_constraintoward.py b/plotly/validators/layout/xaxis/_constraintoward.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_constraintoward.py rename to plotly/validators/layout/xaxis/_constraintoward.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_dividercolor.py b/plotly/validators/layout/xaxis/_dividercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_dividercolor.py rename to plotly/validators/layout/xaxis/_dividercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_dividerwidth.py b/plotly/validators/layout/xaxis/_dividerwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_dividerwidth.py rename to plotly/validators/layout/xaxis/_dividerwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_domain.py b/plotly/validators/layout/xaxis/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_domain.py rename to plotly/validators/layout/xaxis/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_dtick.py b/plotly/validators/layout/xaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_dtick.py rename to plotly/validators/layout/xaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_exponentformat.py b/plotly/validators/layout/xaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_exponentformat.py rename to plotly/validators/layout/xaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_fixedrange.py b/plotly/validators/layout/xaxis/_fixedrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_fixedrange.py rename to plotly/validators/layout/xaxis/_fixedrange.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_gridcolor.py b/plotly/validators/layout/xaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_gridcolor.py rename to plotly/validators/layout/xaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_griddash.py b/plotly/validators/layout/xaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_griddash.py rename to plotly/validators/layout/xaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_gridwidth.py b/plotly/validators/layout/xaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_gridwidth.py rename to plotly/validators/layout/xaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_hoverformat.py b/plotly/validators/layout/xaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_hoverformat.py rename to plotly/validators/layout/xaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_insiderange.py b/plotly/validators/layout/xaxis/_insiderange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_insiderange.py rename to plotly/validators/layout/xaxis/_insiderange.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_labelalias.py b/plotly/validators/layout/xaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_labelalias.py rename to plotly/validators/layout/xaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_layer.py b/plotly/validators/layout/xaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_layer.py rename to plotly/validators/layout/xaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_linecolor.py b/plotly/validators/layout/xaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_linecolor.py rename to plotly/validators/layout/xaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_linewidth.py b/plotly/validators/layout/xaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_linewidth.py rename to plotly/validators/layout/xaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_matches.py b/plotly/validators/layout/xaxis/_matches.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_matches.py rename to plotly/validators/layout/xaxis/_matches.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_maxallowed.py b/plotly/validators/layout/xaxis/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_maxallowed.py rename to plotly/validators/layout/xaxis/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_minallowed.py b/plotly/validators/layout/xaxis/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_minallowed.py rename to plotly/validators/layout/xaxis/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_minexponent.py b/plotly/validators/layout/xaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_minexponent.py rename to plotly/validators/layout/xaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_minor.py b/plotly/validators/layout/xaxis/_minor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_minor.py rename to plotly/validators/layout/xaxis/_minor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_mirror.py b/plotly/validators/layout/xaxis/_mirror.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_mirror.py rename to plotly/validators/layout/xaxis/_mirror.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_nticks.py b/plotly/validators/layout/xaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_nticks.py rename to plotly/validators/layout/xaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_overlaying.py b/plotly/validators/layout/xaxis/_overlaying.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_overlaying.py rename to plotly/validators/layout/xaxis/_overlaying.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_position.py b/plotly/validators/layout/xaxis/_position.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_position.py rename to plotly/validators/layout/xaxis/_position.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_range.py b/plotly/validators/layout/xaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_range.py rename to plotly/validators/layout/xaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_rangebreakdefaults.py b/plotly/validators/layout/xaxis/_rangebreakdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_rangebreakdefaults.py rename to plotly/validators/layout/xaxis/_rangebreakdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_rangebreaks.py b/plotly/validators/layout/xaxis/_rangebreaks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_rangebreaks.py rename to plotly/validators/layout/xaxis/_rangebreaks.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_rangemode.py b/plotly/validators/layout/xaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_rangemode.py rename to plotly/validators/layout/xaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_rangeselector.py b/plotly/validators/layout/xaxis/_rangeselector.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_rangeselector.py rename to plotly/validators/layout/xaxis/_rangeselector.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_rangeslider.py b/plotly/validators/layout/xaxis/_rangeslider.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_rangeslider.py rename to plotly/validators/layout/xaxis/_rangeslider.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_scaleanchor.py b/plotly/validators/layout/xaxis/_scaleanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_scaleanchor.py rename to plotly/validators/layout/xaxis/_scaleanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_scaleratio.py b/plotly/validators/layout/xaxis/_scaleratio.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_scaleratio.py rename to plotly/validators/layout/xaxis/_scaleratio.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_separatethousands.py b/plotly/validators/layout/xaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_separatethousands.py rename to plotly/validators/layout/xaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showdividers.py b/plotly/validators/layout/xaxis/_showdividers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showdividers.py rename to plotly/validators/layout/xaxis/_showdividers.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showexponent.py b/plotly/validators/layout/xaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showexponent.py rename to plotly/validators/layout/xaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showgrid.py b/plotly/validators/layout/xaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showgrid.py rename to plotly/validators/layout/xaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showline.py b/plotly/validators/layout/xaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showline.py rename to plotly/validators/layout/xaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showspikes.py b/plotly/validators/layout/xaxis/_showspikes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showspikes.py rename to plotly/validators/layout/xaxis/_showspikes.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showticklabels.py b/plotly/validators/layout/xaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showticklabels.py rename to plotly/validators/layout/xaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showtickprefix.py b/plotly/validators/layout/xaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showtickprefix.py rename to plotly/validators/layout/xaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_showticksuffix.py b/plotly/validators/layout/xaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_showticksuffix.py rename to plotly/validators/layout/xaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_side.py b/plotly/validators/layout/xaxis/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_side.py rename to plotly/validators/layout/xaxis/_side.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_spikecolor.py b/plotly/validators/layout/xaxis/_spikecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_spikecolor.py rename to plotly/validators/layout/xaxis/_spikecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_spikedash.py b/plotly/validators/layout/xaxis/_spikedash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_spikedash.py rename to plotly/validators/layout/xaxis/_spikedash.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_spikemode.py b/plotly/validators/layout/xaxis/_spikemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_spikemode.py rename to plotly/validators/layout/xaxis/_spikemode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_spikesnap.py b/plotly/validators/layout/xaxis/_spikesnap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_spikesnap.py rename to plotly/validators/layout/xaxis/_spikesnap.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_spikethickness.py b/plotly/validators/layout/xaxis/_spikethickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_spikethickness.py rename to plotly/validators/layout/xaxis/_spikethickness.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tick0.py b/plotly/validators/layout/xaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tick0.py rename to plotly/validators/layout/xaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickangle.py b/plotly/validators/layout/xaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickangle.py rename to plotly/validators/layout/xaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickcolor.py b/plotly/validators/layout/xaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickcolor.py rename to plotly/validators/layout/xaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickfont.py b/plotly/validators/layout/xaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickfont.py rename to plotly/validators/layout/xaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickformat.py b/plotly/validators/layout/xaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickformat.py rename to plotly/validators/layout/xaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickformatstopdefaults.py b/plotly/validators/layout/xaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/xaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickformatstops.py b/plotly/validators/layout/xaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickformatstops.py rename to plotly/validators/layout/xaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelindex.py b/plotly/validators/layout/xaxis/_ticklabelindex.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelindex.py rename to plotly/validators/layout/xaxis/_ticklabelindex.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelindexsrc.py b/plotly/validators/layout/xaxis/_ticklabelindexsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelindexsrc.py rename to plotly/validators/layout/xaxis/_ticklabelindexsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelmode.py b/plotly/validators/layout/xaxis/_ticklabelmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelmode.py rename to plotly/validators/layout/xaxis/_ticklabelmode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabeloverflow.py b/plotly/validators/layout/xaxis/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabeloverflow.py rename to plotly/validators/layout/xaxis/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelposition.py b/plotly/validators/layout/xaxis/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelposition.py rename to plotly/validators/layout/xaxis/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelshift.py b/plotly/validators/layout/xaxis/_ticklabelshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelshift.py rename to plotly/validators/layout/xaxis/_ticklabelshift.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelstandoff.py b/plotly/validators/layout/xaxis/_ticklabelstandoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelstandoff.py rename to plotly/validators/layout/xaxis/_ticklabelstandoff.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelstep.py b/plotly/validators/layout/xaxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklabelstep.py rename to plotly/validators/layout/xaxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticklen.py b/plotly/validators/layout/xaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticklen.py rename to plotly/validators/layout/xaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickmode.py b/plotly/validators/layout/xaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickmode.py rename to plotly/validators/layout/xaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickprefix.py b/plotly/validators/layout/xaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickprefix.py rename to plotly/validators/layout/xaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticks.py b/plotly/validators/layout/xaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticks.py rename to plotly/validators/layout/xaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickson.py b/plotly/validators/layout/xaxis/_tickson.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickson.py rename to plotly/validators/layout/xaxis/_tickson.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticksuffix.py b/plotly/validators/layout/xaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticksuffix.py rename to plotly/validators/layout/xaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticktext.py b/plotly/validators/layout/xaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticktext.py rename to plotly/validators/layout/xaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_ticktextsrc.py b/plotly/validators/layout/xaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_ticktextsrc.py rename to plotly/validators/layout/xaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickvals.py b/plotly/validators/layout/xaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickvals.py rename to plotly/validators/layout/xaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickvalssrc.py b/plotly/validators/layout/xaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickvalssrc.py rename to plotly/validators/layout/xaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_tickwidth.py b/plotly/validators/layout/xaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_tickwidth.py rename to plotly/validators/layout/xaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_title.py b/plotly/validators/layout/xaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_title.py rename to plotly/validators/layout/xaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_type.py b/plotly/validators/layout/xaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_type.py rename to plotly/validators/layout/xaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_uirevision.py b/plotly/validators/layout/xaxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_uirevision.py rename to plotly/validators/layout/xaxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_visible.py b/plotly/validators/layout/xaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_visible.py rename to plotly/validators/layout/xaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_zeroline.py b/plotly/validators/layout/xaxis/_zeroline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_zeroline.py rename to plotly/validators/layout/xaxis/_zeroline.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_zerolinecolor.py b/plotly/validators/layout/xaxis/_zerolinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_zerolinecolor.py rename to plotly/validators/layout/xaxis/_zerolinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/_zerolinewidth.py b/plotly/validators/layout/xaxis/_zerolinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/_zerolinewidth.py rename to plotly/validators/layout/xaxis/_zerolinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/__init__.py b/plotly/validators/layout/xaxis/autorangeoptions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/__init__.py rename to plotly/validators/layout/xaxis/autorangeoptions/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_clipmax.py b/plotly/validators/layout/xaxis/autorangeoptions/_clipmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_clipmax.py rename to plotly/validators/layout/xaxis/autorangeoptions/_clipmax.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_clipmin.py b/plotly/validators/layout/xaxis/autorangeoptions/_clipmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_clipmin.py rename to plotly/validators/layout/xaxis/autorangeoptions/_clipmin.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_include.py b/plotly/validators/layout/xaxis/autorangeoptions/_include.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_include.py rename to plotly/validators/layout/xaxis/autorangeoptions/_include.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_includesrc.py b/plotly/validators/layout/xaxis/autorangeoptions/_includesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_includesrc.py rename to plotly/validators/layout/xaxis/autorangeoptions/_includesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_maxallowed.py b/plotly/validators/layout/xaxis/autorangeoptions/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_maxallowed.py rename to plotly/validators/layout/xaxis/autorangeoptions/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_minallowed.py b/plotly/validators/layout/xaxis/autorangeoptions/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/autorangeoptions/_minallowed.py rename to plotly/validators/layout/xaxis/autorangeoptions/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/__init__.py b/plotly/validators/layout/xaxis/minor/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/__init__.py rename to plotly/validators/layout/xaxis/minor/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_dtick.py b/plotly/validators/layout/xaxis/minor/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_dtick.py rename to plotly/validators/layout/xaxis/minor/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_gridcolor.py b/plotly/validators/layout/xaxis/minor/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_gridcolor.py rename to plotly/validators/layout/xaxis/minor/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_griddash.py b/plotly/validators/layout/xaxis/minor/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_griddash.py rename to plotly/validators/layout/xaxis/minor/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_gridwidth.py b/plotly/validators/layout/xaxis/minor/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_gridwidth.py rename to plotly/validators/layout/xaxis/minor/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_nticks.py b/plotly/validators/layout/xaxis/minor/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_nticks.py rename to plotly/validators/layout/xaxis/minor/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_showgrid.py b/plotly/validators/layout/xaxis/minor/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_showgrid.py rename to plotly/validators/layout/xaxis/minor/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_tick0.py b/plotly/validators/layout/xaxis/minor/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_tick0.py rename to plotly/validators/layout/xaxis/minor/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickcolor.py b/plotly/validators/layout/xaxis/minor/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickcolor.py rename to plotly/validators/layout/xaxis/minor/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_ticklen.py b/plotly/validators/layout/xaxis/minor/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_ticklen.py rename to plotly/validators/layout/xaxis/minor/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickmode.py b/plotly/validators/layout/xaxis/minor/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickmode.py rename to plotly/validators/layout/xaxis/minor/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_ticks.py b/plotly/validators/layout/xaxis/minor/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_ticks.py rename to plotly/validators/layout/xaxis/minor/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickvals.py b/plotly/validators/layout/xaxis/minor/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickvals.py rename to plotly/validators/layout/xaxis/minor/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickvalssrc.py b/plotly/validators/layout/xaxis/minor/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickvalssrc.py rename to plotly/validators/layout/xaxis/minor/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickwidth.py b/plotly/validators/layout/xaxis/minor/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/minor/_tickwidth.py rename to plotly/validators/layout/xaxis/minor/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/__init__.py b/plotly/validators/layout/xaxis/rangebreak/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/__init__.py rename to plotly/validators/layout/xaxis/rangebreak/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_bounds.py b/plotly/validators/layout/xaxis/rangebreak/_bounds.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_bounds.py rename to plotly/validators/layout/xaxis/rangebreak/_bounds.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_dvalue.py b/plotly/validators/layout/xaxis/rangebreak/_dvalue.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_dvalue.py rename to plotly/validators/layout/xaxis/rangebreak/_dvalue.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_enabled.py b/plotly/validators/layout/xaxis/rangebreak/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_enabled.py rename to plotly/validators/layout/xaxis/rangebreak/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_name.py b/plotly/validators/layout/xaxis/rangebreak/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_name.py rename to plotly/validators/layout/xaxis/rangebreak/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_pattern.py b/plotly/validators/layout/xaxis/rangebreak/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_pattern.py rename to plotly/validators/layout/xaxis/rangebreak/_pattern.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_templateitemname.py b/plotly/validators/layout/xaxis/rangebreak/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_templateitemname.py rename to plotly/validators/layout/xaxis/rangebreak/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_values.py b/plotly/validators/layout/xaxis/rangebreak/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangebreak/_values.py rename to plotly/validators/layout/xaxis/rangebreak/_values.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/__init__.py b/plotly/validators/layout/xaxis/rangeselector/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/__init__.py rename to plotly/validators/layout/xaxis/rangeselector/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_activecolor.py b/plotly/validators/layout/xaxis/rangeselector/_activecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_activecolor.py rename to plotly/validators/layout/xaxis/rangeselector/_activecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_bgcolor.py b/plotly/validators/layout/xaxis/rangeselector/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_bgcolor.py rename to plotly/validators/layout/xaxis/rangeselector/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_bordercolor.py b/plotly/validators/layout/xaxis/rangeselector/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_bordercolor.py rename to plotly/validators/layout/xaxis/rangeselector/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_borderwidth.py b/plotly/validators/layout/xaxis/rangeselector/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_borderwidth.py rename to plotly/validators/layout/xaxis/rangeselector/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py b/plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py rename to plotly/validators/layout/xaxis/rangeselector/_buttondefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_buttons.py b/plotly/validators/layout/xaxis/rangeselector/_buttons.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_buttons.py rename to plotly/validators/layout/xaxis/rangeselector/_buttons.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_font.py b/plotly/validators/layout/xaxis/rangeselector/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_font.py rename to plotly/validators/layout/xaxis/rangeselector/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_visible.py b/plotly/validators/layout/xaxis/rangeselector/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_visible.py rename to plotly/validators/layout/xaxis/rangeselector/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_x.py b/plotly/validators/layout/xaxis/rangeselector/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_x.py rename to plotly/validators/layout/xaxis/rangeselector/_x.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_xanchor.py b/plotly/validators/layout/xaxis/rangeselector/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_xanchor.py rename to plotly/validators/layout/xaxis/rangeselector/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_y.py b/plotly/validators/layout/xaxis/rangeselector/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_y.py rename to plotly/validators/layout/xaxis/rangeselector/_y.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_yanchor.py b/plotly/validators/layout/xaxis/rangeselector/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/_yanchor.py rename to plotly/validators/layout/xaxis/rangeselector/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/__init__.py b/plotly/validators/layout/xaxis/rangeselector/button/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/__init__.py rename to plotly/validators/layout/xaxis/rangeselector/button/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_count.py b/plotly/validators/layout/xaxis/rangeselector/button/_count.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_count.py rename to plotly/validators/layout/xaxis/rangeselector/button/_count.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_label.py b/plotly/validators/layout/xaxis/rangeselector/button/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_label.py rename to plotly/validators/layout/xaxis/rangeselector/button/_label.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_name.py b/plotly/validators/layout/xaxis/rangeselector/button/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_name.py rename to plotly/validators/layout/xaxis/rangeselector/button/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_step.py b/plotly/validators/layout/xaxis/rangeselector/button/_step.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_step.py rename to plotly/validators/layout/xaxis/rangeselector/button/_step.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_stepmode.py b/plotly/validators/layout/xaxis/rangeselector/button/_stepmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_stepmode.py rename to plotly/validators/layout/xaxis/rangeselector/button/_stepmode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_templateitemname.py b/plotly/validators/layout/xaxis/rangeselector/button/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_templateitemname.py rename to plotly/validators/layout/xaxis/rangeselector/button/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_visible.py b/plotly/validators/layout/xaxis/rangeselector/button/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/button/_visible.py rename to plotly/validators/layout/xaxis/rangeselector/button/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/__init__.py b/plotly/validators/layout/xaxis/rangeselector/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/__init__.py rename to plotly/validators/layout/xaxis/rangeselector/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_color.py b/plotly/validators/layout/xaxis/rangeselector/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_color.py rename to plotly/validators/layout/xaxis/rangeselector/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_family.py b/plotly/validators/layout/xaxis/rangeselector/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_family.py rename to plotly/validators/layout/xaxis/rangeselector/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_lineposition.py b/plotly/validators/layout/xaxis/rangeselector/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_lineposition.py rename to plotly/validators/layout/xaxis/rangeselector/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_shadow.py b/plotly/validators/layout/xaxis/rangeselector/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_shadow.py rename to plotly/validators/layout/xaxis/rangeselector/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_size.py b/plotly/validators/layout/xaxis/rangeselector/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_size.py rename to plotly/validators/layout/xaxis/rangeselector/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_style.py b/plotly/validators/layout/xaxis/rangeselector/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_style.py rename to plotly/validators/layout/xaxis/rangeselector/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_textcase.py b/plotly/validators/layout/xaxis/rangeselector/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_textcase.py rename to plotly/validators/layout/xaxis/rangeselector/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_variant.py b/plotly/validators/layout/xaxis/rangeselector/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_variant.py rename to plotly/validators/layout/xaxis/rangeselector/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_weight.py b/plotly/validators/layout/xaxis/rangeselector/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeselector/font/_weight.py rename to plotly/validators/layout/xaxis/rangeselector/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/__init__.py b/plotly/validators/layout/xaxis/rangeslider/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/__init__.py rename to plotly/validators/layout/xaxis/rangeslider/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_autorange.py b/plotly/validators/layout/xaxis/rangeslider/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_autorange.py rename to plotly/validators/layout/xaxis/rangeslider/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_bgcolor.py b/plotly/validators/layout/xaxis/rangeslider/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_bgcolor.py rename to plotly/validators/layout/xaxis/rangeslider/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_bordercolor.py b/plotly/validators/layout/xaxis/rangeslider/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_bordercolor.py rename to plotly/validators/layout/xaxis/rangeslider/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_borderwidth.py b/plotly/validators/layout/xaxis/rangeslider/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_borderwidth.py rename to plotly/validators/layout/xaxis/rangeslider/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_range.py b/plotly/validators/layout/xaxis/rangeslider/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_range.py rename to plotly/validators/layout/xaxis/rangeslider/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_thickness.py b/plotly/validators/layout/xaxis/rangeslider/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_thickness.py rename to plotly/validators/layout/xaxis/rangeslider/_thickness.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_visible.py b/plotly/validators/layout/xaxis/rangeslider/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_visible.py rename to plotly/validators/layout/xaxis/rangeslider/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_yaxis.py b/plotly/validators/layout/xaxis/rangeslider/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/_yaxis.py rename to plotly/validators/layout/xaxis/rangeslider/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/yaxis/__init__.py b/plotly/validators/layout/xaxis/rangeslider/yaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/yaxis/__init__.py rename to plotly/validators/layout/xaxis/rangeslider/yaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/yaxis/_range.py b/plotly/validators/layout/xaxis/rangeslider/yaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/yaxis/_range.py rename to plotly/validators/layout/xaxis/rangeslider/yaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/yaxis/_rangemode.py b/plotly/validators/layout/xaxis/rangeslider/yaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/rangeslider/yaxis/_rangemode.py rename to plotly/validators/layout/xaxis/rangeslider/yaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/__init__.py b/plotly/validators/layout/xaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/__init__.py rename to plotly/validators/layout/xaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_color.py b/plotly/validators/layout/xaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_color.py rename to plotly/validators/layout/xaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_family.py b/plotly/validators/layout/xaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_family.py rename to plotly/validators/layout/xaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_lineposition.py b/plotly/validators/layout/xaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_lineposition.py rename to plotly/validators/layout/xaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_shadow.py b/plotly/validators/layout/xaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_shadow.py rename to plotly/validators/layout/xaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_size.py b/plotly/validators/layout/xaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_size.py rename to plotly/validators/layout/xaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_style.py b/plotly/validators/layout/xaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_style.py rename to plotly/validators/layout/xaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_textcase.py b/plotly/validators/layout/xaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_textcase.py rename to plotly/validators/layout/xaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_variant.py b/plotly/validators/layout/xaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_variant.py rename to plotly/validators/layout/xaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_weight.py b/plotly/validators/layout/xaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickfont/_weight.py rename to plotly/validators/layout/xaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/__init__.py b/plotly/validators/layout/xaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/__init__.py rename to plotly/validators/layout/xaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/xaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/xaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_enabled.py b/plotly/validators/layout/xaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/xaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_name.py b/plotly/validators/layout/xaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_name.py rename to plotly/validators/layout/xaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/xaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/xaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_value.py b/plotly/validators/layout/xaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/tickformatstop/_value.py rename to plotly/validators/layout/xaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/__init__.py b/plotly/validators/layout/xaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/__init__.py rename to plotly/validators/layout/xaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/_font.py b/plotly/validators/layout/xaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/_font.py rename to plotly/validators/layout/xaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/_standoff.py b/plotly/validators/layout/xaxis/title/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/_standoff.py rename to plotly/validators/layout/xaxis/title/_standoff.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/_text.py b/plotly/validators/layout/xaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/_text.py rename to plotly/validators/layout/xaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/__init__.py b/plotly/validators/layout/xaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/__init__.py rename to plotly/validators/layout/xaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_color.py b/plotly/validators/layout/xaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_color.py rename to plotly/validators/layout/xaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_family.py b/plotly/validators/layout/xaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_family.py rename to plotly/validators/layout/xaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_lineposition.py b/plotly/validators/layout/xaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_lineposition.py rename to plotly/validators/layout/xaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_shadow.py b/plotly/validators/layout/xaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_shadow.py rename to plotly/validators/layout/xaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_size.py b/plotly/validators/layout/xaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_size.py rename to plotly/validators/layout/xaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_style.py b/plotly/validators/layout/xaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_style.py rename to plotly/validators/layout/xaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_textcase.py b/plotly/validators/layout/xaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_textcase.py rename to plotly/validators/layout/xaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_variant.py b/plotly/validators/layout/xaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_variant.py rename to plotly/validators/layout/xaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/xaxis/title/font/_weight.py b/plotly/validators/layout/xaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/xaxis/title/font/_weight.py rename to plotly/validators/layout/xaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/__init__.py b/plotly/validators/layout/yaxis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/__init__.py rename to plotly/validators/layout/yaxis/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_anchor.py b/plotly/validators/layout/yaxis/_anchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_anchor.py rename to plotly/validators/layout/yaxis/_anchor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_automargin.py b/plotly/validators/layout/yaxis/_automargin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_automargin.py rename to plotly/validators/layout/yaxis/_automargin.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_autorange.py b/plotly/validators/layout/yaxis/_autorange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_autorange.py rename to plotly/validators/layout/yaxis/_autorange.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_autorangeoptions.py b/plotly/validators/layout/yaxis/_autorangeoptions.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_autorangeoptions.py rename to plotly/validators/layout/yaxis/_autorangeoptions.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_autoshift.py b/plotly/validators/layout/yaxis/_autoshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_autoshift.py rename to plotly/validators/layout/yaxis/_autoshift.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_autotickangles.py b/plotly/validators/layout/yaxis/_autotickangles.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_autotickangles.py rename to plotly/validators/layout/yaxis/_autotickangles.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_autotypenumbers.py b/plotly/validators/layout/yaxis/_autotypenumbers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_autotypenumbers.py rename to plotly/validators/layout/yaxis/_autotypenumbers.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_calendar.py b/plotly/validators/layout/yaxis/_calendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_calendar.py rename to plotly/validators/layout/yaxis/_calendar.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_categoryarray.py b/plotly/validators/layout/yaxis/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_categoryarray.py rename to plotly/validators/layout/yaxis/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_categoryarraysrc.py b/plotly/validators/layout/yaxis/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_categoryarraysrc.py rename to plotly/validators/layout/yaxis/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_categoryorder.py b/plotly/validators/layout/yaxis/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_categoryorder.py rename to plotly/validators/layout/yaxis/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_color.py b/plotly/validators/layout/yaxis/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_color.py rename to plotly/validators/layout/yaxis/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_constrain.py b/plotly/validators/layout/yaxis/_constrain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_constrain.py rename to plotly/validators/layout/yaxis/_constrain.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_constraintoward.py b/plotly/validators/layout/yaxis/_constraintoward.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_constraintoward.py rename to plotly/validators/layout/yaxis/_constraintoward.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_dividercolor.py b/plotly/validators/layout/yaxis/_dividercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_dividercolor.py rename to plotly/validators/layout/yaxis/_dividercolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_dividerwidth.py b/plotly/validators/layout/yaxis/_dividerwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_dividerwidth.py rename to plotly/validators/layout/yaxis/_dividerwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_domain.py b/plotly/validators/layout/yaxis/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_domain.py rename to plotly/validators/layout/yaxis/_domain.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_dtick.py b/plotly/validators/layout/yaxis/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_dtick.py rename to plotly/validators/layout/yaxis/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_exponentformat.py b/plotly/validators/layout/yaxis/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_exponentformat.py rename to plotly/validators/layout/yaxis/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_fixedrange.py b/plotly/validators/layout/yaxis/_fixedrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_fixedrange.py rename to plotly/validators/layout/yaxis/_fixedrange.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_gridcolor.py b/plotly/validators/layout/yaxis/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_gridcolor.py rename to plotly/validators/layout/yaxis/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_griddash.py b/plotly/validators/layout/yaxis/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_griddash.py rename to plotly/validators/layout/yaxis/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_gridwidth.py b/plotly/validators/layout/yaxis/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_gridwidth.py rename to plotly/validators/layout/yaxis/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_hoverformat.py b/plotly/validators/layout/yaxis/_hoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_hoverformat.py rename to plotly/validators/layout/yaxis/_hoverformat.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_insiderange.py b/plotly/validators/layout/yaxis/_insiderange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_insiderange.py rename to plotly/validators/layout/yaxis/_insiderange.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_labelalias.py b/plotly/validators/layout/yaxis/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_labelalias.py rename to plotly/validators/layout/yaxis/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_layer.py b/plotly/validators/layout/yaxis/_layer.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_layer.py rename to plotly/validators/layout/yaxis/_layer.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_linecolor.py b/plotly/validators/layout/yaxis/_linecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_linecolor.py rename to plotly/validators/layout/yaxis/_linecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_linewidth.py b/plotly/validators/layout/yaxis/_linewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_linewidth.py rename to plotly/validators/layout/yaxis/_linewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_matches.py b/plotly/validators/layout/yaxis/_matches.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_matches.py rename to plotly/validators/layout/yaxis/_matches.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_maxallowed.py b/plotly/validators/layout/yaxis/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_maxallowed.py rename to plotly/validators/layout/yaxis/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_minallowed.py b/plotly/validators/layout/yaxis/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_minallowed.py rename to plotly/validators/layout/yaxis/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_minexponent.py b/plotly/validators/layout/yaxis/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_minexponent.py rename to plotly/validators/layout/yaxis/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_minor.py b/plotly/validators/layout/yaxis/_minor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_minor.py rename to plotly/validators/layout/yaxis/_minor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_mirror.py b/plotly/validators/layout/yaxis/_mirror.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_mirror.py rename to plotly/validators/layout/yaxis/_mirror.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_nticks.py b/plotly/validators/layout/yaxis/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_nticks.py rename to plotly/validators/layout/yaxis/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_overlaying.py b/plotly/validators/layout/yaxis/_overlaying.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_overlaying.py rename to plotly/validators/layout/yaxis/_overlaying.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_position.py b/plotly/validators/layout/yaxis/_position.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_position.py rename to plotly/validators/layout/yaxis/_position.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_range.py b/plotly/validators/layout/yaxis/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_range.py rename to plotly/validators/layout/yaxis/_range.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_rangebreakdefaults.py b/plotly/validators/layout/yaxis/_rangebreakdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_rangebreakdefaults.py rename to plotly/validators/layout/yaxis/_rangebreakdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_rangebreaks.py b/plotly/validators/layout/yaxis/_rangebreaks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_rangebreaks.py rename to plotly/validators/layout/yaxis/_rangebreaks.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_rangemode.py b/plotly/validators/layout/yaxis/_rangemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_rangemode.py rename to plotly/validators/layout/yaxis/_rangemode.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_scaleanchor.py b/plotly/validators/layout/yaxis/_scaleanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_scaleanchor.py rename to plotly/validators/layout/yaxis/_scaleanchor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_scaleratio.py b/plotly/validators/layout/yaxis/_scaleratio.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_scaleratio.py rename to plotly/validators/layout/yaxis/_scaleratio.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_separatethousands.py b/plotly/validators/layout/yaxis/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_separatethousands.py rename to plotly/validators/layout/yaxis/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_shift.py b/plotly/validators/layout/yaxis/_shift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_shift.py rename to plotly/validators/layout/yaxis/_shift.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showdividers.py b/plotly/validators/layout/yaxis/_showdividers.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showdividers.py rename to plotly/validators/layout/yaxis/_showdividers.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showexponent.py b/plotly/validators/layout/yaxis/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showexponent.py rename to plotly/validators/layout/yaxis/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showgrid.py b/plotly/validators/layout/yaxis/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showgrid.py rename to plotly/validators/layout/yaxis/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showline.py b/plotly/validators/layout/yaxis/_showline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showline.py rename to plotly/validators/layout/yaxis/_showline.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showspikes.py b/plotly/validators/layout/yaxis/_showspikes.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showspikes.py rename to plotly/validators/layout/yaxis/_showspikes.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showticklabels.py b/plotly/validators/layout/yaxis/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showticklabels.py rename to plotly/validators/layout/yaxis/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showtickprefix.py b/plotly/validators/layout/yaxis/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showtickprefix.py rename to plotly/validators/layout/yaxis/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_showticksuffix.py b/plotly/validators/layout/yaxis/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_showticksuffix.py rename to plotly/validators/layout/yaxis/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_side.py b/plotly/validators/layout/yaxis/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_side.py rename to plotly/validators/layout/yaxis/_side.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_spikecolor.py b/plotly/validators/layout/yaxis/_spikecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_spikecolor.py rename to plotly/validators/layout/yaxis/_spikecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_spikedash.py b/plotly/validators/layout/yaxis/_spikedash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_spikedash.py rename to plotly/validators/layout/yaxis/_spikedash.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_spikemode.py b/plotly/validators/layout/yaxis/_spikemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_spikemode.py rename to plotly/validators/layout/yaxis/_spikemode.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_spikesnap.py b/plotly/validators/layout/yaxis/_spikesnap.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_spikesnap.py rename to plotly/validators/layout/yaxis/_spikesnap.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_spikethickness.py b/plotly/validators/layout/yaxis/_spikethickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_spikethickness.py rename to plotly/validators/layout/yaxis/_spikethickness.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tick0.py b/plotly/validators/layout/yaxis/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tick0.py rename to plotly/validators/layout/yaxis/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickangle.py b/plotly/validators/layout/yaxis/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickangle.py rename to plotly/validators/layout/yaxis/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickcolor.py b/plotly/validators/layout/yaxis/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickcolor.py rename to plotly/validators/layout/yaxis/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickfont.py b/plotly/validators/layout/yaxis/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickfont.py rename to plotly/validators/layout/yaxis/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickformat.py b/plotly/validators/layout/yaxis/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickformat.py rename to plotly/validators/layout/yaxis/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickformatstopdefaults.py b/plotly/validators/layout/yaxis/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickformatstopdefaults.py rename to plotly/validators/layout/yaxis/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickformatstops.py b/plotly/validators/layout/yaxis/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickformatstops.py rename to plotly/validators/layout/yaxis/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelindex.py b/plotly/validators/layout/yaxis/_ticklabelindex.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelindex.py rename to plotly/validators/layout/yaxis/_ticklabelindex.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelindexsrc.py b/plotly/validators/layout/yaxis/_ticklabelindexsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelindexsrc.py rename to plotly/validators/layout/yaxis/_ticklabelindexsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelmode.py b/plotly/validators/layout/yaxis/_ticklabelmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelmode.py rename to plotly/validators/layout/yaxis/_ticklabelmode.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabeloverflow.py b/plotly/validators/layout/yaxis/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabeloverflow.py rename to plotly/validators/layout/yaxis/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelposition.py b/plotly/validators/layout/yaxis/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelposition.py rename to plotly/validators/layout/yaxis/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelshift.py b/plotly/validators/layout/yaxis/_ticklabelshift.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelshift.py rename to plotly/validators/layout/yaxis/_ticklabelshift.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelstandoff.py b/plotly/validators/layout/yaxis/_ticklabelstandoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelstandoff.py rename to plotly/validators/layout/yaxis/_ticklabelstandoff.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelstep.py b/plotly/validators/layout/yaxis/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklabelstep.py rename to plotly/validators/layout/yaxis/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticklen.py b/plotly/validators/layout/yaxis/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticklen.py rename to plotly/validators/layout/yaxis/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickmode.py b/plotly/validators/layout/yaxis/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickmode.py rename to plotly/validators/layout/yaxis/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickprefix.py b/plotly/validators/layout/yaxis/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickprefix.py rename to plotly/validators/layout/yaxis/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticks.py b/plotly/validators/layout/yaxis/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticks.py rename to plotly/validators/layout/yaxis/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickson.py b/plotly/validators/layout/yaxis/_tickson.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickson.py rename to plotly/validators/layout/yaxis/_tickson.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticksuffix.py b/plotly/validators/layout/yaxis/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticksuffix.py rename to plotly/validators/layout/yaxis/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticktext.py b/plotly/validators/layout/yaxis/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticktext.py rename to plotly/validators/layout/yaxis/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_ticktextsrc.py b/plotly/validators/layout/yaxis/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_ticktextsrc.py rename to plotly/validators/layout/yaxis/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickvals.py b/plotly/validators/layout/yaxis/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickvals.py rename to plotly/validators/layout/yaxis/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickvalssrc.py b/plotly/validators/layout/yaxis/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickvalssrc.py rename to plotly/validators/layout/yaxis/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_tickwidth.py b/plotly/validators/layout/yaxis/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_tickwidth.py rename to plotly/validators/layout/yaxis/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_title.py b/plotly/validators/layout/yaxis/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_title.py rename to plotly/validators/layout/yaxis/_title.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_type.py b/plotly/validators/layout/yaxis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_type.py rename to plotly/validators/layout/yaxis/_type.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_uirevision.py b/plotly/validators/layout/yaxis/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_uirevision.py rename to plotly/validators/layout/yaxis/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_visible.py b/plotly/validators/layout/yaxis/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_visible.py rename to plotly/validators/layout/yaxis/_visible.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_zeroline.py b/plotly/validators/layout/yaxis/_zeroline.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_zeroline.py rename to plotly/validators/layout/yaxis/_zeroline.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_zerolinecolor.py b/plotly/validators/layout/yaxis/_zerolinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_zerolinecolor.py rename to plotly/validators/layout/yaxis/_zerolinecolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/_zerolinewidth.py b/plotly/validators/layout/yaxis/_zerolinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/_zerolinewidth.py rename to plotly/validators/layout/yaxis/_zerolinewidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/__init__.py b/plotly/validators/layout/yaxis/autorangeoptions/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/__init__.py rename to plotly/validators/layout/yaxis/autorangeoptions/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_clipmax.py b/plotly/validators/layout/yaxis/autorangeoptions/_clipmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_clipmax.py rename to plotly/validators/layout/yaxis/autorangeoptions/_clipmax.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_clipmin.py b/plotly/validators/layout/yaxis/autorangeoptions/_clipmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_clipmin.py rename to plotly/validators/layout/yaxis/autorangeoptions/_clipmin.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_include.py b/plotly/validators/layout/yaxis/autorangeoptions/_include.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_include.py rename to plotly/validators/layout/yaxis/autorangeoptions/_include.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_includesrc.py b/plotly/validators/layout/yaxis/autorangeoptions/_includesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_includesrc.py rename to plotly/validators/layout/yaxis/autorangeoptions/_includesrc.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_maxallowed.py b/plotly/validators/layout/yaxis/autorangeoptions/_maxallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_maxallowed.py rename to plotly/validators/layout/yaxis/autorangeoptions/_maxallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_minallowed.py b/plotly/validators/layout/yaxis/autorangeoptions/_minallowed.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/autorangeoptions/_minallowed.py rename to plotly/validators/layout/yaxis/autorangeoptions/_minallowed.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/__init__.py b/plotly/validators/layout/yaxis/minor/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/__init__.py rename to plotly/validators/layout/yaxis/minor/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_dtick.py b/plotly/validators/layout/yaxis/minor/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_dtick.py rename to plotly/validators/layout/yaxis/minor/_dtick.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_gridcolor.py b/plotly/validators/layout/yaxis/minor/_gridcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_gridcolor.py rename to plotly/validators/layout/yaxis/minor/_gridcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_griddash.py b/plotly/validators/layout/yaxis/minor/_griddash.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_griddash.py rename to plotly/validators/layout/yaxis/minor/_griddash.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_gridwidth.py b/plotly/validators/layout/yaxis/minor/_gridwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_gridwidth.py rename to plotly/validators/layout/yaxis/minor/_gridwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_nticks.py b/plotly/validators/layout/yaxis/minor/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_nticks.py rename to plotly/validators/layout/yaxis/minor/_nticks.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_showgrid.py b/plotly/validators/layout/yaxis/minor/_showgrid.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_showgrid.py rename to plotly/validators/layout/yaxis/minor/_showgrid.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_tick0.py b/plotly/validators/layout/yaxis/minor/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_tick0.py rename to plotly/validators/layout/yaxis/minor/_tick0.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickcolor.py b/plotly/validators/layout/yaxis/minor/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickcolor.py rename to plotly/validators/layout/yaxis/minor/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_ticklen.py b/plotly/validators/layout/yaxis/minor/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_ticklen.py rename to plotly/validators/layout/yaxis/minor/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickmode.py b/plotly/validators/layout/yaxis/minor/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickmode.py rename to plotly/validators/layout/yaxis/minor/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_ticks.py b/plotly/validators/layout/yaxis/minor/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_ticks.py rename to plotly/validators/layout/yaxis/minor/_ticks.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickvals.py b/plotly/validators/layout/yaxis/minor/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickvals.py rename to plotly/validators/layout/yaxis/minor/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickvalssrc.py b/plotly/validators/layout/yaxis/minor/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickvalssrc.py rename to plotly/validators/layout/yaxis/minor/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickwidth.py b/plotly/validators/layout/yaxis/minor/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/minor/_tickwidth.py rename to plotly/validators/layout/yaxis/minor/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/__init__.py b/plotly/validators/layout/yaxis/rangebreak/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/__init__.py rename to plotly/validators/layout/yaxis/rangebreak/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_bounds.py b/plotly/validators/layout/yaxis/rangebreak/_bounds.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_bounds.py rename to plotly/validators/layout/yaxis/rangebreak/_bounds.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_dvalue.py b/plotly/validators/layout/yaxis/rangebreak/_dvalue.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_dvalue.py rename to plotly/validators/layout/yaxis/rangebreak/_dvalue.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_enabled.py b/plotly/validators/layout/yaxis/rangebreak/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_enabled.py rename to plotly/validators/layout/yaxis/rangebreak/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_name.py b/plotly/validators/layout/yaxis/rangebreak/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_name.py rename to plotly/validators/layout/yaxis/rangebreak/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_pattern.py b/plotly/validators/layout/yaxis/rangebreak/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_pattern.py rename to plotly/validators/layout/yaxis/rangebreak/_pattern.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_templateitemname.py b/plotly/validators/layout/yaxis/rangebreak/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_templateitemname.py rename to plotly/validators/layout/yaxis/rangebreak/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_values.py b/plotly/validators/layout/yaxis/rangebreak/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/rangebreak/_values.py rename to plotly/validators/layout/yaxis/rangebreak/_values.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/__init__.py b/plotly/validators/layout/yaxis/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/__init__.py rename to plotly/validators/layout/yaxis/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_color.py b/plotly/validators/layout/yaxis/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_color.py rename to plotly/validators/layout/yaxis/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_family.py b/plotly/validators/layout/yaxis/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_family.py rename to plotly/validators/layout/yaxis/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_lineposition.py b/plotly/validators/layout/yaxis/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_lineposition.py rename to plotly/validators/layout/yaxis/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_shadow.py b/plotly/validators/layout/yaxis/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_shadow.py rename to plotly/validators/layout/yaxis/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_size.py b/plotly/validators/layout/yaxis/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_size.py rename to plotly/validators/layout/yaxis/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_style.py b/plotly/validators/layout/yaxis/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_style.py rename to plotly/validators/layout/yaxis/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_textcase.py b/plotly/validators/layout/yaxis/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_textcase.py rename to plotly/validators/layout/yaxis/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_variant.py b/plotly/validators/layout/yaxis/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_variant.py rename to plotly/validators/layout/yaxis/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_weight.py b/plotly/validators/layout/yaxis/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickfont/_weight.py rename to plotly/validators/layout/yaxis/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/__init__.py b/plotly/validators/layout/yaxis/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/__init__.py rename to plotly/validators/layout/yaxis/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_dtickrange.py b/plotly/validators/layout/yaxis/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_dtickrange.py rename to plotly/validators/layout/yaxis/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_enabled.py b/plotly/validators/layout/yaxis/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_enabled.py rename to plotly/validators/layout/yaxis/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_name.py b/plotly/validators/layout/yaxis/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_name.py rename to plotly/validators/layout/yaxis/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_templateitemname.py b/plotly/validators/layout/yaxis/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_templateitemname.py rename to plotly/validators/layout/yaxis/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_value.py b/plotly/validators/layout/yaxis/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/tickformatstop/_value.py rename to plotly/validators/layout/yaxis/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/__init__.py b/plotly/validators/layout/yaxis/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/__init__.py rename to plotly/validators/layout/yaxis/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/_font.py b/plotly/validators/layout/yaxis/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/_font.py rename to plotly/validators/layout/yaxis/title/_font.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/_standoff.py b/plotly/validators/layout/yaxis/title/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/_standoff.py rename to plotly/validators/layout/yaxis/title/_standoff.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/_text.py b/plotly/validators/layout/yaxis/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/_text.py rename to plotly/validators/layout/yaxis/title/_text.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/__init__.py b/plotly/validators/layout/yaxis/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/__init__.py rename to plotly/validators/layout/yaxis/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_color.py b/plotly/validators/layout/yaxis/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_color.py rename to plotly/validators/layout/yaxis/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_family.py b/plotly/validators/layout/yaxis/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_family.py rename to plotly/validators/layout/yaxis/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_lineposition.py b/plotly/validators/layout/yaxis/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_lineposition.py rename to plotly/validators/layout/yaxis/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_shadow.py b/plotly/validators/layout/yaxis/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_shadow.py rename to plotly/validators/layout/yaxis/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_size.py b/plotly/validators/layout/yaxis/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_size.py rename to plotly/validators/layout/yaxis/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_style.py b/plotly/validators/layout/yaxis/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_style.py rename to plotly/validators/layout/yaxis/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_textcase.py b/plotly/validators/layout/yaxis/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_textcase.py rename to plotly/validators/layout/yaxis/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_variant.py b/plotly/validators/layout/yaxis/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_variant.py rename to plotly/validators/layout/yaxis/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/layout/yaxis/title/font/_weight.py b/plotly/validators/layout/yaxis/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/layout/yaxis/title/font/_weight.py rename to plotly/validators/layout/yaxis/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/__init__.py b/plotly/validators/mesh3d/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/__init__.py rename to plotly/validators/mesh3d/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_alphahull.py b/plotly/validators/mesh3d/_alphahull.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_alphahull.py rename to plotly/validators/mesh3d/_alphahull.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_autocolorscale.py b/plotly/validators/mesh3d/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_autocolorscale.py rename to plotly/validators/mesh3d/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_cauto.py b/plotly/validators/mesh3d/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_cauto.py rename to plotly/validators/mesh3d/_cauto.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_cmax.py b/plotly/validators/mesh3d/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_cmax.py rename to plotly/validators/mesh3d/_cmax.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_cmid.py b/plotly/validators/mesh3d/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_cmid.py rename to plotly/validators/mesh3d/_cmid.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_cmin.py b/plotly/validators/mesh3d/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_cmin.py rename to plotly/validators/mesh3d/_cmin.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_color.py b/plotly/validators/mesh3d/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_color.py rename to plotly/validators/mesh3d/_color.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_coloraxis.py b/plotly/validators/mesh3d/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_coloraxis.py rename to plotly/validators/mesh3d/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_colorbar.py b/plotly/validators/mesh3d/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_colorbar.py rename to plotly/validators/mesh3d/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_colorscale.py b/plotly/validators/mesh3d/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_colorscale.py rename to plotly/validators/mesh3d/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_contour.py b/plotly/validators/mesh3d/_contour.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_contour.py rename to plotly/validators/mesh3d/_contour.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_customdata.py b/plotly/validators/mesh3d/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_customdata.py rename to plotly/validators/mesh3d/_customdata.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_customdatasrc.py b/plotly/validators/mesh3d/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_customdatasrc.py rename to plotly/validators/mesh3d/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_delaunayaxis.py b/plotly/validators/mesh3d/_delaunayaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_delaunayaxis.py rename to plotly/validators/mesh3d/_delaunayaxis.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_facecolor.py b/plotly/validators/mesh3d/_facecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_facecolor.py rename to plotly/validators/mesh3d/_facecolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_facecolorsrc.py b/plotly/validators/mesh3d/_facecolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_facecolorsrc.py rename to plotly/validators/mesh3d/_facecolorsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_flatshading.py b/plotly/validators/mesh3d/_flatshading.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_flatshading.py rename to plotly/validators/mesh3d/_flatshading.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hoverinfo.py b/plotly/validators/mesh3d/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hoverinfo.py rename to plotly/validators/mesh3d/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hoverinfosrc.py b/plotly/validators/mesh3d/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hoverinfosrc.py rename to plotly/validators/mesh3d/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hoverlabel.py b/plotly/validators/mesh3d/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hoverlabel.py rename to plotly/validators/mesh3d/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hovertemplate.py b/plotly/validators/mesh3d/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hovertemplate.py rename to plotly/validators/mesh3d/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hovertemplatesrc.py b/plotly/validators/mesh3d/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hovertemplatesrc.py rename to plotly/validators/mesh3d/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hovertext.py b/plotly/validators/mesh3d/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hovertext.py rename to plotly/validators/mesh3d/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_hovertextsrc.py b/plotly/validators/mesh3d/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_hovertextsrc.py rename to plotly/validators/mesh3d/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_i.py b/plotly/validators/mesh3d/_i.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_i.py rename to plotly/validators/mesh3d/_i.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_ids.py b/plotly/validators/mesh3d/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_ids.py rename to plotly/validators/mesh3d/_ids.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_idssrc.py b/plotly/validators/mesh3d/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_idssrc.py rename to plotly/validators/mesh3d/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_intensity.py b/plotly/validators/mesh3d/_intensity.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_intensity.py rename to plotly/validators/mesh3d/_intensity.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_intensitymode.py b/plotly/validators/mesh3d/_intensitymode.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_intensitymode.py rename to plotly/validators/mesh3d/_intensitymode.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_intensitysrc.py b/plotly/validators/mesh3d/_intensitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_intensitysrc.py rename to plotly/validators/mesh3d/_intensitysrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_isrc.py b/plotly/validators/mesh3d/_isrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_isrc.py rename to plotly/validators/mesh3d/_isrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_j.py b/plotly/validators/mesh3d/_j.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_j.py rename to plotly/validators/mesh3d/_j.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_jsrc.py b/plotly/validators/mesh3d/_jsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_jsrc.py rename to plotly/validators/mesh3d/_jsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_k.py b/plotly/validators/mesh3d/_k.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_k.py rename to plotly/validators/mesh3d/_k.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_ksrc.py b/plotly/validators/mesh3d/_ksrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_ksrc.py rename to plotly/validators/mesh3d/_ksrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_legend.py b/plotly/validators/mesh3d/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_legend.py rename to plotly/validators/mesh3d/_legend.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_legendgroup.py b/plotly/validators/mesh3d/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_legendgroup.py rename to plotly/validators/mesh3d/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_legendgrouptitle.py b/plotly/validators/mesh3d/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_legendgrouptitle.py rename to plotly/validators/mesh3d/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_legendrank.py b/plotly/validators/mesh3d/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_legendrank.py rename to plotly/validators/mesh3d/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_legendwidth.py b/plotly/validators/mesh3d/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_legendwidth.py rename to plotly/validators/mesh3d/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_lighting.py b/plotly/validators/mesh3d/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_lighting.py rename to plotly/validators/mesh3d/_lighting.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_lightposition.py b/plotly/validators/mesh3d/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_lightposition.py rename to plotly/validators/mesh3d/_lightposition.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_meta.py b/plotly/validators/mesh3d/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_meta.py rename to plotly/validators/mesh3d/_meta.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_metasrc.py b/plotly/validators/mesh3d/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_metasrc.py rename to plotly/validators/mesh3d/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_name.py b/plotly/validators/mesh3d/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_name.py rename to plotly/validators/mesh3d/_name.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_opacity.py b/plotly/validators/mesh3d/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_opacity.py rename to plotly/validators/mesh3d/_opacity.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_reversescale.py b/plotly/validators/mesh3d/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_reversescale.py rename to plotly/validators/mesh3d/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_scene.py b/plotly/validators/mesh3d/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_scene.py rename to plotly/validators/mesh3d/_scene.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_showlegend.py b/plotly/validators/mesh3d/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_showlegend.py rename to plotly/validators/mesh3d/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_showscale.py b/plotly/validators/mesh3d/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_showscale.py rename to plotly/validators/mesh3d/_showscale.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_stream.py b/plotly/validators/mesh3d/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_stream.py rename to plotly/validators/mesh3d/_stream.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_text.py b/plotly/validators/mesh3d/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_text.py rename to plotly/validators/mesh3d/_text.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_textsrc.py b/plotly/validators/mesh3d/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_textsrc.py rename to plotly/validators/mesh3d/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_uid.py b/plotly/validators/mesh3d/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_uid.py rename to plotly/validators/mesh3d/_uid.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_uirevision.py b/plotly/validators/mesh3d/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_uirevision.py rename to plotly/validators/mesh3d/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_vertexcolor.py b/plotly/validators/mesh3d/_vertexcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_vertexcolor.py rename to plotly/validators/mesh3d/_vertexcolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_vertexcolorsrc.py b/plotly/validators/mesh3d/_vertexcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_vertexcolorsrc.py rename to plotly/validators/mesh3d/_vertexcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_visible.py b/plotly/validators/mesh3d/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_visible.py rename to plotly/validators/mesh3d/_visible.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_x.py b/plotly/validators/mesh3d/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_x.py rename to plotly/validators/mesh3d/_x.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_xcalendar.py b/plotly/validators/mesh3d/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_xcalendar.py rename to plotly/validators/mesh3d/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_xhoverformat.py b/plotly/validators/mesh3d/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_xhoverformat.py rename to plotly/validators/mesh3d/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_xsrc.py b/plotly/validators/mesh3d/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_xsrc.py rename to plotly/validators/mesh3d/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_y.py b/plotly/validators/mesh3d/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_y.py rename to plotly/validators/mesh3d/_y.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_ycalendar.py b/plotly/validators/mesh3d/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_ycalendar.py rename to plotly/validators/mesh3d/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_yhoverformat.py b/plotly/validators/mesh3d/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_yhoverformat.py rename to plotly/validators/mesh3d/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_ysrc.py b/plotly/validators/mesh3d/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_ysrc.py rename to plotly/validators/mesh3d/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_z.py b/plotly/validators/mesh3d/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_z.py rename to plotly/validators/mesh3d/_z.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_zcalendar.py b/plotly/validators/mesh3d/_zcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_zcalendar.py rename to plotly/validators/mesh3d/_zcalendar.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_zhoverformat.py b/plotly/validators/mesh3d/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_zhoverformat.py rename to plotly/validators/mesh3d/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/_zsrc.py b/plotly/validators/mesh3d/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/_zsrc.py rename to plotly/validators/mesh3d/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/__init__.py b/plotly/validators/mesh3d/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/__init__.py rename to plotly/validators/mesh3d/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_bgcolor.py b/plotly/validators/mesh3d/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_bgcolor.py rename to plotly/validators/mesh3d/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_bordercolor.py b/plotly/validators/mesh3d/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_bordercolor.py rename to plotly/validators/mesh3d/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_borderwidth.py b/plotly/validators/mesh3d/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_borderwidth.py rename to plotly/validators/mesh3d/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_dtick.py b/plotly/validators/mesh3d/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_dtick.py rename to plotly/validators/mesh3d/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_exponentformat.py b/plotly/validators/mesh3d/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_exponentformat.py rename to plotly/validators/mesh3d/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_labelalias.py b/plotly/validators/mesh3d/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_labelalias.py rename to plotly/validators/mesh3d/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_len.py b/plotly/validators/mesh3d/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_len.py rename to plotly/validators/mesh3d/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_lenmode.py b/plotly/validators/mesh3d/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_lenmode.py rename to plotly/validators/mesh3d/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_minexponent.py b/plotly/validators/mesh3d/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_minexponent.py rename to plotly/validators/mesh3d/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_nticks.py b/plotly/validators/mesh3d/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_nticks.py rename to plotly/validators/mesh3d/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_orientation.py b/plotly/validators/mesh3d/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_orientation.py rename to plotly/validators/mesh3d/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_outlinecolor.py b/plotly/validators/mesh3d/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_outlinecolor.py rename to plotly/validators/mesh3d/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_outlinewidth.py b/plotly/validators/mesh3d/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_outlinewidth.py rename to plotly/validators/mesh3d/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_separatethousands.py b/plotly/validators/mesh3d/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_separatethousands.py rename to plotly/validators/mesh3d/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_showexponent.py b/plotly/validators/mesh3d/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_showexponent.py rename to plotly/validators/mesh3d/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_showticklabels.py b/plotly/validators/mesh3d/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_showticklabels.py rename to plotly/validators/mesh3d/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_showtickprefix.py b/plotly/validators/mesh3d/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_showtickprefix.py rename to plotly/validators/mesh3d/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_showticksuffix.py b/plotly/validators/mesh3d/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_showticksuffix.py rename to plotly/validators/mesh3d/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_thickness.py b/plotly/validators/mesh3d/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_thickness.py rename to plotly/validators/mesh3d/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_thicknessmode.py b/plotly/validators/mesh3d/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_thicknessmode.py rename to plotly/validators/mesh3d/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tick0.py b/plotly/validators/mesh3d/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tick0.py rename to plotly/validators/mesh3d/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickangle.py b/plotly/validators/mesh3d/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickangle.py rename to plotly/validators/mesh3d/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickcolor.py b/plotly/validators/mesh3d/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickcolor.py rename to plotly/validators/mesh3d/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickfont.py b/plotly/validators/mesh3d/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickfont.py rename to plotly/validators/mesh3d/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickformat.py b/plotly/validators/mesh3d/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickformat.py rename to plotly/validators/mesh3d/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py b/plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py rename to plotly/validators/mesh3d/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickformatstops.py b/plotly/validators/mesh3d/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickformatstops.py rename to plotly/validators/mesh3d/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklabeloverflow.py b/plotly/validators/mesh3d/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklabeloverflow.py rename to plotly/validators/mesh3d/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklabelposition.py b/plotly/validators/mesh3d/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklabelposition.py rename to plotly/validators/mesh3d/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklabelstep.py b/plotly/validators/mesh3d/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklabelstep.py rename to plotly/validators/mesh3d/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklen.py b/plotly/validators/mesh3d/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticklen.py rename to plotly/validators/mesh3d/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickmode.py b/plotly/validators/mesh3d/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickmode.py rename to plotly/validators/mesh3d/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickprefix.py b/plotly/validators/mesh3d/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickprefix.py rename to plotly/validators/mesh3d/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticks.py b/plotly/validators/mesh3d/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticks.py rename to plotly/validators/mesh3d/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticksuffix.py b/plotly/validators/mesh3d/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticksuffix.py rename to plotly/validators/mesh3d/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticktext.py b/plotly/validators/mesh3d/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticktext.py rename to plotly/validators/mesh3d/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticktextsrc.py b/plotly/validators/mesh3d/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ticktextsrc.py rename to plotly/validators/mesh3d/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickvals.py b/plotly/validators/mesh3d/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickvals.py rename to plotly/validators/mesh3d/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickvalssrc.py b/plotly/validators/mesh3d/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickvalssrc.py rename to plotly/validators/mesh3d/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickwidth.py b/plotly/validators/mesh3d/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_tickwidth.py rename to plotly/validators/mesh3d/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_title.py b/plotly/validators/mesh3d/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_title.py rename to plotly/validators/mesh3d/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_x.py b/plotly/validators/mesh3d/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_x.py rename to plotly/validators/mesh3d/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_xanchor.py b/plotly/validators/mesh3d/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_xanchor.py rename to plotly/validators/mesh3d/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_xpad.py b/plotly/validators/mesh3d/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_xpad.py rename to plotly/validators/mesh3d/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_xref.py b/plotly/validators/mesh3d/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_xref.py rename to plotly/validators/mesh3d/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_y.py b/plotly/validators/mesh3d/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_y.py rename to plotly/validators/mesh3d/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_yanchor.py b/plotly/validators/mesh3d/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_yanchor.py rename to plotly/validators/mesh3d/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_ypad.py b/plotly/validators/mesh3d/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_ypad.py rename to plotly/validators/mesh3d/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/_yref.py b/plotly/validators/mesh3d/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/_yref.py rename to plotly/validators/mesh3d/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/__init__.py b/plotly/validators/mesh3d/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/__init__.py rename to plotly/validators/mesh3d/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_color.py b/plotly/validators/mesh3d/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_color.py rename to plotly/validators/mesh3d/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_family.py b/plotly/validators/mesh3d/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_family.py rename to plotly/validators/mesh3d/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_lineposition.py b/plotly/validators/mesh3d/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_lineposition.py rename to plotly/validators/mesh3d/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_shadow.py b/plotly/validators/mesh3d/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_shadow.py rename to plotly/validators/mesh3d/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_size.py b/plotly/validators/mesh3d/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_size.py rename to plotly/validators/mesh3d/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_style.py b/plotly/validators/mesh3d/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_style.py rename to plotly/validators/mesh3d/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_textcase.py b/plotly/validators/mesh3d/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_textcase.py rename to plotly/validators/mesh3d/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_variant.py b/plotly/validators/mesh3d/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_variant.py rename to plotly/validators/mesh3d/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_weight.py b/plotly/validators/mesh3d/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickfont/_weight.py rename to plotly/validators/mesh3d/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/__init__.py b/plotly/validators/mesh3d/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/__init__.py rename to plotly/validators/mesh3d/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/mesh3d/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/mesh3d/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_enabled.py b/plotly/validators/mesh3d/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_enabled.py rename to plotly/validators/mesh3d/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_name.py b/plotly/validators/mesh3d/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_name.py rename to plotly/validators/mesh3d/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/mesh3d/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/mesh3d/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_value.py b/plotly/validators/mesh3d/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/tickformatstop/_value.py rename to plotly/validators/mesh3d/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/__init__.py b/plotly/validators/mesh3d/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/__init__.py rename to plotly/validators/mesh3d/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/_font.py b/plotly/validators/mesh3d/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/_font.py rename to plotly/validators/mesh3d/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/_side.py b/plotly/validators/mesh3d/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/_side.py rename to plotly/validators/mesh3d/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/_text.py b/plotly/validators/mesh3d/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/_text.py rename to plotly/validators/mesh3d/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/__init__.py b/plotly/validators/mesh3d/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/__init__.py rename to plotly/validators/mesh3d/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_color.py b/plotly/validators/mesh3d/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_color.py rename to plotly/validators/mesh3d/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_family.py b/plotly/validators/mesh3d/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_family.py rename to plotly/validators/mesh3d/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_lineposition.py b/plotly/validators/mesh3d/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_lineposition.py rename to plotly/validators/mesh3d/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_shadow.py b/plotly/validators/mesh3d/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_shadow.py rename to plotly/validators/mesh3d/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_size.py b/plotly/validators/mesh3d/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_size.py rename to plotly/validators/mesh3d/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_style.py b/plotly/validators/mesh3d/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_style.py rename to plotly/validators/mesh3d/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_textcase.py b/plotly/validators/mesh3d/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_textcase.py rename to plotly/validators/mesh3d/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_variant.py b/plotly/validators/mesh3d/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_variant.py rename to plotly/validators/mesh3d/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_weight.py b/plotly/validators/mesh3d/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/colorbar/title/font/_weight.py rename to plotly/validators/mesh3d/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/contour/__init__.py b/plotly/validators/mesh3d/contour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/contour/__init__.py rename to plotly/validators/mesh3d/contour/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/contour/_color.py b/plotly/validators/mesh3d/contour/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/contour/_color.py rename to plotly/validators/mesh3d/contour/_color.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/contour/_show.py b/plotly/validators/mesh3d/contour/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/contour/_show.py rename to plotly/validators/mesh3d/contour/_show.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/contour/_width.py b/plotly/validators/mesh3d/contour/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/contour/_width.py rename to plotly/validators/mesh3d/contour/_width.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/__init__.py b/plotly/validators/mesh3d/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/__init__.py rename to plotly/validators/mesh3d/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_align.py b/plotly/validators/mesh3d/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_align.py rename to plotly/validators/mesh3d/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_alignsrc.py b/plotly/validators/mesh3d/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_alignsrc.py rename to plotly/validators/mesh3d/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bgcolor.py b/plotly/validators/mesh3d/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bgcolor.py rename to plotly/validators/mesh3d/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bgcolorsrc.py b/plotly/validators/mesh3d/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bgcolorsrc.py rename to plotly/validators/mesh3d/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bordercolor.py b/plotly/validators/mesh3d/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bordercolor.py rename to plotly/validators/mesh3d/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bordercolorsrc.py b/plotly/validators/mesh3d/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_bordercolorsrc.py rename to plotly/validators/mesh3d/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_font.py b/plotly/validators/mesh3d/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_font.py rename to plotly/validators/mesh3d/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_namelength.py b/plotly/validators/mesh3d/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_namelength.py rename to plotly/validators/mesh3d/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_namelengthsrc.py b/plotly/validators/mesh3d/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/_namelengthsrc.py rename to plotly/validators/mesh3d/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/__init__.py b/plotly/validators/mesh3d/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/__init__.py rename to plotly/validators/mesh3d/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_color.py b/plotly/validators/mesh3d/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_color.py rename to plotly/validators/mesh3d/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_colorsrc.py b/plotly/validators/mesh3d/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_colorsrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_family.py b/plotly/validators/mesh3d/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_family.py rename to plotly/validators/mesh3d/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_familysrc.py b/plotly/validators/mesh3d/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_familysrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_lineposition.py b/plotly/validators/mesh3d/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_lineposition.py rename to plotly/validators/mesh3d/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_linepositionsrc.py b/plotly/validators/mesh3d/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_shadow.py b/plotly/validators/mesh3d/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_shadow.py rename to plotly/validators/mesh3d/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_shadowsrc.py b/plotly/validators/mesh3d/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_shadowsrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_size.py b/plotly/validators/mesh3d/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_size.py rename to plotly/validators/mesh3d/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_sizesrc.py b/plotly/validators/mesh3d/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_sizesrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_style.py b/plotly/validators/mesh3d/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_style.py rename to plotly/validators/mesh3d/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_stylesrc.py b/plotly/validators/mesh3d/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_stylesrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_textcase.py b/plotly/validators/mesh3d/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_textcase.py rename to plotly/validators/mesh3d/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_textcasesrc.py b/plotly/validators/mesh3d/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_textcasesrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_variant.py b/plotly/validators/mesh3d/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_variant.py rename to plotly/validators/mesh3d/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_variantsrc.py b/plotly/validators/mesh3d/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_variantsrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_weight.py b/plotly/validators/mesh3d/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_weight.py rename to plotly/validators/mesh3d/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_weightsrc.py b/plotly/validators/mesh3d/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/hoverlabel/font/_weightsrc.py rename to plotly/validators/mesh3d/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/__init__.py b/plotly/validators/mesh3d/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/__init__.py rename to plotly/validators/mesh3d/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/_font.py b/plotly/validators/mesh3d/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/_font.py rename to plotly/validators/mesh3d/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/_text.py b/plotly/validators/mesh3d/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/_text.py rename to plotly/validators/mesh3d/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/__init__.py b/plotly/validators/mesh3d/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/__init__.py rename to plotly/validators/mesh3d/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_color.py b/plotly/validators/mesh3d/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_color.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_family.py b/plotly/validators/mesh3d/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_family.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_lineposition.py b/plotly/validators/mesh3d/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_lineposition.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_shadow.py b/plotly/validators/mesh3d/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_shadow.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_size.py b/plotly/validators/mesh3d/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_size.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_style.py b/plotly/validators/mesh3d/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_style.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_textcase.py b/plotly/validators/mesh3d/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_textcase.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_variant.py b/plotly/validators/mesh3d/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_variant.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_weight.py b/plotly/validators/mesh3d/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/legendgrouptitle/font/_weight.py rename to plotly/validators/mesh3d/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/__init__.py b/plotly/validators/mesh3d/lighting/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/__init__.py rename to plotly/validators/mesh3d/lighting/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_ambient.py b/plotly/validators/mesh3d/lighting/_ambient.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_ambient.py rename to plotly/validators/mesh3d/lighting/_ambient.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_diffuse.py b/plotly/validators/mesh3d/lighting/_diffuse.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_diffuse.py rename to plotly/validators/mesh3d/lighting/_diffuse.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_facenormalsepsilon.py b/plotly/validators/mesh3d/lighting/_facenormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_facenormalsepsilon.py rename to plotly/validators/mesh3d/lighting/_facenormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_fresnel.py b/plotly/validators/mesh3d/lighting/_fresnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_fresnel.py rename to plotly/validators/mesh3d/lighting/_fresnel.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_roughness.py b/plotly/validators/mesh3d/lighting/_roughness.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_roughness.py rename to plotly/validators/mesh3d/lighting/_roughness.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_specular.py b/plotly/validators/mesh3d/lighting/_specular.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_specular.py rename to plotly/validators/mesh3d/lighting/_specular.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lighting/_vertexnormalsepsilon.py b/plotly/validators/mesh3d/lighting/_vertexnormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lighting/_vertexnormalsepsilon.py rename to plotly/validators/mesh3d/lighting/_vertexnormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lightposition/__init__.py b/plotly/validators/mesh3d/lightposition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lightposition/__init__.py rename to plotly/validators/mesh3d/lightposition/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lightposition/_x.py b/plotly/validators/mesh3d/lightposition/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lightposition/_x.py rename to plotly/validators/mesh3d/lightposition/_x.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lightposition/_y.py b/plotly/validators/mesh3d/lightposition/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lightposition/_y.py rename to plotly/validators/mesh3d/lightposition/_y.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/lightposition/_z.py b/plotly/validators/mesh3d/lightposition/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/lightposition/_z.py rename to plotly/validators/mesh3d/lightposition/_z.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/stream/__init__.py b/plotly/validators/mesh3d/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/stream/__init__.py rename to plotly/validators/mesh3d/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/stream/_maxpoints.py b/plotly/validators/mesh3d/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/stream/_maxpoints.py rename to plotly/validators/mesh3d/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/mesh3d/stream/_token.py b/plotly/validators/mesh3d/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/mesh3d/stream/_token.py rename to plotly/validators/mesh3d/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/ohlc/__init__.py b/plotly/validators/ohlc/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/__init__.py rename to plotly/validators/ohlc/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_close.py b/plotly/validators/ohlc/_close.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_close.py rename to plotly/validators/ohlc/_close.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_closesrc.py b/plotly/validators/ohlc/_closesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_closesrc.py rename to plotly/validators/ohlc/_closesrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_customdata.py b/plotly/validators/ohlc/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_customdata.py rename to plotly/validators/ohlc/_customdata.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_customdatasrc.py b/plotly/validators/ohlc/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_customdatasrc.py rename to plotly/validators/ohlc/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_decreasing.py b/plotly/validators/ohlc/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_decreasing.py rename to plotly/validators/ohlc/_decreasing.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_high.py b/plotly/validators/ohlc/_high.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_high.py rename to plotly/validators/ohlc/_high.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_highsrc.py b/plotly/validators/ohlc/_highsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_highsrc.py rename to plotly/validators/ohlc/_highsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_hoverinfo.py b/plotly/validators/ohlc/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_hoverinfo.py rename to plotly/validators/ohlc/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_hoverinfosrc.py b/plotly/validators/ohlc/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_hoverinfosrc.py rename to plotly/validators/ohlc/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_hoverlabel.py b/plotly/validators/ohlc/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_hoverlabel.py rename to plotly/validators/ohlc/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_hovertext.py b/plotly/validators/ohlc/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_hovertext.py rename to plotly/validators/ohlc/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_hovertextsrc.py b/plotly/validators/ohlc/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_hovertextsrc.py rename to plotly/validators/ohlc/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_ids.py b/plotly/validators/ohlc/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_ids.py rename to plotly/validators/ohlc/_ids.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_idssrc.py b/plotly/validators/ohlc/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_idssrc.py rename to plotly/validators/ohlc/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_increasing.py b/plotly/validators/ohlc/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_increasing.py rename to plotly/validators/ohlc/_increasing.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_legend.py b/plotly/validators/ohlc/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_legend.py rename to plotly/validators/ohlc/_legend.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_legendgroup.py b/plotly/validators/ohlc/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_legendgroup.py rename to plotly/validators/ohlc/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_legendgrouptitle.py b/plotly/validators/ohlc/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_legendgrouptitle.py rename to plotly/validators/ohlc/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_legendrank.py b/plotly/validators/ohlc/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_legendrank.py rename to plotly/validators/ohlc/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_legendwidth.py b/plotly/validators/ohlc/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_legendwidth.py rename to plotly/validators/ohlc/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_line.py b/plotly/validators/ohlc/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_line.py rename to plotly/validators/ohlc/_line.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_low.py b/plotly/validators/ohlc/_low.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_low.py rename to plotly/validators/ohlc/_low.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_lowsrc.py b/plotly/validators/ohlc/_lowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_lowsrc.py rename to plotly/validators/ohlc/_lowsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_meta.py b/plotly/validators/ohlc/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_meta.py rename to plotly/validators/ohlc/_meta.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_metasrc.py b/plotly/validators/ohlc/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_metasrc.py rename to plotly/validators/ohlc/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_name.py b/plotly/validators/ohlc/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_name.py rename to plotly/validators/ohlc/_name.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_opacity.py b/plotly/validators/ohlc/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_opacity.py rename to plotly/validators/ohlc/_opacity.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_open.py b/plotly/validators/ohlc/_open.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_open.py rename to plotly/validators/ohlc/_open.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_opensrc.py b/plotly/validators/ohlc/_opensrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_opensrc.py rename to plotly/validators/ohlc/_opensrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_selectedpoints.py b/plotly/validators/ohlc/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_selectedpoints.py rename to plotly/validators/ohlc/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_showlegend.py b/plotly/validators/ohlc/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_showlegend.py rename to plotly/validators/ohlc/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_stream.py b/plotly/validators/ohlc/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_stream.py rename to plotly/validators/ohlc/_stream.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_text.py b/plotly/validators/ohlc/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_text.py rename to plotly/validators/ohlc/_text.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_textsrc.py b/plotly/validators/ohlc/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_textsrc.py rename to plotly/validators/ohlc/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_tickwidth.py b/plotly/validators/ohlc/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_tickwidth.py rename to plotly/validators/ohlc/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_uid.py b/plotly/validators/ohlc/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_uid.py rename to plotly/validators/ohlc/_uid.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_uirevision.py b/plotly/validators/ohlc/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_uirevision.py rename to plotly/validators/ohlc/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_visible.py b/plotly/validators/ohlc/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_visible.py rename to plotly/validators/ohlc/_visible.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_x.py b/plotly/validators/ohlc/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_x.py rename to plotly/validators/ohlc/_x.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xaxis.py b/plotly/validators/ohlc/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xaxis.py rename to plotly/validators/ohlc/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xcalendar.py b/plotly/validators/ohlc/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xcalendar.py rename to plotly/validators/ohlc/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xhoverformat.py b/plotly/validators/ohlc/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xhoverformat.py rename to plotly/validators/ohlc/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xperiod.py b/plotly/validators/ohlc/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xperiod.py rename to plotly/validators/ohlc/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xperiod0.py b/plotly/validators/ohlc/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xperiod0.py rename to plotly/validators/ohlc/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xperiodalignment.py b/plotly/validators/ohlc/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xperiodalignment.py rename to plotly/validators/ohlc/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_xsrc.py b/plotly/validators/ohlc/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_xsrc.py rename to plotly/validators/ohlc/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_yaxis.py b/plotly/validators/ohlc/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_yaxis.py rename to plotly/validators/ohlc/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_yhoverformat.py b/plotly/validators/ohlc/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_yhoverformat.py rename to plotly/validators/ohlc/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/ohlc/_zorder.py b/plotly/validators/ohlc/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/_zorder.py rename to plotly/validators/ohlc/_zorder.py diff --git a/packages/python/plotly/plotly/validators/ohlc/decreasing/__init__.py b/plotly/validators/ohlc/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/decreasing/__init__.py rename to plotly/validators/ohlc/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/decreasing/_line.py b/plotly/validators/ohlc/decreasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/decreasing/_line.py rename to plotly/validators/ohlc/decreasing/_line.py diff --git a/packages/python/plotly/plotly/validators/ohlc/decreasing/line/__init__.py b/plotly/validators/ohlc/decreasing/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/decreasing/line/__init__.py rename to plotly/validators/ohlc/decreasing/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/decreasing/line/_color.py b/plotly/validators/ohlc/decreasing/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/decreasing/line/_color.py rename to plotly/validators/ohlc/decreasing/line/_color.py diff --git a/packages/python/plotly/plotly/validators/ohlc/decreasing/line/_dash.py b/plotly/validators/ohlc/decreasing/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/decreasing/line/_dash.py rename to plotly/validators/ohlc/decreasing/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/ohlc/decreasing/line/_width.py b/plotly/validators/ohlc/decreasing/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/decreasing/line/_width.py rename to plotly/validators/ohlc/decreasing/line/_width.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/__init__.py b/plotly/validators/ohlc/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/__init__.py rename to plotly/validators/ohlc/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_align.py b/plotly/validators/ohlc/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_align.py rename to plotly/validators/ohlc/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_alignsrc.py b/plotly/validators/ohlc/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_alignsrc.py rename to plotly/validators/ohlc/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bgcolor.py b/plotly/validators/ohlc/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bgcolor.py rename to plotly/validators/ohlc/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bgcolorsrc.py b/plotly/validators/ohlc/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bgcolorsrc.py rename to plotly/validators/ohlc/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bordercolor.py b/plotly/validators/ohlc/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bordercolor.py rename to plotly/validators/ohlc/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bordercolorsrc.py b/plotly/validators/ohlc/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_bordercolorsrc.py rename to plotly/validators/ohlc/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_font.py b/plotly/validators/ohlc/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_font.py rename to plotly/validators/ohlc/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_namelength.py b/plotly/validators/ohlc/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_namelength.py rename to plotly/validators/ohlc/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_namelengthsrc.py b/plotly/validators/ohlc/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_namelengthsrc.py rename to plotly/validators/ohlc/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/_split.py b/plotly/validators/ohlc/hoverlabel/_split.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/_split.py rename to plotly/validators/ohlc/hoverlabel/_split.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/__init__.py b/plotly/validators/ohlc/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/__init__.py rename to plotly/validators/ohlc/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_color.py b/plotly/validators/ohlc/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_color.py rename to plotly/validators/ohlc/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_colorsrc.py b/plotly/validators/ohlc/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_colorsrc.py rename to plotly/validators/ohlc/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_family.py b/plotly/validators/ohlc/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_family.py rename to plotly/validators/ohlc/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_familysrc.py b/plotly/validators/ohlc/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_familysrc.py rename to plotly/validators/ohlc/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_lineposition.py b/plotly/validators/ohlc/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_lineposition.py rename to plotly/validators/ohlc/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_linepositionsrc.py b/plotly/validators/ohlc/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/ohlc/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_shadow.py b/plotly/validators/ohlc/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_shadow.py rename to plotly/validators/ohlc/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_shadowsrc.py b/plotly/validators/ohlc/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_shadowsrc.py rename to plotly/validators/ohlc/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_size.py b/plotly/validators/ohlc/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_size.py rename to plotly/validators/ohlc/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_sizesrc.py b/plotly/validators/ohlc/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_sizesrc.py rename to plotly/validators/ohlc/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_style.py b/plotly/validators/ohlc/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_style.py rename to plotly/validators/ohlc/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_stylesrc.py b/plotly/validators/ohlc/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_stylesrc.py rename to plotly/validators/ohlc/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_textcase.py b/plotly/validators/ohlc/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_textcase.py rename to plotly/validators/ohlc/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_textcasesrc.py b/plotly/validators/ohlc/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_textcasesrc.py rename to plotly/validators/ohlc/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_variant.py b/plotly/validators/ohlc/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_variant.py rename to plotly/validators/ohlc/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_variantsrc.py b/plotly/validators/ohlc/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_variantsrc.py rename to plotly/validators/ohlc/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_weight.py b/plotly/validators/ohlc/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_weight.py rename to plotly/validators/ohlc/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_weightsrc.py b/plotly/validators/ohlc/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/hoverlabel/font/_weightsrc.py rename to plotly/validators/ohlc/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/ohlc/increasing/__init__.py b/plotly/validators/ohlc/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/increasing/__init__.py rename to plotly/validators/ohlc/increasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/increasing/_line.py b/plotly/validators/ohlc/increasing/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/increasing/_line.py rename to plotly/validators/ohlc/increasing/_line.py diff --git a/packages/python/plotly/plotly/validators/ohlc/increasing/line/__init__.py b/plotly/validators/ohlc/increasing/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/increasing/line/__init__.py rename to plotly/validators/ohlc/increasing/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/increasing/line/_color.py b/plotly/validators/ohlc/increasing/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/increasing/line/_color.py rename to plotly/validators/ohlc/increasing/line/_color.py diff --git a/packages/python/plotly/plotly/validators/ohlc/increasing/line/_dash.py b/plotly/validators/ohlc/increasing/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/increasing/line/_dash.py rename to plotly/validators/ohlc/increasing/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/ohlc/increasing/line/_width.py b/plotly/validators/ohlc/increasing/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/increasing/line/_width.py rename to plotly/validators/ohlc/increasing/line/_width.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/__init__.py b/plotly/validators/ohlc/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/__init__.py rename to plotly/validators/ohlc/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/_font.py b/plotly/validators/ohlc/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/_font.py rename to plotly/validators/ohlc/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/_text.py b/plotly/validators/ohlc/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/_text.py rename to plotly/validators/ohlc/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/__init__.py b/plotly/validators/ohlc/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/__init__.py rename to plotly/validators/ohlc/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_color.py b/plotly/validators/ohlc/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_color.py rename to plotly/validators/ohlc/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_family.py b/plotly/validators/ohlc/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_family.py rename to plotly/validators/ohlc/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_lineposition.py b/plotly/validators/ohlc/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_lineposition.py rename to plotly/validators/ohlc/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_shadow.py b/plotly/validators/ohlc/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_shadow.py rename to plotly/validators/ohlc/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_size.py b/plotly/validators/ohlc/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_size.py rename to plotly/validators/ohlc/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_style.py b/plotly/validators/ohlc/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_style.py rename to plotly/validators/ohlc/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_textcase.py b/plotly/validators/ohlc/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_textcase.py rename to plotly/validators/ohlc/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_variant.py b/plotly/validators/ohlc/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_variant.py rename to plotly/validators/ohlc/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_weight.py b/plotly/validators/ohlc/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/legendgrouptitle/font/_weight.py rename to plotly/validators/ohlc/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/ohlc/line/__init__.py b/plotly/validators/ohlc/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/line/__init__.py rename to plotly/validators/ohlc/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/line/_dash.py b/plotly/validators/ohlc/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/line/_dash.py rename to plotly/validators/ohlc/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/ohlc/line/_width.py b/plotly/validators/ohlc/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/line/_width.py rename to plotly/validators/ohlc/line/_width.py diff --git a/packages/python/plotly/plotly/validators/ohlc/stream/__init__.py b/plotly/validators/ohlc/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/stream/__init__.py rename to plotly/validators/ohlc/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/ohlc/stream/_maxpoints.py b/plotly/validators/ohlc/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/stream/_maxpoints.py rename to plotly/validators/ohlc/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/ohlc/stream/_token.py b/plotly/validators/ohlc/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/ohlc/stream/_token.py rename to plotly/validators/ohlc/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/parcats/__init__.py b/plotly/validators/parcats/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/__init__.py rename to plotly/validators/parcats/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/_arrangement.py b/plotly/validators/parcats/_arrangement.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_arrangement.py rename to plotly/validators/parcats/_arrangement.py diff --git a/packages/python/plotly/plotly/validators/parcats/_bundlecolors.py b/plotly/validators/parcats/_bundlecolors.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_bundlecolors.py rename to plotly/validators/parcats/_bundlecolors.py diff --git a/packages/python/plotly/plotly/validators/parcats/_counts.py b/plotly/validators/parcats/_counts.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_counts.py rename to plotly/validators/parcats/_counts.py diff --git a/packages/python/plotly/plotly/validators/parcats/_countssrc.py b/plotly/validators/parcats/_countssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_countssrc.py rename to plotly/validators/parcats/_countssrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/_dimensiondefaults.py b/plotly/validators/parcats/_dimensiondefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_dimensiondefaults.py rename to plotly/validators/parcats/_dimensiondefaults.py diff --git a/packages/python/plotly/plotly/validators/parcats/_dimensions.py b/plotly/validators/parcats/_dimensions.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_dimensions.py rename to plotly/validators/parcats/_dimensions.py diff --git a/packages/python/plotly/plotly/validators/parcats/_domain.py b/plotly/validators/parcats/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_domain.py rename to plotly/validators/parcats/_domain.py diff --git a/packages/python/plotly/plotly/validators/parcats/_hoverinfo.py b/plotly/validators/parcats/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_hoverinfo.py rename to plotly/validators/parcats/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/parcats/_hoveron.py b/plotly/validators/parcats/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_hoveron.py rename to plotly/validators/parcats/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/parcats/_hovertemplate.py b/plotly/validators/parcats/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_hovertemplate.py rename to plotly/validators/parcats/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/parcats/_labelfont.py b/plotly/validators/parcats/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_labelfont.py rename to plotly/validators/parcats/_labelfont.py diff --git a/packages/python/plotly/plotly/validators/parcats/_legendgrouptitle.py b/plotly/validators/parcats/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_legendgrouptitle.py rename to plotly/validators/parcats/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/parcats/_legendwidth.py b/plotly/validators/parcats/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_legendwidth.py rename to plotly/validators/parcats/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/parcats/_line.py b/plotly/validators/parcats/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_line.py rename to plotly/validators/parcats/_line.py diff --git a/packages/python/plotly/plotly/validators/parcats/_meta.py b/plotly/validators/parcats/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_meta.py rename to plotly/validators/parcats/_meta.py diff --git a/packages/python/plotly/plotly/validators/parcats/_metasrc.py b/plotly/validators/parcats/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_metasrc.py rename to plotly/validators/parcats/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/_name.py b/plotly/validators/parcats/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_name.py rename to plotly/validators/parcats/_name.py diff --git a/packages/python/plotly/plotly/validators/parcats/_sortpaths.py b/plotly/validators/parcats/_sortpaths.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_sortpaths.py rename to plotly/validators/parcats/_sortpaths.py diff --git a/packages/python/plotly/plotly/validators/parcats/_stream.py b/plotly/validators/parcats/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_stream.py rename to plotly/validators/parcats/_stream.py diff --git a/packages/python/plotly/plotly/validators/parcats/_tickfont.py b/plotly/validators/parcats/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_tickfont.py rename to plotly/validators/parcats/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/parcats/_uid.py b/plotly/validators/parcats/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_uid.py rename to plotly/validators/parcats/_uid.py diff --git a/packages/python/plotly/plotly/validators/parcats/_uirevision.py b/plotly/validators/parcats/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_uirevision.py rename to plotly/validators/parcats/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/parcats/_visible.py b/plotly/validators/parcats/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/_visible.py rename to plotly/validators/parcats/_visible.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/__init__.py b/plotly/validators/parcats/dimension/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/__init__.py rename to plotly/validators/parcats/dimension/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_categoryarray.py b/plotly/validators/parcats/dimension/_categoryarray.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_categoryarray.py rename to plotly/validators/parcats/dimension/_categoryarray.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_categoryarraysrc.py b/plotly/validators/parcats/dimension/_categoryarraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_categoryarraysrc.py rename to plotly/validators/parcats/dimension/_categoryarraysrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_categoryorder.py b/plotly/validators/parcats/dimension/_categoryorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_categoryorder.py rename to plotly/validators/parcats/dimension/_categoryorder.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_displayindex.py b/plotly/validators/parcats/dimension/_displayindex.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_displayindex.py rename to plotly/validators/parcats/dimension/_displayindex.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_label.py b/plotly/validators/parcats/dimension/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_label.py rename to plotly/validators/parcats/dimension/_label.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_ticktext.py b/plotly/validators/parcats/dimension/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_ticktext.py rename to plotly/validators/parcats/dimension/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_ticktextsrc.py b/plotly/validators/parcats/dimension/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_ticktextsrc.py rename to plotly/validators/parcats/dimension/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_values.py b/plotly/validators/parcats/dimension/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_values.py rename to plotly/validators/parcats/dimension/_values.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_valuessrc.py b/plotly/validators/parcats/dimension/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_valuessrc.py rename to plotly/validators/parcats/dimension/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/dimension/_visible.py b/plotly/validators/parcats/dimension/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/dimension/_visible.py rename to plotly/validators/parcats/dimension/_visible.py diff --git a/packages/python/plotly/plotly/validators/parcats/domain/__init__.py b/plotly/validators/parcats/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/domain/__init__.py rename to plotly/validators/parcats/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/domain/_column.py b/plotly/validators/parcats/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/domain/_column.py rename to plotly/validators/parcats/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/parcats/domain/_row.py b/plotly/validators/parcats/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/domain/_row.py rename to plotly/validators/parcats/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/parcats/domain/_x.py b/plotly/validators/parcats/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/domain/_x.py rename to plotly/validators/parcats/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/parcats/domain/_y.py b/plotly/validators/parcats/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/domain/_y.py rename to plotly/validators/parcats/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/__init__.py b/plotly/validators/parcats/labelfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/__init__.py rename to plotly/validators/parcats/labelfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_color.py b/plotly/validators/parcats/labelfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_color.py rename to plotly/validators/parcats/labelfont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_family.py b/plotly/validators/parcats/labelfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_family.py rename to plotly/validators/parcats/labelfont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_lineposition.py b/plotly/validators/parcats/labelfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_lineposition.py rename to plotly/validators/parcats/labelfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_shadow.py b/plotly/validators/parcats/labelfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_shadow.py rename to plotly/validators/parcats/labelfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_size.py b/plotly/validators/parcats/labelfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_size.py rename to plotly/validators/parcats/labelfont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_style.py b/plotly/validators/parcats/labelfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_style.py rename to plotly/validators/parcats/labelfont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_textcase.py b/plotly/validators/parcats/labelfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_textcase.py rename to plotly/validators/parcats/labelfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_variant.py b/plotly/validators/parcats/labelfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_variant.py rename to plotly/validators/parcats/labelfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcats/labelfont/_weight.py b/plotly/validators/parcats/labelfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/labelfont/_weight.py rename to plotly/validators/parcats/labelfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/__init__.py b/plotly/validators/parcats/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/__init__.py rename to plotly/validators/parcats/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/_font.py b/plotly/validators/parcats/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/_font.py rename to plotly/validators/parcats/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/_text.py b/plotly/validators/parcats/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/_text.py rename to plotly/validators/parcats/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/__init__.py b/plotly/validators/parcats/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/__init__.py rename to plotly/validators/parcats/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_color.py b/plotly/validators/parcats/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_color.py rename to plotly/validators/parcats/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_family.py b/plotly/validators/parcats/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_family.py rename to plotly/validators/parcats/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_lineposition.py b/plotly/validators/parcats/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_lineposition.py rename to plotly/validators/parcats/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_shadow.py b/plotly/validators/parcats/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_shadow.py rename to plotly/validators/parcats/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_size.py b/plotly/validators/parcats/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_size.py rename to plotly/validators/parcats/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_style.py b/plotly/validators/parcats/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_style.py rename to plotly/validators/parcats/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_textcase.py b/plotly/validators/parcats/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_textcase.py rename to plotly/validators/parcats/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_variant.py b/plotly/validators/parcats/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_variant.py rename to plotly/validators/parcats/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_weight.py b/plotly/validators/parcats/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/legendgrouptitle/font/_weight.py rename to plotly/validators/parcats/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/__init__.py b/plotly/validators/parcats/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/__init__.py rename to plotly/validators/parcats/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_autocolorscale.py b/plotly/validators/parcats/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_autocolorscale.py rename to plotly/validators/parcats/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_cauto.py b/plotly/validators/parcats/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_cauto.py rename to plotly/validators/parcats/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_cmax.py b/plotly/validators/parcats/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_cmax.py rename to plotly/validators/parcats/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_cmid.py b/plotly/validators/parcats/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_cmid.py rename to plotly/validators/parcats/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_cmin.py b/plotly/validators/parcats/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_cmin.py rename to plotly/validators/parcats/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_color.py b/plotly/validators/parcats/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_color.py rename to plotly/validators/parcats/line/_color.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_coloraxis.py b/plotly/validators/parcats/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_coloraxis.py rename to plotly/validators/parcats/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_colorbar.py b/plotly/validators/parcats/line/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_colorbar.py rename to plotly/validators/parcats/line/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_colorscale.py b/plotly/validators/parcats/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_colorscale.py rename to plotly/validators/parcats/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_colorsrc.py b/plotly/validators/parcats/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_colorsrc.py rename to plotly/validators/parcats/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_hovertemplate.py b/plotly/validators/parcats/line/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_hovertemplate.py rename to plotly/validators/parcats/line/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_reversescale.py b/plotly/validators/parcats/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_reversescale.py rename to plotly/validators/parcats/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_shape.py b/plotly/validators/parcats/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_shape.py rename to plotly/validators/parcats/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/_showscale.py b/plotly/validators/parcats/line/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/_showscale.py rename to plotly/validators/parcats/line/_showscale.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/__init__.py b/plotly/validators/parcats/line/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/__init__.py rename to plotly/validators/parcats/line/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_bgcolor.py b/plotly/validators/parcats/line/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_bgcolor.py rename to plotly/validators/parcats/line/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_bordercolor.py b/plotly/validators/parcats/line/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_bordercolor.py rename to plotly/validators/parcats/line/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_borderwidth.py b/plotly/validators/parcats/line/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_borderwidth.py rename to plotly/validators/parcats/line/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_dtick.py b/plotly/validators/parcats/line/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_dtick.py rename to plotly/validators/parcats/line/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_exponentformat.py b/plotly/validators/parcats/line/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_exponentformat.py rename to plotly/validators/parcats/line/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_labelalias.py b/plotly/validators/parcats/line/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_labelalias.py rename to plotly/validators/parcats/line/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_len.py b/plotly/validators/parcats/line/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_len.py rename to plotly/validators/parcats/line/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_lenmode.py b/plotly/validators/parcats/line/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_lenmode.py rename to plotly/validators/parcats/line/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_minexponent.py b/plotly/validators/parcats/line/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_minexponent.py rename to plotly/validators/parcats/line/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_nticks.py b/plotly/validators/parcats/line/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_nticks.py rename to plotly/validators/parcats/line/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_orientation.py b/plotly/validators/parcats/line/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_orientation.py rename to plotly/validators/parcats/line/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_outlinecolor.py b/plotly/validators/parcats/line/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_outlinecolor.py rename to plotly/validators/parcats/line/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_outlinewidth.py b/plotly/validators/parcats/line/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_outlinewidth.py rename to plotly/validators/parcats/line/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_separatethousands.py b/plotly/validators/parcats/line/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_separatethousands.py rename to plotly/validators/parcats/line/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_showexponent.py b/plotly/validators/parcats/line/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_showexponent.py rename to plotly/validators/parcats/line/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_showticklabels.py b/plotly/validators/parcats/line/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_showticklabels.py rename to plotly/validators/parcats/line/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_showtickprefix.py b/plotly/validators/parcats/line/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_showtickprefix.py rename to plotly/validators/parcats/line/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_showticksuffix.py b/plotly/validators/parcats/line/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_showticksuffix.py rename to plotly/validators/parcats/line/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_thickness.py b/plotly/validators/parcats/line/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_thickness.py rename to plotly/validators/parcats/line/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_thicknessmode.py b/plotly/validators/parcats/line/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_thicknessmode.py rename to plotly/validators/parcats/line/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tick0.py b/plotly/validators/parcats/line/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tick0.py rename to plotly/validators/parcats/line/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickangle.py b/plotly/validators/parcats/line/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickangle.py rename to plotly/validators/parcats/line/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickcolor.py b/plotly/validators/parcats/line/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickcolor.py rename to plotly/validators/parcats/line/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickfont.py b/plotly/validators/parcats/line/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickfont.py rename to plotly/validators/parcats/line/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickformat.py b/plotly/validators/parcats/line/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickformat.py rename to plotly/validators/parcats/line/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickformatstopdefaults.py b/plotly/validators/parcats/line/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickformatstopdefaults.py rename to plotly/validators/parcats/line/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickformatstops.py b/plotly/validators/parcats/line/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickformatstops.py rename to plotly/validators/parcats/line/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklabeloverflow.py b/plotly/validators/parcats/line/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklabeloverflow.py rename to plotly/validators/parcats/line/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklabelposition.py b/plotly/validators/parcats/line/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklabelposition.py rename to plotly/validators/parcats/line/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklabelstep.py b/plotly/validators/parcats/line/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklabelstep.py rename to plotly/validators/parcats/line/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklen.py b/plotly/validators/parcats/line/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticklen.py rename to plotly/validators/parcats/line/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickmode.py b/plotly/validators/parcats/line/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickmode.py rename to plotly/validators/parcats/line/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickprefix.py b/plotly/validators/parcats/line/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickprefix.py rename to plotly/validators/parcats/line/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticks.py b/plotly/validators/parcats/line/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticks.py rename to plotly/validators/parcats/line/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticksuffix.py b/plotly/validators/parcats/line/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticksuffix.py rename to plotly/validators/parcats/line/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticktext.py b/plotly/validators/parcats/line/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticktext.py rename to plotly/validators/parcats/line/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticktextsrc.py b/plotly/validators/parcats/line/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ticktextsrc.py rename to plotly/validators/parcats/line/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickvals.py b/plotly/validators/parcats/line/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickvals.py rename to plotly/validators/parcats/line/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickvalssrc.py b/plotly/validators/parcats/line/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickvalssrc.py rename to plotly/validators/parcats/line/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickwidth.py b/plotly/validators/parcats/line/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_tickwidth.py rename to plotly/validators/parcats/line/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_title.py b/plotly/validators/parcats/line/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_title.py rename to plotly/validators/parcats/line/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_x.py b/plotly/validators/parcats/line/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_x.py rename to plotly/validators/parcats/line/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_xanchor.py b/plotly/validators/parcats/line/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_xanchor.py rename to plotly/validators/parcats/line/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_xpad.py b/plotly/validators/parcats/line/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_xpad.py rename to plotly/validators/parcats/line/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_xref.py b/plotly/validators/parcats/line/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_xref.py rename to plotly/validators/parcats/line/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_y.py b/plotly/validators/parcats/line/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_y.py rename to plotly/validators/parcats/line/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_yanchor.py b/plotly/validators/parcats/line/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_yanchor.py rename to plotly/validators/parcats/line/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_ypad.py b/plotly/validators/parcats/line/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_ypad.py rename to plotly/validators/parcats/line/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/_yref.py b/plotly/validators/parcats/line/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/_yref.py rename to plotly/validators/parcats/line/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/__init__.py b/plotly/validators/parcats/line/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/__init__.py rename to plotly/validators/parcats/line/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_color.py b/plotly/validators/parcats/line/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_color.py rename to plotly/validators/parcats/line/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_family.py b/plotly/validators/parcats/line/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_family.py rename to plotly/validators/parcats/line/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_lineposition.py b/plotly/validators/parcats/line/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_lineposition.py rename to plotly/validators/parcats/line/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_shadow.py b/plotly/validators/parcats/line/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_shadow.py rename to plotly/validators/parcats/line/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_size.py b/plotly/validators/parcats/line/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_size.py rename to plotly/validators/parcats/line/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_style.py b/plotly/validators/parcats/line/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_style.py rename to plotly/validators/parcats/line/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_textcase.py b/plotly/validators/parcats/line/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_textcase.py rename to plotly/validators/parcats/line/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_variant.py b/plotly/validators/parcats/line/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_variant.py rename to plotly/validators/parcats/line/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_weight.py b/plotly/validators/parcats/line/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickfont/_weight.py rename to plotly/validators/parcats/line/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/__init__.py b/plotly/validators/parcats/line/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/__init__.py rename to plotly/validators/parcats/line/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/parcats/line/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/parcats/line/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_enabled.py b/plotly/validators/parcats/line/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_enabled.py rename to plotly/validators/parcats/line/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_name.py b/plotly/validators/parcats/line/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_name.py rename to plotly/validators/parcats/line/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/parcats/line/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/parcats/line/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_value.py b/plotly/validators/parcats/line/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/tickformatstop/_value.py rename to plotly/validators/parcats/line/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/__init__.py b/plotly/validators/parcats/line/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/__init__.py rename to plotly/validators/parcats/line/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/_font.py b/plotly/validators/parcats/line/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/_font.py rename to plotly/validators/parcats/line/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/_side.py b/plotly/validators/parcats/line/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/_side.py rename to plotly/validators/parcats/line/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/_text.py b/plotly/validators/parcats/line/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/_text.py rename to plotly/validators/parcats/line/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/__init__.py b/plotly/validators/parcats/line/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/__init__.py rename to plotly/validators/parcats/line/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_color.py b/plotly/validators/parcats/line/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_color.py rename to plotly/validators/parcats/line/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_family.py b/plotly/validators/parcats/line/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_family.py rename to plotly/validators/parcats/line/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_lineposition.py b/plotly/validators/parcats/line/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_lineposition.py rename to plotly/validators/parcats/line/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_shadow.py b/plotly/validators/parcats/line/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_shadow.py rename to plotly/validators/parcats/line/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_size.py b/plotly/validators/parcats/line/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_size.py rename to plotly/validators/parcats/line/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_style.py b/plotly/validators/parcats/line/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_style.py rename to plotly/validators/parcats/line/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_textcase.py b/plotly/validators/parcats/line/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_textcase.py rename to plotly/validators/parcats/line/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_variant.py b/plotly/validators/parcats/line/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_variant.py rename to plotly/validators/parcats/line/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_weight.py b/plotly/validators/parcats/line/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/line/colorbar/title/font/_weight.py rename to plotly/validators/parcats/line/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcats/stream/__init__.py b/plotly/validators/parcats/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/stream/__init__.py rename to plotly/validators/parcats/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/stream/_maxpoints.py b/plotly/validators/parcats/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/stream/_maxpoints.py rename to plotly/validators/parcats/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/parcats/stream/_token.py b/plotly/validators/parcats/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/stream/_token.py rename to plotly/validators/parcats/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/__init__.py b/plotly/validators/parcats/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/__init__.py rename to plotly/validators/parcats/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_color.py b/plotly/validators/parcats/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_color.py rename to plotly/validators/parcats/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_family.py b/plotly/validators/parcats/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_family.py rename to plotly/validators/parcats/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_lineposition.py b/plotly/validators/parcats/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_lineposition.py rename to plotly/validators/parcats/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_shadow.py b/plotly/validators/parcats/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_shadow.py rename to plotly/validators/parcats/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_size.py b/plotly/validators/parcats/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_size.py rename to plotly/validators/parcats/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_style.py b/plotly/validators/parcats/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_style.py rename to plotly/validators/parcats/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_textcase.py b/plotly/validators/parcats/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_textcase.py rename to plotly/validators/parcats/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_variant.py b/plotly/validators/parcats/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_variant.py rename to plotly/validators/parcats/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcats/tickfont/_weight.py b/plotly/validators/parcats/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcats/tickfont/_weight.py rename to plotly/validators/parcats/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/__init__.py b/plotly/validators/parcoords/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/__init__.py rename to plotly/validators/parcoords/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_customdata.py b/plotly/validators/parcoords/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_customdata.py rename to plotly/validators/parcoords/_customdata.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_customdatasrc.py b/plotly/validators/parcoords/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_customdatasrc.py rename to plotly/validators/parcoords/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_dimensiondefaults.py b/plotly/validators/parcoords/_dimensiondefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_dimensiondefaults.py rename to plotly/validators/parcoords/_dimensiondefaults.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_dimensions.py b/plotly/validators/parcoords/_dimensions.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_dimensions.py rename to plotly/validators/parcoords/_dimensions.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_domain.py b/plotly/validators/parcoords/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_domain.py rename to plotly/validators/parcoords/_domain.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_ids.py b/plotly/validators/parcoords/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_ids.py rename to plotly/validators/parcoords/_ids.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_idssrc.py b/plotly/validators/parcoords/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_idssrc.py rename to plotly/validators/parcoords/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_labelangle.py b/plotly/validators/parcoords/_labelangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_labelangle.py rename to plotly/validators/parcoords/_labelangle.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_labelfont.py b/plotly/validators/parcoords/_labelfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_labelfont.py rename to plotly/validators/parcoords/_labelfont.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_labelside.py b/plotly/validators/parcoords/_labelside.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_labelside.py rename to plotly/validators/parcoords/_labelside.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_legend.py b/plotly/validators/parcoords/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_legend.py rename to plotly/validators/parcoords/_legend.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_legendgrouptitle.py b/plotly/validators/parcoords/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_legendgrouptitle.py rename to plotly/validators/parcoords/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_legendrank.py b/plotly/validators/parcoords/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_legendrank.py rename to plotly/validators/parcoords/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_legendwidth.py b/plotly/validators/parcoords/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_legendwidth.py rename to plotly/validators/parcoords/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_line.py b/plotly/validators/parcoords/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_line.py rename to plotly/validators/parcoords/_line.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_meta.py b/plotly/validators/parcoords/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_meta.py rename to plotly/validators/parcoords/_meta.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_metasrc.py b/plotly/validators/parcoords/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_metasrc.py rename to plotly/validators/parcoords/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_name.py b/plotly/validators/parcoords/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_name.py rename to plotly/validators/parcoords/_name.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_rangefont.py b/plotly/validators/parcoords/_rangefont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_rangefont.py rename to plotly/validators/parcoords/_rangefont.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_stream.py b/plotly/validators/parcoords/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_stream.py rename to plotly/validators/parcoords/_stream.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_tickfont.py b/plotly/validators/parcoords/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_tickfont.py rename to plotly/validators/parcoords/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_uid.py b/plotly/validators/parcoords/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_uid.py rename to plotly/validators/parcoords/_uid.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_uirevision.py b/plotly/validators/parcoords/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_uirevision.py rename to plotly/validators/parcoords/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_unselected.py b/plotly/validators/parcoords/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_unselected.py rename to plotly/validators/parcoords/_unselected.py diff --git a/packages/python/plotly/plotly/validators/parcoords/_visible.py b/plotly/validators/parcoords/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/_visible.py rename to plotly/validators/parcoords/_visible.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/__init__.py b/plotly/validators/parcoords/dimension/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/__init__.py rename to plotly/validators/parcoords/dimension/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_constraintrange.py b/plotly/validators/parcoords/dimension/_constraintrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_constraintrange.py rename to plotly/validators/parcoords/dimension/_constraintrange.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_label.py b/plotly/validators/parcoords/dimension/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_label.py rename to plotly/validators/parcoords/dimension/_label.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_multiselect.py b/plotly/validators/parcoords/dimension/_multiselect.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_multiselect.py rename to plotly/validators/parcoords/dimension/_multiselect.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_name.py b/plotly/validators/parcoords/dimension/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_name.py rename to plotly/validators/parcoords/dimension/_name.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_range.py b/plotly/validators/parcoords/dimension/_range.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_range.py rename to plotly/validators/parcoords/dimension/_range.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_templateitemname.py b/plotly/validators/parcoords/dimension/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_templateitemname.py rename to plotly/validators/parcoords/dimension/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_tickformat.py b/plotly/validators/parcoords/dimension/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_tickformat.py rename to plotly/validators/parcoords/dimension/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_ticktext.py b/plotly/validators/parcoords/dimension/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_ticktext.py rename to plotly/validators/parcoords/dimension/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_ticktextsrc.py b/plotly/validators/parcoords/dimension/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_ticktextsrc.py rename to plotly/validators/parcoords/dimension/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_tickvals.py b/plotly/validators/parcoords/dimension/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_tickvals.py rename to plotly/validators/parcoords/dimension/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_tickvalssrc.py b/plotly/validators/parcoords/dimension/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_tickvalssrc.py rename to plotly/validators/parcoords/dimension/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_values.py b/plotly/validators/parcoords/dimension/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_values.py rename to plotly/validators/parcoords/dimension/_values.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_valuessrc.py b/plotly/validators/parcoords/dimension/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_valuessrc.py rename to plotly/validators/parcoords/dimension/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/dimension/_visible.py b/plotly/validators/parcoords/dimension/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/dimension/_visible.py rename to plotly/validators/parcoords/dimension/_visible.py diff --git a/packages/python/plotly/plotly/validators/parcoords/domain/__init__.py b/plotly/validators/parcoords/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/domain/__init__.py rename to plotly/validators/parcoords/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/domain/_column.py b/plotly/validators/parcoords/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/domain/_column.py rename to plotly/validators/parcoords/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/parcoords/domain/_row.py b/plotly/validators/parcoords/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/domain/_row.py rename to plotly/validators/parcoords/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/parcoords/domain/_x.py b/plotly/validators/parcoords/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/domain/_x.py rename to plotly/validators/parcoords/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/parcoords/domain/_y.py b/plotly/validators/parcoords/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/domain/_y.py rename to plotly/validators/parcoords/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/__init__.py b/plotly/validators/parcoords/labelfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/__init__.py rename to plotly/validators/parcoords/labelfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_color.py b/plotly/validators/parcoords/labelfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_color.py rename to plotly/validators/parcoords/labelfont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_family.py b/plotly/validators/parcoords/labelfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_family.py rename to plotly/validators/parcoords/labelfont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_lineposition.py b/plotly/validators/parcoords/labelfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_lineposition.py rename to plotly/validators/parcoords/labelfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_shadow.py b/plotly/validators/parcoords/labelfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_shadow.py rename to plotly/validators/parcoords/labelfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_size.py b/plotly/validators/parcoords/labelfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_size.py rename to plotly/validators/parcoords/labelfont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_style.py b/plotly/validators/parcoords/labelfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_style.py rename to plotly/validators/parcoords/labelfont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_textcase.py b/plotly/validators/parcoords/labelfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_textcase.py rename to plotly/validators/parcoords/labelfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_variant.py b/plotly/validators/parcoords/labelfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_variant.py rename to plotly/validators/parcoords/labelfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcoords/labelfont/_weight.py b/plotly/validators/parcoords/labelfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/labelfont/_weight.py rename to plotly/validators/parcoords/labelfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/__init__.py b/plotly/validators/parcoords/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/__init__.py rename to plotly/validators/parcoords/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/_font.py b/plotly/validators/parcoords/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/_font.py rename to plotly/validators/parcoords/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/_text.py b/plotly/validators/parcoords/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/_text.py rename to plotly/validators/parcoords/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/__init__.py b/plotly/validators/parcoords/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/__init__.py rename to plotly/validators/parcoords/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_color.py b/plotly/validators/parcoords/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_color.py rename to plotly/validators/parcoords/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_family.py b/plotly/validators/parcoords/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_family.py rename to plotly/validators/parcoords/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_lineposition.py b/plotly/validators/parcoords/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_lineposition.py rename to plotly/validators/parcoords/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_shadow.py b/plotly/validators/parcoords/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_shadow.py rename to plotly/validators/parcoords/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_size.py b/plotly/validators/parcoords/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_size.py rename to plotly/validators/parcoords/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_style.py b/plotly/validators/parcoords/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_style.py rename to plotly/validators/parcoords/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_textcase.py b/plotly/validators/parcoords/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_textcase.py rename to plotly/validators/parcoords/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_variant.py b/plotly/validators/parcoords/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_variant.py rename to plotly/validators/parcoords/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_weight.py b/plotly/validators/parcoords/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/legendgrouptitle/font/_weight.py rename to plotly/validators/parcoords/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/__init__.py b/plotly/validators/parcoords/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/__init__.py rename to plotly/validators/parcoords/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_autocolorscale.py b/plotly/validators/parcoords/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_autocolorscale.py rename to plotly/validators/parcoords/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_cauto.py b/plotly/validators/parcoords/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_cauto.py rename to plotly/validators/parcoords/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_cmax.py b/plotly/validators/parcoords/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_cmax.py rename to plotly/validators/parcoords/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_cmid.py b/plotly/validators/parcoords/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_cmid.py rename to plotly/validators/parcoords/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_cmin.py b/plotly/validators/parcoords/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_cmin.py rename to plotly/validators/parcoords/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_color.py b/plotly/validators/parcoords/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_color.py rename to plotly/validators/parcoords/line/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_coloraxis.py b/plotly/validators/parcoords/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_coloraxis.py rename to plotly/validators/parcoords/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_colorbar.py b/plotly/validators/parcoords/line/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_colorbar.py rename to plotly/validators/parcoords/line/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_colorscale.py b/plotly/validators/parcoords/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_colorscale.py rename to plotly/validators/parcoords/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_colorsrc.py b/plotly/validators/parcoords/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_colorsrc.py rename to plotly/validators/parcoords/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_reversescale.py b/plotly/validators/parcoords/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_reversescale.py rename to plotly/validators/parcoords/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/_showscale.py b/plotly/validators/parcoords/line/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/_showscale.py rename to plotly/validators/parcoords/line/_showscale.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/__init__.py b/plotly/validators/parcoords/line/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/__init__.py rename to plotly/validators/parcoords/line/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_bgcolor.py b/plotly/validators/parcoords/line/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_bgcolor.py rename to plotly/validators/parcoords/line/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_bordercolor.py b/plotly/validators/parcoords/line/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_bordercolor.py rename to plotly/validators/parcoords/line/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_borderwidth.py b/plotly/validators/parcoords/line/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_borderwidth.py rename to plotly/validators/parcoords/line/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_dtick.py b/plotly/validators/parcoords/line/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_dtick.py rename to plotly/validators/parcoords/line/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_exponentformat.py b/plotly/validators/parcoords/line/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_exponentformat.py rename to plotly/validators/parcoords/line/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_labelalias.py b/plotly/validators/parcoords/line/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_labelalias.py rename to plotly/validators/parcoords/line/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_len.py b/plotly/validators/parcoords/line/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_len.py rename to plotly/validators/parcoords/line/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_lenmode.py b/plotly/validators/parcoords/line/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_lenmode.py rename to plotly/validators/parcoords/line/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_minexponent.py b/plotly/validators/parcoords/line/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_minexponent.py rename to plotly/validators/parcoords/line/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_nticks.py b/plotly/validators/parcoords/line/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_nticks.py rename to plotly/validators/parcoords/line/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_orientation.py b/plotly/validators/parcoords/line/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_orientation.py rename to plotly/validators/parcoords/line/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_outlinecolor.py b/plotly/validators/parcoords/line/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_outlinecolor.py rename to plotly/validators/parcoords/line/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_outlinewidth.py b/plotly/validators/parcoords/line/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_outlinewidth.py rename to plotly/validators/parcoords/line/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_separatethousands.py b/plotly/validators/parcoords/line/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_separatethousands.py rename to plotly/validators/parcoords/line/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showexponent.py b/plotly/validators/parcoords/line/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showexponent.py rename to plotly/validators/parcoords/line/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showticklabels.py b/plotly/validators/parcoords/line/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showticklabels.py rename to plotly/validators/parcoords/line/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showtickprefix.py b/plotly/validators/parcoords/line/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showtickprefix.py rename to plotly/validators/parcoords/line/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showticksuffix.py b/plotly/validators/parcoords/line/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_showticksuffix.py rename to plotly/validators/parcoords/line/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_thickness.py b/plotly/validators/parcoords/line/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_thickness.py rename to plotly/validators/parcoords/line/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_thicknessmode.py b/plotly/validators/parcoords/line/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_thicknessmode.py rename to plotly/validators/parcoords/line/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tick0.py b/plotly/validators/parcoords/line/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tick0.py rename to plotly/validators/parcoords/line/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickangle.py b/plotly/validators/parcoords/line/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickangle.py rename to plotly/validators/parcoords/line/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickcolor.py b/plotly/validators/parcoords/line/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickcolor.py rename to plotly/validators/parcoords/line/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickfont.py b/plotly/validators/parcoords/line/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickfont.py rename to plotly/validators/parcoords/line/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickformat.py b/plotly/validators/parcoords/line/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickformat.py rename to plotly/validators/parcoords/line/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py b/plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py rename to plotly/validators/parcoords/line/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickformatstops.py b/plotly/validators/parcoords/line/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickformatstops.py rename to plotly/validators/parcoords/line/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklabeloverflow.py b/plotly/validators/parcoords/line/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklabeloverflow.py rename to plotly/validators/parcoords/line/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklabelposition.py b/plotly/validators/parcoords/line/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklabelposition.py rename to plotly/validators/parcoords/line/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklabelstep.py b/plotly/validators/parcoords/line/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklabelstep.py rename to plotly/validators/parcoords/line/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklen.py b/plotly/validators/parcoords/line/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticklen.py rename to plotly/validators/parcoords/line/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickmode.py b/plotly/validators/parcoords/line/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickmode.py rename to plotly/validators/parcoords/line/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickprefix.py b/plotly/validators/parcoords/line/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickprefix.py rename to plotly/validators/parcoords/line/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticks.py b/plotly/validators/parcoords/line/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticks.py rename to plotly/validators/parcoords/line/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticksuffix.py b/plotly/validators/parcoords/line/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticksuffix.py rename to plotly/validators/parcoords/line/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticktext.py b/plotly/validators/parcoords/line/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticktext.py rename to plotly/validators/parcoords/line/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticktextsrc.py b/plotly/validators/parcoords/line/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ticktextsrc.py rename to plotly/validators/parcoords/line/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickvals.py b/plotly/validators/parcoords/line/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickvals.py rename to plotly/validators/parcoords/line/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickvalssrc.py b/plotly/validators/parcoords/line/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickvalssrc.py rename to plotly/validators/parcoords/line/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickwidth.py b/plotly/validators/parcoords/line/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_tickwidth.py rename to plotly/validators/parcoords/line/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_title.py b/plotly/validators/parcoords/line/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_title.py rename to plotly/validators/parcoords/line/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_x.py b/plotly/validators/parcoords/line/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_x.py rename to plotly/validators/parcoords/line/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_xanchor.py b/plotly/validators/parcoords/line/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_xanchor.py rename to plotly/validators/parcoords/line/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_xpad.py b/plotly/validators/parcoords/line/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_xpad.py rename to plotly/validators/parcoords/line/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_xref.py b/plotly/validators/parcoords/line/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_xref.py rename to plotly/validators/parcoords/line/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_y.py b/plotly/validators/parcoords/line/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_y.py rename to plotly/validators/parcoords/line/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_yanchor.py b/plotly/validators/parcoords/line/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_yanchor.py rename to plotly/validators/parcoords/line/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ypad.py b/plotly/validators/parcoords/line/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_ypad.py rename to plotly/validators/parcoords/line/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/_yref.py b/plotly/validators/parcoords/line/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/_yref.py rename to plotly/validators/parcoords/line/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/__init__.py b/plotly/validators/parcoords/line/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/__init__.py rename to plotly/validators/parcoords/line/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_color.py b/plotly/validators/parcoords/line/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_color.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_family.py b/plotly/validators/parcoords/line/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_family.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_lineposition.py b/plotly/validators/parcoords/line/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_lineposition.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_shadow.py b/plotly/validators/parcoords/line/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_shadow.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_size.py b/plotly/validators/parcoords/line/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_size.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_style.py b/plotly/validators/parcoords/line/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_style.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_textcase.py b/plotly/validators/parcoords/line/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_textcase.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_variant.py b/plotly/validators/parcoords/line/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_variant.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_weight.py b/plotly/validators/parcoords/line/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickfont/_weight.py rename to plotly/validators/parcoords/line/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/__init__.py b/plotly/validators/parcoords/line/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/__init__.py rename to plotly/validators/parcoords/line/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/parcoords/line/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/parcoords/line/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_enabled.py b/plotly/validators/parcoords/line/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_enabled.py rename to plotly/validators/parcoords/line/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_name.py b/plotly/validators/parcoords/line/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_name.py rename to plotly/validators/parcoords/line/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/parcoords/line/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/parcoords/line/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_value.py b/plotly/validators/parcoords/line/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/tickformatstop/_value.py rename to plotly/validators/parcoords/line/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/__init__.py b/plotly/validators/parcoords/line/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/__init__.py rename to plotly/validators/parcoords/line/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/_font.py b/plotly/validators/parcoords/line/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/_font.py rename to plotly/validators/parcoords/line/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/_side.py b/plotly/validators/parcoords/line/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/_side.py rename to plotly/validators/parcoords/line/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/_text.py b/plotly/validators/parcoords/line/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/_text.py rename to plotly/validators/parcoords/line/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/__init__.py b/plotly/validators/parcoords/line/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/__init__.py rename to plotly/validators/parcoords/line/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_color.py b/plotly/validators/parcoords/line/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_color.py rename to plotly/validators/parcoords/line/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_family.py b/plotly/validators/parcoords/line/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_family.py rename to plotly/validators/parcoords/line/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_lineposition.py b/plotly/validators/parcoords/line/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_lineposition.py rename to plotly/validators/parcoords/line/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_shadow.py b/plotly/validators/parcoords/line/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_shadow.py rename to plotly/validators/parcoords/line/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_size.py b/plotly/validators/parcoords/line/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_size.py rename to plotly/validators/parcoords/line/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_style.py b/plotly/validators/parcoords/line/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_style.py rename to plotly/validators/parcoords/line/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_textcase.py b/plotly/validators/parcoords/line/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_textcase.py rename to plotly/validators/parcoords/line/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_variant.py b/plotly/validators/parcoords/line/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_variant.py rename to plotly/validators/parcoords/line/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_weight.py b/plotly/validators/parcoords/line/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/line/colorbar/title/font/_weight.py rename to plotly/validators/parcoords/line/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/__init__.py b/plotly/validators/parcoords/rangefont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/__init__.py rename to plotly/validators/parcoords/rangefont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_color.py b/plotly/validators/parcoords/rangefont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_color.py rename to plotly/validators/parcoords/rangefont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_family.py b/plotly/validators/parcoords/rangefont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_family.py rename to plotly/validators/parcoords/rangefont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_lineposition.py b/plotly/validators/parcoords/rangefont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_lineposition.py rename to plotly/validators/parcoords/rangefont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_shadow.py b/plotly/validators/parcoords/rangefont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_shadow.py rename to plotly/validators/parcoords/rangefont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_size.py b/plotly/validators/parcoords/rangefont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_size.py rename to plotly/validators/parcoords/rangefont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_style.py b/plotly/validators/parcoords/rangefont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_style.py rename to plotly/validators/parcoords/rangefont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_textcase.py b/plotly/validators/parcoords/rangefont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_textcase.py rename to plotly/validators/parcoords/rangefont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_variant.py b/plotly/validators/parcoords/rangefont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_variant.py rename to plotly/validators/parcoords/rangefont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcoords/rangefont/_weight.py b/plotly/validators/parcoords/rangefont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/rangefont/_weight.py rename to plotly/validators/parcoords/rangefont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/stream/__init__.py b/plotly/validators/parcoords/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/stream/__init__.py rename to plotly/validators/parcoords/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/stream/_maxpoints.py b/plotly/validators/parcoords/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/stream/_maxpoints.py rename to plotly/validators/parcoords/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/parcoords/stream/_token.py b/plotly/validators/parcoords/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/stream/_token.py rename to plotly/validators/parcoords/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/__init__.py b/plotly/validators/parcoords/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/__init__.py rename to plotly/validators/parcoords/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_color.py b/plotly/validators/parcoords/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_color.py rename to plotly/validators/parcoords/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_family.py b/plotly/validators/parcoords/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_family.py rename to plotly/validators/parcoords/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_lineposition.py b/plotly/validators/parcoords/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_lineposition.py rename to plotly/validators/parcoords/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_shadow.py b/plotly/validators/parcoords/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_shadow.py rename to plotly/validators/parcoords/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_size.py b/plotly/validators/parcoords/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_size.py rename to plotly/validators/parcoords/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_style.py b/plotly/validators/parcoords/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_style.py rename to plotly/validators/parcoords/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_textcase.py b/plotly/validators/parcoords/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_textcase.py rename to plotly/validators/parcoords/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_variant.py b/plotly/validators/parcoords/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_variant.py rename to plotly/validators/parcoords/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/parcoords/tickfont/_weight.py b/plotly/validators/parcoords/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/tickfont/_weight.py rename to plotly/validators/parcoords/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/parcoords/unselected/__init__.py b/plotly/validators/parcoords/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/unselected/__init__.py rename to plotly/validators/parcoords/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/unselected/_line.py b/plotly/validators/parcoords/unselected/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/unselected/_line.py rename to plotly/validators/parcoords/unselected/_line.py diff --git a/packages/python/plotly/plotly/validators/parcoords/unselected/line/__init__.py b/plotly/validators/parcoords/unselected/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/unselected/line/__init__.py rename to plotly/validators/parcoords/unselected/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/parcoords/unselected/line/_color.py b/plotly/validators/parcoords/unselected/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/unselected/line/_color.py rename to plotly/validators/parcoords/unselected/line/_color.py diff --git a/packages/python/plotly/plotly/validators/parcoords/unselected/line/_opacity.py b/plotly/validators/parcoords/unselected/line/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/parcoords/unselected/line/_opacity.py rename to plotly/validators/parcoords/unselected/line/_opacity.py diff --git a/packages/python/plotly/plotly/validators/pie/__init__.py b/plotly/validators/pie/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/__init__.py rename to plotly/validators/pie/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/_automargin.py b/plotly/validators/pie/_automargin.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_automargin.py rename to plotly/validators/pie/_automargin.py diff --git a/packages/python/plotly/plotly/validators/pie/_customdata.py b/plotly/validators/pie/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_customdata.py rename to plotly/validators/pie/_customdata.py diff --git a/packages/python/plotly/plotly/validators/pie/_customdatasrc.py b/plotly/validators/pie/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_customdatasrc.py rename to plotly/validators/pie/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_direction.py b/plotly/validators/pie/_direction.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_direction.py rename to plotly/validators/pie/_direction.py diff --git a/packages/python/plotly/plotly/validators/pie/_dlabel.py b/plotly/validators/pie/_dlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_dlabel.py rename to plotly/validators/pie/_dlabel.py diff --git a/packages/python/plotly/plotly/validators/pie/_domain.py b/plotly/validators/pie/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_domain.py rename to plotly/validators/pie/_domain.py diff --git a/packages/python/plotly/plotly/validators/pie/_hole.py b/plotly/validators/pie/_hole.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hole.py rename to plotly/validators/pie/_hole.py diff --git a/packages/python/plotly/plotly/validators/pie/_hoverinfo.py b/plotly/validators/pie/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hoverinfo.py rename to plotly/validators/pie/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/pie/_hoverinfosrc.py b/plotly/validators/pie/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hoverinfosrc.py rename to plotly/validators/pie/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_hoverlabel.py b/plotly/validators/pie/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hoverlabel.py rename to plotly/validators/pie/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/pie/_hovertemplate.py b/plotly/validators/pie/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hovertemplate.py rename to plotly/validators/pie/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/pie/_hovertemplatesrc.py b/plotly/validators/pie/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hovertemplatesrc.py rename to plotly/validators/pie/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_hovertext.py b/plotly/validators/pie/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hovertext.py rename to plotly/validators/pie/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/pie/_hovertextsrc.py b/plotly/validators/pie/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_hovertextsrc.py rename to plotly/validators/pie/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_ids.py b/plotly/validators/pie/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_ids.py rename to plotly/validators/pie/_ids.py diff --git a/packages/python/plotly/plotly/validators/pie/_idssrc.py b/plotly/validators/pie/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_idssrc.py rename to plotly/validators/pie/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_insidetextfont.py b/plotly/validators/pie/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_insidetextfont.py rename to plotly/validators/pie/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/pie/_insidetextorientation.py b/plotly/validators/pie/_insidetextorientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_insidetextorientation.py rename to plotly/validators/pie/_insidetextorientation.py diff --git a/packages/python/plotly/plotly/validators/pie/_label0.py b/plotly/validators/pie/_label0.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_label0.py rename to plotly/validators/pie/_label0.py diff --git a/packages/python/plotly/plotly/validators/pie/_labels.py b/plotly/validators/pie/_labels.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_labels.py rename to plotly/validators/pie/_labels.py diff --git a/packages/python/plotly/plotly/validators/pie/_labelssrc.py b/plotly/validators/pie/_labelssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_labelssrc.py rename to plotly/validators/pie/_labelssrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_legend.py b/plotly/validators/pie/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_legend.py rename to plotly/validators/pie/_legend.py diff --git a/packages/python/plotly/plotly/validators/pie/_legendgroup.py b/plotly/validators/pie/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_legendgroup.py rename to plotly/validators/pie/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/pie/_legendgrouptitle.py b/plotly/validators/pie/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_legendgrouptitle.py rename to plotly/validators/pie/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/pie/_legendrank.py b/plotly/validators/pie/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_legendrank.py rename to plotly/validators/pie/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/pie/_legendwidth.py b/plotly/validators/pie/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_legendwidth.py rename to plotly/validators/pie/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/pie/_marker.py b/plotly/validators/pie/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_marker.py rename to plotly/validators/pie/_marker.py diff --git a/packages/python/plotly/plotly/validators/pie/_meta.py b/plotly/validators/pie/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_meta.py rename to plotly/validators/pie/_meta.py diff --git a/packages/python/plotly/plotly/validators/pie/_metasrc.py b/plotly/validators/pie/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_metasrc.py rename to plotly/validators/pie/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_name.py b/plotly/validators/pie/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_name.py rename to plotly/validators/pie/_name.py diff --git a/packages/python/plotly/plotly/validators/pie/_opacity.py b/plotly/validators/pie/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_opacity.py rename to plotly/validators/pie/_opacity.py diff --git a/packages/python/plotly/plotly/validators/pie/_outsidetextfont.py b/plotly/validators/pie/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_outsidetextfont.py rename to plotly/validators/pie/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/pie/_pull.py b/plotly/validators/pie/_pull.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_pull.py rename to plotly/validators/pie/_pull.py diff --git a/packages/python/plotly/plotly/validators/pie/_pullsrc.py b/plotly/validators/pie/_pullsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_pullsrc.py rename to plotly/validators/pie/_pullsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_rotation.py b/plotly/validators/pie/_rotation.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_rotation.py rename to plotly/validators/pie/_rotation.py diff --git a/packages/python/plotly/plotly/validators/pie/_scalegroup.py b/plotly/validators/pie/_scalegroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_scalegroup.py rename to plotly/validators/pie/_scalegroup.py diff --git a/packages/python/plotly/plotly/validators/pie/_showlegend.py b/plotly/validators/pie/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_showlegend.py rename to plotly/validators/pie/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/pie/_sort.py b/plotly/validators/pie/_sort.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_sort.py rename to plotly/validators/pie/_sort.py diff --git a/packages/python/plotly/plotly/validators/pie/_stream.py b/plotly/validators/pie/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_stream.py rename to plotly/validators/pie/_stream.py diff --git a/packages/python/plotly/plotly/validators/pie/_text.py b/plotly/validators/pie/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_text.py rename to plotly/validators/pie/_text.py diff --git a/packages/python/plotly/plotly/validators/pie/_textfont.py b/plotly/validators/pie/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_textfont.py rename to plotly/validators/pie/_textfont.py diff --git a/packages/python/plotly/plotly/validators/pie/_textinfo.py b/plotly/validators/pie/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_textinfo.py rename to plotly/validators/pie/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/pie/_textposition.py b/plotly/validators/pie/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_textposition.py rename to plotly/validators/pie/_textposition.py diff --git a/packages/python/plotly/plotly/validators/pie/_textpositionsrc.py b/plotly/validators/pie/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_textpositionsrc.py rename to plotly/validators/pie/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_textsrc.py b/plotly/validators/pie/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_textsrc.py rename to plotly/validators/pie/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_texttemplate.py b/plotly/validators/pie/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_texttemplate.py rename to plotly/validators/pie/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/pie/_texttemplatesrc.py b/plotly/validators/pie/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_texttemplatesrc.py rename to plotly/validators/pie/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_title.py b/plotly/validators/pie/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_title.py rename to plotly/validators/pie/_title.py diff --git a/packages/python/plotly/plotly/validators/pie/_uid.py b/plotly/validators/pie/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_uid.py rename to plotly/validators/pie/_uid.py diff --git a/packages/python/plotly/plotly/validators/pie/_uirevision.py b/plotly/validators/pie/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_uirevision.py rename to plotly/validators/pie/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/pie/_values.py b/plotly/validators/pie/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_values.py rename to plotly/validators/pie/_values.py diff --git a/packages/python/plotly/plotly/validators/pie/_valuessrc.py b/plotly/validators/pie/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_valuessrc.py rename to plotly/validators/pie/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/pie/_visible.py b/plotly/validators/pie/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/_visible.py rename to plotly/validators/pie/_visible.py diff --git a/packages/python/plotly/plotly/validators/pie/domain/__init__.py b/plotly/validators/pie/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/domain/__init__.py rename to plotly/validators/pie/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/domain/_column.py b/plotly/validators/pie/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/domain/_column.py rename to plotly/validators/pie/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/pie/domain/_row.py b/plotly/validators/pie/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/domain/_row.py rename to plotly/validators/pie/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/pie/domain/_x.py b/plotly/validators/pie/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/domain/_x.py rename to plotly/validators/pie/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/pie/domain/_y.py b/plotly/validators/pie/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/domain/_y.py rename to plotly/validators/pie/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/__init__.py b/plotly/validators/pie/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/__init__.py rename to plotly/validators/pie/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_align.py b/plotly/validators/pie/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_align.py rename to plotly/validators/pie/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_alignsrc.py b/plotly/validators/pie/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_alignsrc.py rename to plotly/validators/pie/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_bgcolor.py b/plotly/validators/pie/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_bgcolor.py rename to plotly/validators/pie/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_bgcolorsrc.py b/plotly/validators/pie/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_bgcolorsrc.py rename to plotly/validators/pie/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_bordercolor.py b/plotly/validators/pie/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_bordercolor.py rename to plotly/validators/pie/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_bordercolorsrc.py b/plotly/validators/pie/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_bordercolorsrc.py rename to plotly/validators/pie/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_font.py b/plotly/validators/pie/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_font.py rename to plotly/validators/pie/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_namelength.py b/plotly/validators/pie/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_namelength.py rename to plotly/validators/pie/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/_namelengthsrc.py b/plotly/validators/pie/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/_namelengthsrc.py rename to plotly/validators/pie/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/__init__.py b/plotly/validators/pie/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/__init__.py rename to plotly/validators/pie/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_color.py b/plotly/validators/pie/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_color.py rename to plotly/validators/pie/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_colorsrc.py b/plotly/validators/pie/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_colorsrc.py rename to plotly/validators/pie/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_family.py b/plotly/validators/pie/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_family.py rename to plotly/validators/pie/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_familysrc.py b/plotly/validators/pie/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_familysrc.py rename to plotly/validators/pie/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_lineposition.py b/plotly/validators/pie/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_lineposition.py rename to plotly/validators/pie/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_linepositionsrc.py b/plotly/validators/pie/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/pie/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_shadow.py b/plotly/validators/pie/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_shadow.py rename to plotly/validators/pie/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_shadowsrc.py b/plotly/validators/pie/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_shadowsrc.py rename to plotly/validators/pie/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_size.py b/plotly/validators/pie/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_size.py rename to plotly/validators/pie/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_sizesrc.py b/plotly/validators/pie/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_sizesrc.py rename to plotly/validators/pie/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_style.py b/plotly/validators/pie/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_style.py rename to plotly/validators/pie/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_stylesrc.py b/plotly/validators/pie/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_stylesrc.py rename to plotly/validators/pie/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_textcase.py b/plotly/validators/pie/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_textcase.py rename to plotly/validators/pie/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_textcasesrc.py b/plotly/validators/pie/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_textcasesrc.py rename to plotly/validators/pie/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_variant.py b/plotly/validators/pie/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_variant.py rename to plotly/validators/pie/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_variantsrc.py b/plotly/validators/pie/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_variantsrc.py rename to plotly/validators/pie/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_weight.py b/plotly/validators/pie/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_weight.py rename to plotly/validators/pie/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/pie/hoverlabel/font/_weightsrc.py b/plotly/validators/pie/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/hoverlabel/font/_weightsrc.py rename to plotly/validators/pie/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/__init__.py b/plotly/validators/pie/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/__init__.py rename to plotly/validators/pie/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_color.py b/plotly/validators/pie/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_color.py rename to plotly/validators/pie/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_colorsrc.py b/plotly/validators/pie/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_colorsrc.py rename to plotly/validators/pie/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_family.py b/plotly/validators/pie/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_family.py rename to plotly/validators/pie/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_familysrc.py b/plotly/validators/pie/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_familysrc.py rename to plotly/validators/pie/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_lineposition.py b/plotly/validators/pie/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_lineposition.py rename to plotly/validators/pie/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_linepositionsrc.py b/plotly/validators/pie/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_linepositionsrc.py rename to plotly/validators/pie/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_shadow.py b/plotly/validators/pie/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_shadow.py rename to plotly/validators/pie/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_shadowsrc.py b/plotly/validators/pie/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_shadowsrc.py rename to plotly/validators/pie/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_size.py b/plotly/validators/pie/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_size.py rename to plotly/validators/pie/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_sizesrc.py b/plotly/validators/pie/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_sizesrc.py rename to plotly/validators/pie/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_style.py b/plotly/validators/pie/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_style.py rename to plotly/validators/pie/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_stylesrc.py b/plotly/validators/pie/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_stylesrc.py rename to plotly/validators/pie/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_textcase.py b/plotly/validators/pie/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_textcase.py rename to plotly/validators/pie/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_textcasesrc.py b/plotly/validators/pie/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_textcasesrc.py rename to plotly/validators/pie/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_variant.py b/plotly/validators/pie/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_variant.py rename to plotly/validators/pie/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_variantsrc.py b/plotly/validators/pie/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_variantsrc.py rename to plotly/validators/pie/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_weight.py b/plotly/validators/pie/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_weight.py rename to plotly/validators/pie/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/pie/insidetextfont/_weightsrc.py b/plotly/validators/pie/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/insidetextfont/_weightsrc.py rename to plotly/validators/pie/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/__init__.py b/plotly/validators/pie/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/__init__.py rename to plotly/validators/pie/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/_font.py b/plotly/validators/pie/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/_font.py rename to plotly/validators/pie/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/_text.py b/plotly/validators/pie/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/_text.py rename to plotly/validators/pie/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/__init__.py b/plotly/validators/pie/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/__init__.py rename to plotly/validators/pie/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_color.py b/plotly/validators/pie/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_color.py rename to plotly/validators/pie/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_family.py b/plotly/validators/pie/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_family.py rename to plotly/validators/pie/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_lineposition.py b/plotly/validators/pie/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_lineposition.py rename to plotly/validators/pie/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_shadow.py b/plotly/validators/pie/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_shadow.py rename to plotly/validators/pie/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_size.py b/plotly/validators/pie/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_size.py rename to plotly/validators/pie/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_style.py b/plotly/validators/pie/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_style.py rename to plotly/validators/pie/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_textcase.py b/plotly/validators/pie/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_textcase.py rename to plotly/validators/pie/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_variant.py b/plotly/validators/pie/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_variant.py rename to plotly/validators/pie/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_weight.py b/plotly/validators/pie/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/legendgrouptitle/font/_weight.py rename to plotly/validators/pie/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/__init__.py b/plotly/validators/pie/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/__init__.py rename to plotly/validators/pie/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/_colors.py b/plotly/validators/pie/marker/_colors.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/_colors.py rename to plotly/validators/pie/marker/_colors.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/_colorssrc.py b/plotly/validators/pie/marker/_colorssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/_colorssrc.py rename to plotly/validators/pie/marker/_colorssrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/_line.py b/plotly/validators/pie/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/_line.py rename to plotly/validators/pie/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/_pattern.py b/plotly/validators/pie/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/_pattern.py rename to plotly/validators/pie/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/line/__init__.py b/plotly/validators/pie/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/line/__init__.py rename to plotly/validators/pie/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/line/_color.py b/plotly/validators/pie/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/line/_color.py rename to plotly/validators/pie/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/line/_colorsrc.py b/plotly/validators/pie/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/line/_colorsrc.py rename to plotly/validators/pie/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/line/_width.py b/plotly/validators/pie/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/line/_width.py rename to plotly/validators/pie/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/line/_widthsrc.py b/plotly/validators/pie/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/line/_widthsrc.py rename to plotly/validators/pie/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/__init__.py b/plotly/validators/pie/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/__init__.py rename to plotly/validators/pie/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_bgcolor.py b/plotly/validators/pie/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_bgcolor.py rename to plotly/validators/pie/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_bgcolorsrc.py b/plotly/validators/pie/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_bgcolorsrc.py rename to plotly/validators/pie/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_fgcolor.py b/plotly/validators/pie/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_fgcolor.py rename to plotly/validators/pie/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_fgcolorsrc.py b/plotly/validators/pie/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_fgcolorsrc.py rename to plotly/validators/pie/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_fgopacity.py b/plotly/validators/pie/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_fgopacity.py rename to plotly/validators/pie/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_fillmode.py b/plotly/validators/pie/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_fillmode.py rename to plotly/validators/pie/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_shape.py b/plotly/validators/pie/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_shape.py rename to plotly/validators/pie/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_shapesrc.py b/plotly/validators/pie/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_shapesrc.py rename to plotly/validators/pie/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_size.py b/plotly/validators/pie/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_size.py rename to plotly/validators/pie/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_sizesrc.py b/plotly/validators/pie/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_sizesrc.py rename to plotly/validators/pie/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_solidity.py b/plotly/validators/pie/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_solidity.py rename to plotly/validators/pie/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/pie/marker/pattern/_soliditysrc.py b/plotly/validators/pie/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/marker/pattern/_soliditysrc.py rename to plotly/validators/pie/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/__init__.py b/plotly/validators/pie/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/__init__.py rename to plotly/validators/pie/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_color.py b/plotly/validators/pie/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_color.py rename to plotly/validators/pie/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_colorsrc.py b/plotly/validators/pie/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_colorsrc.py rename to plotly/validators/pie/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_family.py b/plotly/validators/pie/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_family.py rename to plotly/validators/pie/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_familysrc.py b/plotly/validators/pie/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_familysrc.py rename to plotly/validators/pie/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_lineposition.py b/plotly/validators/pie/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_lineposition.py rename to plotly/validators/pie/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_linepositionsrc.py b/plotly/validators/pie/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_linepositionsrc.py rename to plotly/validators/pie/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_shadow.py b/plotly/validators/pie/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_shadow.py rename to plotly/validators/pie/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_shadowsrc.py b/plotly/validators/pie/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_shadowsrc.py rename to plotly/validators/pie/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_size.py b/plotly/validators/pie/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_size.py rename to plotly/validators/pie/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_sizesrc.py b/plotly/validators/pie/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_sizesrc.py rename to plotly/validators/pie/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_style.py b/plotly/validators/pie/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_style.py rename to plotly/validators/pie/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_stylesrc.py b/plotly/validators/pie/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_stylesrc.py rename to plotly/validators/pie/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_textcase.py b/plotly/validators/pie/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_textcase.py rename to plotly/validators/pie/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_textcasesrc.py b/plotly/validators/pie/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_textcasesrc.py rename to plotly/validators/pie/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_variant.py b/plotly/validators/pie/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_variant.py rename to plotly/validators/pie/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_variantsrc.py b/plotly/validators/pie/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_variantsrc.py rename to plotly/validators/pie/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_weight.py b/plotly/validators/pie/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_weight.py rename to plotly/validators/pie/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/pie/outsidetextfont/_weightsrc.py b/plotly/validators/pie/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/outsidetextfont/_weightsrc.py rename to plotly/validators/pie/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/stream/__init__.py b/plotly/validators/pie/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/stream/__init__.py rename to plotly/validators/pie/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/stream/_maxpoints.py b/plotly/validators/pie/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/stream/_maxpoints.py rename to plotly/validators/pie/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/pie/stream/_token.py b/plotly/validators/pie/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/stream/_token.py rename to plotly/validators/pie/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/__init__.py b/plotly/validators/pie/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/__init__.py rename to plotly/validators/pie/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_color.py b/plotly/validators/pie/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_color.py rename to plotly/validators/pie/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_colorsrc.py b/plotly/validators/pie/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_colorsrc.py rename to plotly/validators/pie/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_family.py b/plotly/validators/pie/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_family.py rename to plotly/validators/pie/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_familysrc.py b/plotly/validators/pie/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_familysrc.py rename to plotly/validators/pie/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_lineposition.py b/plotly/validators/pie/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_lineposition.py rename to plotly/validators/pie/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_linepositionsrc.py b/plotly/validators/pie/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_linepositionsrc.py rename to plotly/validators/pie/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_shadow.py b/plotly/validators/pie/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_shadow.py rename to plotly/validators/pie/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_shadowsrc.py b/plotly/validators/pie/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_shadowsrc.py rename to plotly/validators/pie/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_size.py b/plotly/validators/pie/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_size.py rename to plotly/validators/pie/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_sizesrc.py b/plotly/validators/pie/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_sizesrc.py rename to plotly/validators/pie/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_style.py b/plotly/validators/pie/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_style.py rename to plotly/validators/pie/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_stylesrc.py b/plotly/validators/pie/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_stylesrc.py rename to plotly/validators/pie/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_textcase.py b/plotly/validators/pie/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_textcase.py rename to plotly/validators/pie/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_textcasesrc.py b/plotly/validators/pie/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_textcasesrc.py rename to plotly/validators/pie/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_variant.py b/plotly/validators/pie/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_variant.py rename to plotly/validators/pie/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_variantsrc.py b/plotly/validators/pie/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_variantsrc.py rename to plotly/validators/pie/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_weight.py b/plotly/validators/pie/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_weight.py rename to plotly/validators/pie/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/pie/textfont/_weightsrc.py b/plotly/validators/pie/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/textfont/_weightsrc.py rename to plotly/validators/pie/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/__init__.py b/plotly/validators/pie/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/__init__.py rename to plotly/validators/pie/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/title/_font.py b/plotly/validators/pie/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/_font.py rename to plotly/validators/pie/title/_font.py diff --git a/packages/python/plotly/plotly/validators/pie/title/_position.py b/plotly/validators/pie/title/_position.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/_position.py rename to plotly/validators/pie/title/_position.py diff --git a/packages/python/plotly/plotly/validators/pie/title/_text.py b/plotly/validators/pie/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/_text.py rename to plotly/validators/pie/title/_text.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/__init__.py b/plotly/validators/pie/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/__init__.py rename to plotly/validators/pie/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_color.py b/plotly/validators/pie/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_color.py rename to plotly/validators/pie/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_colorsrc.py b/plotly/validators/pie/title/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_colorsrc.py rename to plotly/validators/pie/title/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_family.py b/plotly/validators/pie/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_family.py rename to plotly/validators/pie/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_familysrc.py b/plotly/validators/pie/title/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_familysrc.py rename to plotly/validators/pie/title/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_lineposition.py b/plotly/validators/pie/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_lineposition.py rename to plotly/validators/pie/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_linepositionsrc.py b/plotly/validators/pie/title/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_linepositionsrc.py rename to plotly/validators/pie/title/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_shadow.py b/plotly/validators/pie/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_shadow.py rename to plotly/validators/pie/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_shadowsrc.py b/plotly/validators/pie/title/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_shadowsrc.py rename to plotly/validators/pie/title/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_size.py b/plotly/validators/pie/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_size.py rename to plotly/validators/pie/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_sizesrc.py b/plotly/validators/pie/title/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_sizesrc.py rename to plotly/validators/pie/title/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_style.py b/plotly/validators/pie/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_style.py rename to plotly/validators/pie/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_stylesrc.py b/plotly/validators/pie/title/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_stylesrc.py rename to plotly/validators/pie/title/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_textcase.py b/plotly/validators/pie/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_textcase.py rename to plotly/validators/pie/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_textcasesrc.py b/plotly/validators/pie/title/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_textcasesrc.py rename to plotly/validators/pie/title/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_variant.py b/plotly/validators/pie/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_variant.py rename to plotly/validators/pie/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_variantsrc.py b/plotly/validators/pie/title/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_variantsrc.py rename to plotly/validators/pie/title/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_weight.py b/plotly/validators/pie/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_weight.py rename to plotly/validators/pie/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/pie/title/font/_weightsrc.py b/plotly/validators/pie/title/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/pie/title/font/_weightsrc.py rename to plotly/validators/pie/title/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/__init__.py b/plotly/validators/sankey/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/__init__.py rename to plotly/validators/sankey/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/_arrangement.py b/plotly/validators/sankey/_arrangement.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_arrangement.py rename to plotly/validators/sankey/_arrangement.py diff --git a/packages/python/plotly/plotly/validators/sankey/_customdata.py b/plotly/validators/sankey/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_customdata.py rename to plotly/validators/sankey/_customdata.py diff --git a/packages/python/plotly/plotly/validators/sankey/_customdatasrc.py b/plotly/validators/sankey/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_customdatasrc.py rename to plotly/validators/sankey/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/_domain.py b/plotly/validators/sankey/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_domain.py rename to plotly/validators/sankey/_domain.py diff --git a/packages/python/plotly/plotly/validators/sankey/_hoverinfo.py b/plotly/validators/sankey/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_hoverinfo.py rename to plotly/validators/sankey/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/sankey/_hoverlabel.py b/plotly/validators/sankey/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_hoverlabel.py rename to plotly/validators/sankey/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/sankey/_ids.py b/plotly/validators/sankey/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_ids.py rename to plotly/validators/sankey/_ids.py diff --git a/packages/python/plotly/plotly/validators/sankey/_idssrc.py b/plotly/validators/sankey/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_idssrc.py rename to plotly/validators/sankey/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/_legend.py b/plotly/validators/sankey/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_legend.py rename to plotly/validators/sankey/_legend.py diff --git a/packages/python/plotly/plotly/validators/sankey/_legendgrouptitle.py b/plotly/validators/sankey/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_legendgrouptitle.py rename to plotly/validators/sankey/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/sankey/_legendrank.py b/plotly/validators/sankey/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_legendrank.py rename to plotly/validators/sankey/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/sankey/_legendwidth.py b/plotly/validators/sankey/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_legendwidth.py rename to plotly/validators/sankey/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/sankey/_link.py b/plotly/validators/sankey/_link.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_link.py rename to plotly/validators/sankey/_link.py diff --git a/packages/python/plotly/plotly/validators/sankey/_meta.py b/plotly/validators/sankey/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_meta.py rename to plotly/validators/sankey/_meta.py diff --git a/packages/python/plotly/plotly/validators/sankey/_metasrc.py b/plotly/validators/sankey/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_metasrc.py rename to plotly/validators/sankey/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/_name.py b/plotly/validators/sankey/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_name.py rename to plotly/validators/sankey/_name.py diff --git a/packages/python/plotly/plotly/validators/sankey/_node.py b/plotly/validators/sankey/_node.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_node.py rename to plotly/validators/sankey/_node.py diff --git a/packages/python/plotly/plotly/validators/sankey/_orientation.py b/plotly/validators/sankey/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_orientation.py rename to plotly/validators/sankey/_orientation.py diff --git a/packages/python/plotly/plotly/validators/sankey/_selectedpoints.py b/plotly/validators/sankey/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_selectedpoints.py rename to plotly/validators/sankey/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/sankey/_stream.py b/plotly/validators/sankey/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_stream.py rename to plotly/validators/sankey/_stream.py diff --git a/packages/python/plotly/plotly/validators/sankey/_textfont.py b/plotly/validators/sankey/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_textfont.py rename to plotly/validators/sankey/_textfont.py diff --git a/packages/python/plotly/plotly/validators/sankey/_uid.py b/plotly/validators/sankey/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_uid.py rename to plotly/validators/sankey/_uid.py diff --git a/packages/python/plotly/plotly/validators/sankey/_uirevision.py b/plotly/validators/sankey/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_uirevision.py rename to plotly/validators/sankey/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/sankey/_valueformat.py b/plotly/validators/sankey/_valueformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_valueformat.py rename to plotly/validators/sankey/_valueformat.py diff --git a/packages/python/plotly/plotly/validators/sankey/_valuesuffix.py b/plotly/validators/sankey/_valuesuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_valuesuffix.py rename to plotly/validators/sankey/_valuesuffix.py diff --git a/packages/python/plotly/plotly/validators/sankey/_visible.py b/plotly/validators/sankey/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/_visible.py rename to plotly/validators/sankey/_visible.py diff --git a/packages/python/plotly/plotly/validators/sankey/domain/__init__.py b/plotly/validators/sankey/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/domain/__init__.py rename to plotly/validators/sankey/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/domain/_column.py b/plotly/validators/sankey/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/domain/_column.py rename to plotly/validators/sankey/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/sankey/domain/_row.py b/plotly/validators/sankey/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/domain/_row.py rename to plotly/validators/sankey/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/sankey/domain/_x.py b/plotly/validators/sankey/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/domain/_x.py rename to plotly/validators/sankey/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/sankey/domain/_y.py b/plotly/validators/sankey/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/domain/_y.py rename to plotly/validators/sankey/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/__init__.py b/plotly/validators/sankey/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/__init__.py rename to plotly/validators/sankey/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_align.py b/plotly/validators/sankey/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_align.py rename to plotly/validators/sankey/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_alignsrc.py b/plotly/validators/sankey/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_alignsrc.py rename to plotly/validators/sankey/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_bgcolor.py b/plotly/validators/sankey/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_bgcolor.py rename to plotly/validators/sankey/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_bgcolorsrc.py b/plotly/validators/sankey/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_bgcolorsrc.py rename to plotly/validators/sankey/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_bordercolor.py b/plotly/validators/sankey/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_bordercolor.py rename to plotly/validators/sankey/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_bordercolorsrc.py b/plotly/validators/sankey/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_bordercolorsrc.py rename to plotly/validators/sankey/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_font.py b/plotly/validators/sankey/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_font.py rename to plotly/validators/sankey/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_namelength.py b/plotly/validators/sankey/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_namelength.py rename to plotly/validators/sankey/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/_namelengthsrc.py b/plotly/validators/sankey/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/_namelengthsrc.py rename to plotly/validators/sankey/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/__init__.py b/plotly/validators/sankey/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/__init__.py rename to plotly/validators/sankey/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_color.py b/plotly/validators/sankey/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_color.py rename to plotly/validators/sankey/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_colorsrc.py b/plotly/validators/sankey/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_colorsrc.py rename to plotly/validators/sankey/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_family.py b/plotly/validators/sankey/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_family.py rename to plotly/validators/sankey/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_familysrc.py b/plotly/validators/sankey/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_familysrc.py rename to plotly/validators/sankey/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_lineposition.py b/plotly/validators/sankey/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_lineposition.py rename to plotly/validators/sankey/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_linepositionsrc.py b/plotly/validators/sankey/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/sankey/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_shadow.py b/plotly/validators/sankey/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_shadow.py rename to plotly/validators/sankey/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_shadowsrc.py b/plotly/validators/sankey/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_shadowsrc.py rename to plotly/validators/sankey/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_size.py b/plotly/validators/sankey/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_size.py rename to plotly/validators/sankey/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_sizesrc.py b/plotly/validators/sankey/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_sizesrc.py rename to plotly/validators/sankey/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_style.py b/plotly/validators/sankey/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_style.py rename to plotly/validators/sankey/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_stylesrc.py b/plotly/validators/sankey/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_stylesrc.py rename to plotly/validators/sankey/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_textcase.py b/plotly/validators/sankey/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_textcase.py rename to plotly/validators/sankey/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_textcasesrc.py b/plotly/validators/sankey/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_textcasesrc.py rename to plotly/validators/sankey/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_variant.py b/plotly/validators/sankey/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_variant.py rename to plotly/validators/sankey/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_variantsrc.py b/plotly/validators/sankey/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_variantsrc.py rename to plotly/validators/sankey/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_weight.py b/plotly/validators/sankey/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_weight.py rename to plotly/validators/sankey/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_weightsrc.py b/plotly/validators/sankey/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/hoverlabel/font/_weightsrc.py rename to plotly/validators/sankey/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/__init__.py b/plotly/validators/sankey/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/__init__.py rename to plotly/validators/sankey/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/_font.py b/plotly/validators/sankey/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/_font.py rename to plotly/validators/sankey/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/_text.py b/plotly/validators/sankey/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/_text.py rename to plotly/validators/sankey/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/__init__.py b/plotly/validators/sankey/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/__init__.py rename to plotly/validators/sankey/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_color.py b/plotly/validators/sankey/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_color.py rename to plotly/validators/sankey/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_family.py b/plotly/validators/sankey/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_family.py rename to plotly/validators/sankey/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_lineposition.py b/plotly/validators/sankey/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_lineposition.py rename to plotly/validators/sankey/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_shadow.py b/plotly/validators/sankey/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_shadow.py rename to plotly/validators/sankey/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_size.py b/plotly/validators/sankey/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_size.py rename to plotly/validators/sankey/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_style.py b/plotly/validators/sankey/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_style.py rename to plotly/validators/sankey/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_textcase.py b/plotly/validators/sankey/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_textcase.py rename to plotly/validators/sankey/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_variant.py b/plotly/validators/sankey/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_variant.py rename to plotly/validators/sankey/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_weight.py b/plotly/validators/sankey/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/legendgrouptitle/font/_weight.py rename to plotly/validators/sankey/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/__init__.py b/plotly/validators/sankey/link/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/__init__.py rename to plotly/validators/sankey/link/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_arrowlen.py b/plotly/validators/sankey/link/_arrowlen.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_arrowlen.py rename to plotly/validators/sankey/link/_arrowlen.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_color.py b/plotly/validators/sankey/link/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_color.py rename to plotly/validators/sankey/link/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_colorscaledefaults.py b/plotly/validators/sankey/link/_colorscaledefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_colorscaledefaults.py rename to plotly/validators/sankey/link/_colorscaledefaults.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_colorscales.py b/plotly/validators/sankey/link/_colorscales.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_colorscales.py rename to plotly/validators/sankey/link/_colorscales.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_colorsrc.py b/plotly/validators/sankey/link/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_colorsrc.py rename to plotly/validators/sankey/link/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_customdata.py b/plotly/validators/sankey/link/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_customdata.py rename to plotly/validators/sankey/link/_customdata.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_customdatasrc.py b/plotly/validators/sankey/link/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_customdatasrc.py rename to plotly/validators/sankey/link/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_hovercolor.py b/plotly/validators/sankey/link/_hovercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_hovercolor.py rename to plotly/validators/sankey/link/_hovercolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_hovercolorsrc.py b/plotly/validators/sankey/link/_hovercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_hovercolorsrc.py rename to plotly/validators/sankey/link/_hovercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_hoverinfo.py b/plotly/validators/sankey/link/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_hoverinfo.py rename to plotly/validators/sankey/link/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_hoverlabel.py b/plotly/validators/sankey/link/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_hoverlabel.py rename to plotly/validators/sankey/link/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_hovertemplate.py b/plotly/validators/sankey/link/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_hovertemplate.py rename to plotly/validators/sankey/link/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_hovertemplatesrc.py b/plotly/validators/sankey/link/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_hovertemplatesrc.py rename to plotly/validators/sankey/link/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_label.py b/plotly/validators/sankey/link/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_label.py rename to plotly/validators/sankey/link/_label.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_labelsrc.py b/plotly/validators/sankey/link/_labelsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_labelsrc.py rename to plotly/validators/sankey/link/_labelsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_line.py b/plotly/validators/sankey/link/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_line.py rename to plotly/validators/sankey/link/_line.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_source.py b/plotly/validators/sankey/link/_source.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_source.py rename to plotly/validators/sankey/link/_source.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_sourcesrc.py b/plotly/validators/sankey/link/_sourcesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_sourcesrc.py rename to plotly/validators/sankey/link/_sourcesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_target.py b/plotly/validators/sankey/link/_target.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_target.py rename to plotly/validators/sankey/link/_target.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_targetsrc.py b/plotly/validators/sankey/link/_targetsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_targetsrc.py rename to plotly/validators/sankey/link/_targetsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_value.py b/plotly/validators/sankey/link/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_value.py rename to plotly/validators/sankey/link/_value.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/_valuesrc.py b/plotly/validators/sankey/link/_valuesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/_valuesrc.py rename to plotly/validators/sankey/link/_valuesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/__init__.py b/plotly/validators/sankey/link/colorscale/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/__init__.py rename to plotly/validators/sankey/link/colorscale/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/_cmax.py b/plotly/validators/sankey/link/colorscale/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/_cmax.py rename to plotly/validators/sankey/link/colorscale/_cmax.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/_cmin.py b/plotly/validators/sankey/link/colorscale/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/_cmin.py rename to plotly/validators/sankey/link/colorscale/_cmin.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/_colorscale.py b/plotly/validators/sankey/link/colorscale/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/_colorscale.py rename to plotly/validators/sankey/link/colorscale/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/_label.py b/plotly/validators/sankey/link/colorscale/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/_label.py rename to plotly/validators/sankey/link/colorscale/_label.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/_name.py b/plotly/validators/sankey/link/colorscale/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/_name.py rename to plotly/validators/sankey/link/colorscale/_name.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/colorscale/_templateitemname.py b/plotly/validators/sankey/link/colorscale/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/colorscale/_templateitemname.py rename to plotly/validators/sankey/link/colorscale/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/__init__.py b/plotly/validators/sankey/link/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/__init__.py rename to plotly/validators/sankey/link/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_align.py b/plotly/validators/sankey/link/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_align.py rename to plotly/validators/sankey/link/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_alignsrc.py b/plotly/validators/sankey/link/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_alignsrc.py rename to plotly/validators/sankey/link/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bgcolor.py b/plotly/validators/sankey/link/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bgcolor.py rename to plotly/validators/sankey/link/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bgcolorsrc.py b/plotly/validators/sankey/link/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bgcolorsrc.py rename to plotly/validators/sankey/link/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bordercolor.py b/plotly/validators/sankey/link/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bordercolor.py rename to plotly/validators/sankey/link/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bordercolorsrc.py b/plotly/validators/sankey/link/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_bordercolorsrc.py rename to plotly/validators/sankey/link/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_font.py b/plotly/validators/sankey/link/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_font.py rename to plotly/validators/sankey/link/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_namelength.py b/plotly/validators/sankey/link/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_namelength.py rename to plotly/validators/sankey/link/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_namelengthsrc.py b/plotly/validators/sankey/link/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/_namelengthsrc.py rename to plotly/validators/sankey/link/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/__init__.py b/plotly/validators/sankey/link/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/__init__.py rename to plotly/validators/sankey/link/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_color.py b/plotly/validators/sankey/link/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_color.py rename to plotly/validators/sankey/link/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_colorsrc.py b/plotly/validators/sankey/link/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_colorsrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_family.py b/plotly/validators/sankey/link/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_family.py rename to plotly/validators/sankey/link/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_familysrc.py b/plotly/validators/sankey/link/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_familysrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_lineposition.py b/plotly/validators/sankey/link/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_lineposition.py rename to plotly/validators/sankey/link/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_linepositionsrc.py b/plotly/validators/sankey/link/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_shadow.py b/plotly/validators/sankey/link/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_shadow.py rename to plotly/validators/sankey/link/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_shadowsrc.py b/plotly/validators/sankey/link/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_shadowsrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_size.py b/plotly/validators/sankey/link/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_size.py rename to plotly/validators/sankey/link/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_sizesrc.py b/plotly/validators/sankey/link/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_sizesrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_style.py b/plotly/validators/sankey/link/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_style.py rename to plotly/validators/sankey/link/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_stylesrc.py b/plotly/validators/sankey/link/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_stylesrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_textcase.py b/plotly/validators/sankey/link/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_textcase.py rename to plotly/validators/sankey/link/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_textcasesrc.py b/plotly/validators/sankey/link/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_textcasesrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_variant.py b/plotly/validators/sankey/link/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_variant.py rename to plotly/validators/sankey/link/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_variantsrc.py b/plotly/validators/sankey/link/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_variantsrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_weight.py b/plotly/validators/sankey/link/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_weight.py rename to plotly/validators/sankey/link/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_weightsrc.py b/plotly/validators/sankey/link/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/hoverlabel/font/_weightsrc.py rename to plotly/validators/sankey/link/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/line/__init__.py b/plotly/validators/sankey/link/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/line/__init__.py rename to plotly/validators/sankey/link/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/line/_color.py b/plotly/validators/sankey/link/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/line/_color.py rename to plotly/validators/sankey/link/line/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/line/_colorsrc.py b/plotly/validators/sankey/link/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/line/_colorsrc.py rename to plotly/validators/sankey/link/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/line/_width.py b/plotly/validators/sankey/link/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/line/_width.py rename to plotly/validators/sankey/link/line/_width.py diff --git a/packages/python/plotly/plotly/validators/sankey/link/line/_widthsrc.py b/plotly/validators/sankey/link/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/link/line/_widthsrc.py rename to plotly/validators/sankey/link/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/__init__.py b/plotly/validators/sankey/node/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/__init__.py rename to plotly/validators/sankey/node/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_align.py b/plotly/validators/sankey/node/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_align.py rename to plotly/validators/sankey/node/_align.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_color.py b/plotly/validators/sankey/node/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_color.py rename to plotly/validators/sankey/node/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_colorsrc.py b/plotly/validators/sankey/node/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_colorsrc.py rename to plotly/validators/sankey/node/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_customdata.py b/plotly/validators/sankey/node/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_customdata.py rename to plotly/validators/sankey/node/_customdata.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_customdatasrc.py b/plotly/validators/sankey/node/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_customdatasrc.py rename to plotly/validators/sankey/node/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_groups.py b/plotly/validators/sankey/node/_groups.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_groups.py rename to plotly/validators/sankey/node/_groups.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_hoverinfo.py b/plotly/validators/sankey/node/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_hoverinfo.py rename to plotly/validators/sankey/node/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_hoverlabel.py b/plotly/validators/sankey/node/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_hoverlabel.py rename to plotly/validators/sankey/node/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_hovertemplate.py b/plotly/validators/sankey/node/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_hovertemplate.py rename to plotly/validators/sankey/node/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_hovertemplatesrc.py b/plotly/validators/sankey/node/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_hovertemplatesrc.py rename to plotly/validators/sankey/node/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_label.py b/plotly/validators/sankey/node/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_label.py rename to plotly/validators/sankey/node/_label.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_labelsrc.py b/plotly/validators/sankey/node/_labelsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_labelsrc.py rename to plotly/validators/sankey/node/_labelsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_line.py b/plotly/validators/sankey/node/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_line.py rename to plotly/validators/sankey/node/_line.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_pad.py b/plotly/validators/sankey/node/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_pad.py rename to plotly/validators/sankey/node/_pad.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_thickness.py b/plotly/validators/sankey/node/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_thickness.py rename to plotly/validators/sankey/node/_thickness.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_x.py b/plotly/validators/sankey/node/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_x.py rename to plotly/validators/sankey/node/_x.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_xsrc.py b/plotly/validators/sankey/node/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_xsrc.py rename to plotly/validators/sankey/node/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_y.py b/plotly/validators/sankey/node/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_y.py rename to plotly/validators/sankey/node/_y.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/_ysrc.py b/plotly/validators/sankey/node/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/_ysrc.py rename to plotly/validators/sankey/node/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/__init__.py b/plotly/validators/sankey/node/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/__init__.py rename to plotly/validators/sankey/node/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_align.py b/plotly/validators/sankey/node/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_align.py rename to plotly/validators/sankey/node/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_alignsrc.py b/plotly/validators/sankey/node/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_alignsrc.py rename to plotly/validators/sankey/node/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bgcolor.py b/plotly/validators/sankey/node/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bgcolor.py rename to plotly/validators/sankey/node/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bgcolorsrc.py b/plotly/validators/sankey/node/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bgcolorsrc.py rename to plotly/validators/sankey/node/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bordercolor.py b/plotly/validators/sankey/node/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bordercolor.py rename to plotly/validators/sankey/node/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bordercolorsrc.py b/plotly/validators/sankey/node/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_bordercolorsrc.py rename to plotly/validators/sankey/node/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_font.py b/plotly/validators/sankey/node/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_font.py rename to plotly/validators/sankey/node/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_namelength.py b/plotly/validators/sankey/node/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_namelength.py rename to plotly/validators/sankey/node/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_namelengthsrc.py b/plotly/validators/sankey/node/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/_namelengthsrc.py rename to plotly/validators/sankey/node/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/__init__.py b/plotly/validators/sankey/node/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/__init__.py rename to plotly/validators/sankey/node/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_color.py b/plotly/validators/sankey/node/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_color.py rename to plotly/validators/sankey/node/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_colorsrc.py b/plotly/validators/sankey/node/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_colorsrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_family.py b/plotly/validators/sankey/node/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_family.py rename to plotly/validators/sankey/node/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_familysrc.py b/plotly/validators/sankey/node/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_familysrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_lineposition.py b/plotly/validators/sankey/node/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_lineposition.py rename to plotly/validators/sankey/node/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_linepositionsrc.py b/plotly/validators/sankey/node/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_shadow.py b/plotly/validators/sankey/node/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_shadow.py rename to plotly/validators/sankey/node/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_shadowsrc.py b/plotly/validators/sankey/node/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_shadowsrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_size.py b/plotly/validators/sankey/node/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_size.py rename to plotly/validators/sankey/node/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_sizesrc.py b/plotly/validators/sankey/node/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_sizesrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_style.py b/plotly/validators/sankey/node/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_style.py rename to plotly/validators/sankey/node/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_stylesrc.py b/plotly/validators/sankey/node/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_stylesrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_textcase.py b/plotly/validators/sankey/node/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_textcase.py rename to plotly/validators/sankey/node/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_textcasesrc.py b/plotly/validators/sankey/node/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_textcasesrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_variant.py b/plotly/validators/sankey/node/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_variant.py rename to plotly/validators/sankey/node/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_variantsrc.py b/plotly/validators/sankey/node/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_variantsrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_weight.py b/plotly/validators/sankey/node/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_weight.py rename to plotly/validators/sankey/node/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_weightsrc.py b/plotly/validators/sankey/node/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/hoverlabel/font/_weightsrc.py rename to plotly/validators/sankey/node/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/line/__init__.py b/plotly/validators/sankey/node/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/line/__init__.py rename to plotly/validators/sankey/node/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/line/_color.py b/plotly/validators/sankey/node/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/line/_color.py rename to plotly/validators/sankey/node/line/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/line/_colorsrc.py b/plotly/validators/sankey/node/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/line/_colorsrc.py rename to plotly/validators/sankey/node/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/line/_width.py b/plotly/validators/sankey/node/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/line/_width.py rename to plotly/validators/sankey/node/line/_width.py diff --git a/packages/python/plotly/plotly/validators/sankey/node/line/_widthsrc.py b/plotly/validators/sankey/node/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/node/line/_widthsrc.py rename to plotly/validators/sankey/node/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/sankey/stream/__init__.py b/plotly/validators/sankey/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/stream/__init__.py rename to plotly/validators/sankey/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/stream/_maxpoints.py b/plotly/validators/sankey/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/stream/_maxpoints.py rename to plotly/validators/sankey/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/sankey/stream/_token.py b/plotly/validators/sankey/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/stream/_token.py rename to plotly/validators/sankey/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/__init__.py b/plotly/validators/sankey/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/__init__.py rename to plotly/validators/sankey/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_color.py b/plotly/validators/sankey/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_color.py rename to plotly/validators/sankey/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_family.py b/plotly/validators/sankey/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_family.py rename to plotly/validators/sankey/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_lineposition.py b/plotly/validators/sankey/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_lineposition.py rename to plotly/validators/sankey/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_shadow.py b/plotly/validators/sankey/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_shadow.py rename to plotly/validators/sankey/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_size.py b/plotly/validators/sankey/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_size.py rename to plotly/validators/sankey/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_style.py b/plotly/validators/sankey/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_style.py rename to plotly/validators/sankey/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_textcase.py b/plotly/validators/sankey/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_textcase.py rename to plotly/validators/sankey/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_variant.py b/plotly/validators/sankey/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_variant.py rename to plotly/validators/sankey/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/sankey/textfont/_weight.py b/plotly/validators/sankey/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sankey/textfont/_weight.py rename to plotly/validators/sankey/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter/__init__.py b/plotly/validators/scatter/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/__init__.py rename to plotly/validators/scatter/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/_alignmentgroup.py b/plotly/validators/scatter/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_alignmentgroup.py rename to plotly/validators/scatter/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/scatter/_cliponaxis.py b/plotly/validators/scatter/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_cliponaxis.py rename to plotly/validators/scatter/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/scatter/_connectgaps.py b/plotly/validators/scatter/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_connectgaps.py rename to plotly/validators/scatter/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scatter/_customdata.py b/plotly/validators/scatter/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_customdata.py rename to plotly/validators/scatter/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scatter/_customdatasrc.py b/plotly/validators/scatter/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_customdatasrc.py rename to plotly/validators/scatter/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_dx.py b/plotly/validators/scatter/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_dx.py rename to plotly/validators/scatter/_dx.py diff --git a/packages/python/plotly/plotly/validators/scatter/_dy.py b/plotly/validators/scatter/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_dy.py rename to plotly/validators/scatter/_dy.py diff --git a/packages/python/plotly/plotly/validators/scatter/_error_x.py b/plotly/validators/scatter/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_error_x.py rename to plotly/validators/scatter/_error_x.py diff --git a/packages/python/plotly/plotly/validators/scatter/_error_y.py b/plotly/validators/scatter/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_error_y.py rename to plotly/validators/scatter/_error_y.py diff --git a/packages/python/plotly/plotly/validators/scatter/_fill.py b/plotly/validators/scatter/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_fill.py rename to plotly/validators/scatter/_fill.py diff --git a/packages/python/plotly/plotly/validators/scatter/_fillcolor.py b/plotly/validators/scatter/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_fillcolor.py rename to plotly/validators/scatter/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/_fillgradient.py b/plotly/validators/scatter/_fillgradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_fillgradient.py rename to plotly/validators/scatter/_fillgradient.py diff --git a/packages/python/plotly/plotly/validators/scatter/_fillpattern.py b/plotly/validators/scatter/_fillpattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_fillpattern.py rename to plotly/validators/scatter/_fillpattern.py diff --git a/packages/python/plotly/plotly/validators/scatter/_groupnorm.py b/plotly/validators/scatter/_groupnorm.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_groupnorm.py rename to plotly/validators/scatter/_groupnorm.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hoverinfo.py b/plotly/validators/scatter/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hoverinfo.py rename to plotly/validators/scatter/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hoverinfosrc.py b/plotly/validators/scatter/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hoverinfosrc.py rename to plotly/validators/scatter/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hoverlabel.py b/plotly/validators/scatter/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hoverlabel.py rename to plotly/validators/scatter/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hoveron.py b/plotly/validators/scatter/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hoveron.py rename to plotly/validators/scatter/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hovertemplate.py b/plotly/validators/scatter/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hovertemplate.py rename to plotly/validators/scatter/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hovertemplatesrc.py b/plotly/validators/scatter/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hovertemplatesrc.py rename to plotly/validators/scatter/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hovertext.py b/plotly/validators/scatter/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hovertext.py rename to plotly/validators/scatter/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scatter/_hovertextsrc.py b/plotly/validators/scatter/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_hovertextsrc.py rename to plotly/validators/scatter/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_ids.py b/plotly/validators/scatter/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_ids.py rename to plotly/validators/scatter/_ids.py diff --git a/packages/python/plotly/plotly/validators/scatter/_idssrc.py b/plotly/validators/scatter/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_idssrc.py rename to plotly/validators/scatter/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_legend.py b/plotly/validators/scatter/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_legend.py rename to plotly/validators/scatter/_legend.py diff --git a/packages/python/plotly/plotly/validators/scatter/_legendgroup.py b/plotly/validators/scatter/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_legendgroup.py rename to plotly/validators/scatter/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scatter/_legendgrouptitle.py b/plotly/validators/scatter/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_legendgrouptitle.py rename to plotly/validators/scatter/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scatter/_legendrank.py b/plotly/validators/scatter/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_legendrank.py rename to plotly/validators/scatter/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scatter/_legendwidth.py b/plotly/validators/scatter/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_legendwidth.py rename to plotly/validators/scatter/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter/_line.py b/plotly/validators/scatter/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_line.py rename to plotly/validators/scatter/_line.py diff --git a/packages/python/plotly/plotly/validators/scatter/_marker.py b/plotly/validators/scatter/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_marker.py rename to plotly/validators/scatter/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatter/_meta.py b/plotly/validators/scatter/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_meta.py rename to plotly/validators/scatter/_meta.py diff --git a/packages/python/plotly/plotly/validators/scatter/_metasrc.py b/plotly/validators/scatter/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_metasrc.py rename to plotly/validators/scatter/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_mode.py b/plotly/validators/scatter/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_mode.py rename to plotly/validators/scatter/_mode.py diff --git a/packages/python/plotly/plotly/validators/scatter/_name.py b/plotly/validators/scatter/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_name.py rename to plotly/validators/scatter/_name.py diff --git a/packages/python/plotly/plotly/validators/scatter/_offsetgroup.py b/plotly/validators/scatter/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_offsetgroup.py rename to plotly/validators/scatter/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/scatter/_opacity.py b/plotly/validators/scatter/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_opacity.py rename to plotly/validators/scatter/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter/_orientation.py b/plotly/validators/scatter/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_orientation.py rename to plotly/validators/scatter/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatter/_selected.py b/plotly/validators/scatter/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_selected.py rename to plotly/validators/scatter/_selected.py diff --git a/packages/python/plotly/plotly/validators/scatter/_selectedpoints.py b/plotly/validators/scatter/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_selectedpoints.py rename to plotly/validators/scatter/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scatter/_showlegend.py b/plotly/validators/scatter/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_showlegend.py rename to plotly/validators/scatter/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scatter/_stackgaps.py b/plotly/validators/scatter/_stackgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_stackgaps.py rename to plotly/validators/scatter/_stackgaps.py diff --git a/packages/python/plotly/plotly/validators/scatter/_stackgroup.py b/plotly/validators/scatter/_stackgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_stackgroup.py rename to plotly/validators/scatter/_stackgroup.py diff --git a/packages/python/plotly/plotly/validators/scatter/_stream.py b/plotly/validators/scatter/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_stream.py rename to plotly/validators/scatter/_stream.py diff --git a/packages/python/plotly/plotly/validators/scatter/_text.py b/plotly/validators/scatter/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_text.py rename to plotly/validators/scatter/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter/_textfont.py b/plotly/validators/scatter/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_textfont.py rename to plotly/validators/scatter/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatter/_textposition.py b/plotly/validators/scatter/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_textposition.py rename to plotly/validators/scatter/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/_textpositionsrc.py b/plotly/validators/scatter/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_textpositionsrc.py rename to plotly/validators/scatter/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_textsrc.py b/plotly/validators/scatter/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_textsrc.py rename to plotly/validators/scatter/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_texttemplate.py b/plotly/validators/scatter/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_texttemplate.py rename to plotly/validators/scatter/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scatter/_texttemplatesrc.py b/plotly/validators/scatter/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_texttemplatesrc.py rename to plotly/validators/scatter/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_uid.py b/plotly/validators/scatter/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_uid.py rename to plotly/validators/scatter/_uid.py diff --git a/packages/python/plotly/plotly/validators/scatter/_uirevision.py b/plotly/validators/scatter/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_uirevision.py rename to plotly/validators/scatter/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scatter/_unselected.py b/plotly/validators/scatter/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_unselected.py rename to plotly/validators/scatter/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scatter/_visible.py b/plotly/validators/scatter/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_visible.py rename to plotly/validators/scatter/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter/_x.py b/plotly/validators/scatter/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_x.py rename to plotly/validators/scatter/_x.py diff --git a/packages/python/plotly/plotly/validators/scatter/_x0.py b/plotly/validators/scatter/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_x0.py rename to plotly/validators/scatter/_x0.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xaxis.py b/plotly/validators/scatter/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xaxis.py rename to plotly/validators/scatter/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xcalendar.py b/plotly/validators/scatter/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xcalendar.py rename to plotly/validators/scatter/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xhoverformat.py b/plotly/validators/scatter/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xhoverformat.py rename to plotly/validators/scatter/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xperiod.py b/plotly/validators/scatter/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xperiod.py rename to plotly/validators/scatter/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xperiod0.py b/plotly/validators/scatter/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xperiod0.py rename to plotly/validators/scatter/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xperiodalignment.py b/plotly/validators/scatter/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xperiodalignment.py rename to plotly/validators/scatter/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/scatter/_xsrc.py b/plotly/validators/scatter/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_xsrc.py rename to plotly/validators/scatter/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_y.py b/plotly/validators/scatter/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_y.py rename to plotly/validators/scatter/_y.py diff --git a/packages/python/plotly/plotly/validators/scatter/_y0.py b/plotly/validators/scatter/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_y0.py rename to plotly/validators/scatter/_y0.py diff --git a/packages/python/plotly/plotly/validators/scatter/_yaxis.py b/plotly/validators/scatter/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_yaxis.py rename to plotly/validators/scatter/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/scatter/_ycalendar.py b/plotly/validators/scatter/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_ycalendar.py rename to plotly/validators/scatter/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/scatter/_yhoverformat.py b/plotly/validators/scatter/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_yhoverformat.py rename to plotly/validators/scatter/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scatter/_yperiod.py b/plotly/validators/scatter/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_yperiod.py rename to plotly/validators/scatter/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/scatter/_yperiod0.py b/plotly/validators/scatter/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_yperiod0.py rename to plotly/validators/scatter/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/scatter/_yperiodalignment.py b/plotly/validators/scatter/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_yperiodalignment.py rename to plotly/validators/scatter/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/scatter/_ysrc.py b/plotly/validators/scatter/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_ysrc.py rename to plotly/validators/scatter/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/_zorder.py b/plotly/validators/scatter/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/_zorder.py rename to plotly/validators/scatter/_zorder.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/__init__.py b/plotly/validators/scatter/error_x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/__init__.py rename to plotly/validators/scatter/error_x/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_array.py b/plotly/validators/scatter/error_x/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_array.py rename to plotly/validators/scatter/error_x/_array.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_arrayminus.py b/plotly/validators/scatter/error_x/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_arrayminus.py rename to plotly/validators/scatter/error_x/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_arrayminussrc.py b/plotly/validators/scatter/error_x/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_arrayminussrc.py rename to plotly/validators/scatter/error_x/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_arraysrc.py b/plotly/validators/scatter/error_x/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_arraysrc.py rename to plotly/validators/scatter/error_x/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_color.py b/plotly/validators/scatter/error_x/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_color.py rename to plotly/validators/scatter/error_x/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_copy_ystyle.py b/plotly/validators/scatter/error_x/_copy_ystyle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_copy_ystyle.py rename to plotly/validators/scatter/error_x/_copy_ystyle.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_symmetric.py b/plotly/validators/scatter/error_x/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_symmetric.py rename to plotly/validators/scatter/error_x/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_thickness.py b/plotly/validators/scatter/error_x/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_thickness.py rename to plotly/validators/scatter/error_x/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_traceref.py b/plotly/validators/scatter/error_x/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_traceref.py rename to plotly/validators/scatter/error_x/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_tracerefminus.py b/plotly/validators/scatter/error_x/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_tracerefminus.py rename to plotly/validators/scatter/error_x/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_type.py b/plotly/validators/scatter/error_x/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_type.py rename to plotly/validators/scatter/error_x/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_value.py b/plotly/validators/scatter/error_x/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_value.py rename to plotly/validators/scatter/error_x/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_valueminus.py b/plotly/validators/scatter/error_x/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_valueminus.py rename to plotly/validators/scatter/error_x/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_visible.py b/plotly/validators/scatter/error_x/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_visible.py rename to plotly/validators/scatter/error_x/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_x/_width.py b/plotly/validators/scatter/error_x/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_x/_width.py rename to plotly/validators/scatter/error_x/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/__init__.py b/plotly/validators/scatter/error_y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/__init__.py rename to plotly/validators/scatter/error_y/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_array.py b/plotly/validators/scatter/error_y/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_array.py rename to plotly/validators/scatter/error_y/_array.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_arrayminus.py b/plotly/validators/scatter/error_y/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_arrayminus.py rename to plotly/validators/scatter/error_y/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_arrayminussrc.py b/plotly/validators/scatter/error_y/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_arrayminussrc.py rename to plotly/validators/scatter/error_y/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_arraysrc.py b/plotly/validators/scatter/error_y/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_arraysrc.py rename to plotly/validators/scatter/error_y/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_color.py b/plotly/validators/scatter/error_y/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_color.py rename to plotly/validators/scatter/error_y/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_symmetric.py b/plotly/validators/scatter/error_y/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_symmetric.py rename to plotly/validators/scatter/error_y/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_thickness.py b/plotly/validators/scatter/error_y/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_thickness.py rename to plotly/validators/scatter/error_y/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_traceref.py b/plotly/validators/scatter/error_y/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_traceref.py rename to plotly/validators/scatter/error_y/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_tracerefminus.py b/plotly/validators/scatter/error_y/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_tracerefminus.py rename to plotly/validators/scatter/error_y/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_type.py b/plotly/validators/scatter/error_y/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_type.py rename to plotly/validators/scatter/error_y/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_value.py b/plotly/validators/scatter/error_y/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_value.py rename to plotly/validators/scatter/error_y/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_valueminus.py b/plotly/validators/scatter/error_y/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_valueminus.py rename to plotly/validators/scatter/error_y/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_visible.py b/plotly/validators/scatter/error_y/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_visible.py rename to plotly/validators/scatter/error_y/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter/error_y/_width.py b/plotly/validators/scatter/error_y/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/error_y/_width.py rename to plotly/validators/scatter/error_y/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillgradient/__init__.py b/plotly/validators/scatter/fillgradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillgradient/__init__.py rename to plotly/validators/scatter/fillgradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillgradient/_colorscale.py b/plotly/validators/scatter/fillgradient/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillgradient/_colorscale.py rename to plotly/validators/scatter/fillgradient/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillgradient/_start.py b/plotly/validators/scatter/fillgradient/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillgradient/_start.py rename to plotly/validators/scatter/fillgradient/_start.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillgradient/_stop.py b/plotly/validators/scatter/fillgradient/_stop.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillgradient/_stop.py rename to plotly/validators/scatter/fillgradient/_stop.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillgradient/_type.py b/plotly/validators/scatter/fillgradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillgradient/_type.py rename to plotly/validators/scatter/fillgradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/__init__.py b/plotly/validators/scatter/fillpattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/__init__.py rename to plotly/validators/scatter/fillpattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_bgcolor.py b/plotly/validators/scatter/fillpattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_bgcolor.py rename to plotly/validators/scatter/fillpattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_bgcolorsrc.py b/plotly/validators/scatter/fillpattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_bgcolorsrc.py rename to plotly/validators/scatter/fillpattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_fgcolor.py b/plotly/validators/scatter/fillpattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_fgcolor.py rename to plotly/validators/scatter/fillpattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_fgcolorsrc.py b/plotly/validators/scatter/fillpattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_fgcolorsrc.py rename to plotly/validators/scatter/fillpattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_fgopacity.py b/plotly/validators/scatter/fillpattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_fgopacity.py rename to plotly/validators/scatter/fillpattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_fillmode.py b/plotly/validators/scatter/fillpattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_fillmode.py rename to plotly/validators/scatter/fillpattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_shape.py b/plotly/validators/scatter/fillpattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_shape.py rename to plotly/validators/scatter/fillpattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_shapesrc.py b/plotly/validators/scatter/fillpattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_shapesrc.py rename to plotly/validators/scatter/fillpattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_size.py b/plotly/validators/scatter/fillpattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_size.py rename to plotly/validators/scatter/fillpattern/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_sizesrc.py b/plotly/validators/scatter/fillpattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_sizesrc.py rename to plotly/validators/scatter/fillpattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_solidity.py b/plotly/validators/scatter/fillpattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_solidity.py rename to plotly/validators/scatter/fillpattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/scatter/fillpattern/_soliditysrc.py b/plotly/validators/scatter/fillpattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/fillpattern/_soliditysrc.py rename to plotly/validators/scatter/fillpattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/__init__.py b/plotly/validators/scatter/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/__init__.py rename to plotly/validators/scatter/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_align.py b/plotly/validators/scatter/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_align.py rename to plotly/validators/scatter/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_alignsrc.py b/plotly/validators/scatter/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_alignsrc.py rename to plotly/validators/scatter/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_bgcolor.py b/plotly/validators/scatter/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_bgcolor.py rename to plotly/validators/scatter/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_bgcolorsrc.py b/plotly/validators/scatter/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scatter/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_bordercolor.py b/plotly/validators/scatter/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_bordercolor.py rename to plotly/validators/scatter/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_bordercolorsrc.py b/plotly/validators/scatter/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scatter/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_font.py b/plotly/validators/scatter/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_font.py rename to plotly/validators/scatter/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_namelength.py b/plotly/validators/scatter/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_namelength.py rename to plotly/validators/scatter/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/_namelengthsrc.py b/plotly/validators/scatter/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/_namelengthsrc.py rename to plotly/validators/scatter/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/__init__.py b/plotly/validators/scatter/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/__init__.py rename to plotly/validators/scatter/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_color.py b/plotly/validators/scatter/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_color.py rename to plotly/validators/scatter/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_colorsrc.py b/plotly/validators/scatter/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_colorsrc.py rename to plotly/validators/scatter/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_family.py b/plotly/validators/scatter/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_family.py rename to plotly/validators/scatter/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_familysrc.py b/plotly/validators/scatter/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_familysrc.py rename to plotly/validators/scatter/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_lineposition.py b/plotly/validators/scatter/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_lineposition.py rename to plotly/validators/scatter/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scatter/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scatter/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_shadow.py b/plotly/validators/scatter/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_shadow.py rename to plotly/validators/scatter/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_shadowsrc.py b/plotly/validators/scatter/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scatter/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_size.py b/plotly/validators/scatter/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_size.py rename to plotly/validators/scatter/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_sizesrc.py b/plotly/validators/scatter/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_sizesrc.py rename to plotly/validators/scatter/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_style.py b/plotly/validators/scatter/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_style.py rename to plotly/validators/scatter/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_stylesrc.py b/plotly/validators/scatter/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_stylesrc.py rename to plotly/validators/scatter/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_textcase.py b/plotly/validators/scatter/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_textcase.py rename to plotly/validators/scatter/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_textcasesrc.py b/plotly/validators/scatter/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scatter/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_variant.py b/plotly/validators/scatter/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_variant.py rename to plotly/validators/scatter/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_variantsrc.py b/plotly/validators/scatter/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_variantsrc.py rename to plotly/validators/scatter/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_weight.py b/plotly/validators/scatter/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_weight.py rename to plotly/validators/scatter/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_weightsrc.py b/plotly/validators/scatter/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/hoverlabel/font/_weightsrc.py rename to plotly/validators/scatter/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/__init__.py b/plotly/validators/scatter/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/__init__.py rename to plotly/validators/scatter/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/_font.py b/plotly/validators/scatter/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/_font.py rename to plotly/validators/scatter/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/_text.py b/plotly/validators/scatter/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/_text.py rename to plotly/validators/scatter/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/__init__.py b/plotly/validators/scatter/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/__init__.py rename to plotly/validators/scatter/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_color.py b/plotly/validators/scatter/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_color.py rename to plotly/validators/scatter/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_family.py b/plotly/validators/scatter/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_family.py rename to plotly/validators/scatter/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_lineposition.py b/plotly/validators/scatter/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scatter/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_shadow.py b/plotly/validators/scatter/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_shadow.py rename to plotly/validators/scatter/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_size.py b/plotly/validators/scatter/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_size.py rename to plotly/validators/scatter/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_style.py b/plotly/validators/scatter/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_style.py rename to plotly/validators/scatter/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_textcase.py b/plotly/validators/scatter/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_textcase.py rename to plotly/validators/scatter/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_variant.py b/plotly/validators/scatter/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_variant.py rename to plotly/validators/scatter/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_weight.py b/plotly/validators/scatter/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/legendgrouptitle/font/_weight.py rename to plotly/validators/scatter/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/__init__.py b/plotly/validators/scatter/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/__init__.py rename to plotly/validators/scatter/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_backoff.py b/plotly/validators/scatter/line/_backoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_backoff.py rename to plotly/validators/scatter/line/_backoff.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_backoffsrc.py b/plotly/validators/scatter/line/_backoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_backoffsrc.py rename to plotly/validators/scatter/line/_backoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_color.py b/plotly/validators/scatter/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_color.py rename to plotly/validators/scatter/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_dash.py b/plotly/validators/scatter/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_dash.py rename to plotly/validators/scatter/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_shape.py b/plotly/validators/scatter/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_shape.py rename to plotly/validators/scatter/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_simplify.py b/plotly/validators/scatter/line/_simplify.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_simplify.py rename to plotly/validators/scatter/line/_simplify.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_smoothing.py b/plotly/validators/scatter/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_smoothing.py rename to plotly/validators/scatter/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/scatter/line/_width.py b/plotly/validators/scatter/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/line/_width.py rename to plotly/validators/scatter/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/__init__.py b/plotly/validators/scatter/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/__init__.py rename to plotly/validators/scatter/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_angle.py b/plotly/validators/scatter/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_angle.py rename to plotly/validators/scatter/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_angleref.py b/plotly/validators/scatter/marker/_angleref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_angleref.py rename to plotly/validators/scatter/marker/_angleref.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_anglesrc.py b/plotly/validators/scatter/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_anglesrc.py rename to plotly/validators/scatter/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_autocolorscale.py b/plotly/validators/scatter/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_autocolorscale.py rename to plotly/validators/scatter/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_cauto.py b/plotly/validators/scatter/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_cauto.py rename to plotly/validators/scatter/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_cmax.py b/plotly/validators/scatter/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_cmax.py rename to plotly/validators/scatter/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_cmid.py b/plotly/validators/scatter/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_cmid.py rename to plotly/validators/scatter/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_cmin.py b/plotly/validators/scatter/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_cmin.py rename to plotly/validators/scatter/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_color.py b/plotly/validators/scatter/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_color.py rename to plotly/validators/scatter/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_coloraxis.py b/plotly/validators/scatter/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_coloraxis.py rename to plotly/validators/scatter/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_colorbar.py b/plotly/validators/scatter/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_colorbar.py rename to plotly/validators/scatter/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_colorscale.py b/plotly/validators/scatter/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_colorscale.py rename to plotly/validators/scatter/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_colorsrc.py b/plotly/validators/scatter/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_colorsrc.py rename to plotly/validators/scatter/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_gradient.py b/plotly/validators/scatter/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_gradient.py rename to plotly/validators/scatter/marker/_gradient.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_line.py b/plotly/validators/scatter/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_line.py rename to plotly/validators/scatter/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_maxdisplayed.py b/plotly/validators/scatter/marker/_maxdisplayed.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_maxdisplayed.py rename to plotly/validators/scatter/marker/_maxdisplayed.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_opacity.py b/plotly/validators/scatter/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_opacity.py rename to plotly/validators/scatter/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_opacitysrc.py b/plotly/validators/scatter/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_opacitysrc.py rename to plotly/validators/scatter/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_reversescale.py b/plotly/validators/scatter/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_reversescale.py rename to plotly/validators/scatter/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_showscale.py b/plotly/validators/scatter/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_showscale.py rename to plotly/validators/scatter/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_size.py b/plotly/validators/scatter/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_size.py rename to plotly/validators/scatter/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_sizemin.py b/plotly/validators/scatter/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_sizemin.py rename to plotly/validators/scatter/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_sizemode.py b/plotly/validators/scatter/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_sizemode.py rename to plotly/validators/scatter/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_sizeref.py b/plotly/validators/scatter/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_sizeref.py rename to plotly/validators/scatter/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_sizesrc.py b/plotly/validators/scatter/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_sizesrc.py rename to plotly/validators/scatter/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_standoff.py b/plotly/validators/scatter/marker/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_standoff.py rename to plotly/validators/scatter/marker/_standoff.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_standoffsrc.py b/plotly/validators/scatter/marker/_standoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_standoffsrc.py rename to plotly/validators/scatter/marker/_standoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_symbol.py b/plotly/validators/scatter/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_symbol.py rename to plotly/validators/scatter/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/_symbolsrc.py b/plotly/validators/scatter/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/_symbolsrc.py rename to plotly/validators/scatter/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/__init__.py b/plotly/validators/scatter/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/__init__.py rename to plotly/validators/scatter/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_bgcolor.py b/plotly/validators/scatter/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_bgcolor.py rename to plotly/validators/scatter/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_bordercolor.py b/plotly/validators/scatter/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_bordercolor.py rename to plotly/validators/scatter/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_borderwidth.py b/plotly/validators/scatter/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_borderwidth.py rename to plotly/validators/scatter/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_dtick.py b/plotly/validators/scatter/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_dtick.py rename to plotly/validators/scatter/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_exponentformat.py b/plotly/validators/scatter/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_exponentformat.py rename to plotly/validators/scatter/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_labelalias.py b/plotly/validators/scatter/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_labelalias.py rename to plotly/validators/scatter/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_len.py b/plotly/validators/scatter/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_len.py rename to plotly/validators/scatter/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_lenmode.py b/plotly/validators/scatter/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_lenmode.py rename to plotly/validators/scatter/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_minexponent.py b/plotly/validators/scatter/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_minexponent.py rename to plotly/validators/scatter/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_nticks.py b/plotly/validators/scatter/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_nticks.py rename to plotly/validators/scatter/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_orientation.py b/plotly/validators/scatter/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_orientation.py rename to plotly/validators/scatter/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_outlinecolor.py b/plotly/validators/scatter/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_outlinecolor.py rename to plotly/validators/scatter/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_outlinewidth.py b/plotly/validators/scatter/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_outlinewidth.py rename to plotly/validators/scatter/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_separatethousands.py b/plotly/validators/scatter/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_separatethousands.py rename to plotly/validators/scatter/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showexponent.py b/plotly/validators/scatter/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showexponent.py rename to plotly/validators/scatter/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showticklabels.py b/plotly/validators/scatter/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showticklabels.py rename to plotly/validators/scatter/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showtickprefix.py b/plotly/validators/scatter/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showtickprefix.py rename to plotly/validators/scatter/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showticksuffix.py b/plotly/validators/scatter/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_showticksuffix.py rename to plotly/validators/scatter/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_thickness.py b/plotly/validators/scatter/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_thickness.py rename to plotly/validators/scatter/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_thicknessmode.py b/plotly/validators/scatter/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_thicknessmode.py rename to plotly/validators/scatter/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tick0.py b/plotly/validators/scatter/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tick0.py rename to plotly/validators/scatter/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickangle.py b/plotly/validators/scatter/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickangle.py rename to plotly/validators/scatter/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickcolor.py b/plotly/validators/scatter/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickcolor.py rename to plotly/validators/scatter/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickfont.py b/plotly/validators/scatter/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickfont.py rename to plotly/validators/scatter/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickformat.py b/plotly/validators/scatter/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickformat.py rename to plotly/validators/scatter/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scatter/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickformatstops.py b/plotly/validators/scatter/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickformatstops.py rename to plotly/validators/scatter/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scatter/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scatter/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklabelposition.py b/plotly/validators/scatter/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scatter/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklabelstep.py b/plotly/validators/scatter/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scatter/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklen.py b/plotly/validators/scatter/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticklen.py rename to plotly/validators/scatter/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickmode.py b/plotly/validators/scatter/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickmode.py rename to plotly/validators/scatter/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickprefix.py b/plotly/validators/scatter/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickprefix.py rename to plotly/validators/scatter/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticks.py b/plotly/validators/scatter/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticks.py rename to plotly/validators/scatter/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticksuffix.py b/plotly/validators/scatter/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticksuffix.py rename to plotly/validators/scatter/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticktext.py b/plotly/validators/scatter/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticktext.py rename to plotly/validators/scatter/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticktextsrc.py b/plotly/validators/scatter/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scatter/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickvals.py b/plotly/validators/scatter/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickvals.py rename to plotly/validators/scatter/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickvalssrc.py b/plotly/validators/scatter/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scatter/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickwidth.py b/plotly/validators/scatter/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_tickwidth.py rename to plotly/validators/scatter/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_title.py b/plotly/validators/scatter/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_title.py rename to plotly/validators/scatter/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_x.py b/plotly/validators/scatter/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_x.py rename to plotly/validators/scatter/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_xanchor.py b/plotly/validators/scatter/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_xanchor.py rename to plotly/validators/scatter/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_xpad.py b/plotly/validators/scatter/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_xpad.py rename to plotly/validators/scatter/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_xref.py b/plotly/validators/scatter/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_xref.py rename to plotly/validators/scatter/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_y.py b/plotly/validators/scatter/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_y.py rename to plotly/validators/scatter/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_yanchor.py b/plotly/validators/scatter/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_yanchor.py rename to plotly/validators/scatter/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ypad.py b/plotly/validators/scatter/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_ypad.py rename to plotly/validators/scatter/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/_yref.py b/plotly/validators/scatter/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/_yref.py rename to plotly/validators/scatter/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/__init__.py b/plotly/validators/scatter/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scatter/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_color.py b/plotly/validators/scatter/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_color.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_family.py b/plotly/validators/scatter/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_family.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scatter/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scatter/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_size.py b/plotly/validators/scatter/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_size.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_style.py b/plotly/validators/scatter/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_style.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scatter/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_variant.py b/plotly/validators/scatter/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_weight.py b/plotly/validators/scatter/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scatter/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scatter/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scatter/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scatter/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scatter/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scatter/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scatter/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scatter/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scatter/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scatter/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scatter/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scatter/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scatter/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/__init__.py b/plotly/validators/scatter/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/__init__.py rename to plotly/validators/scatter/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/_font.py b/plotly/validators/scatter/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/_font.py rename to plotly/validators/scatter/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/_side.py b/plotly/validators/scatter/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/_side.py rename to plotly/validators/scatter/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/_text.py b/plotly/validators/scatter/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/_text.py rename to plotly/validators/scatter/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/__init__.py b/plotly/validators/scatter/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/__init__.py rename to plotly/validators/scatter/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_color.py b/plotly/validators/scatter/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_color.py rename to plotly/validators/scatter/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_family.py b/plotly/validators/scatter/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_family.py rename to plotly/validators/scatter/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scatter/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scatter/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_shadow.py b/plotly/validators/scatter/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scatter/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_size.py b/plotly/validators/scatter/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_size.py rename to plotly/validators/scatter/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_style.py b/plotly/validators/scatter/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_style.py rename to plotly/validators/scatter/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_textcase.py b/plotly/validators/scatter/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scatter/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_variant.py b/plotly/validators/scatter/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_variant.py rename to plotly/validators/scatter/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_weight.py b/plotly/validators/scatter/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/colorbar/title/font/_weight.py rename to plotly/validators/scatter/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/gradient/__init__.py b/plotly/validators/scatter/marker/gradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/gradient/__init__.py rename to plotly/validators/scatter/marker/gradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/gradient/_color.py b/plotly/validators/scatter/marker/gradient/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/gradient/_color.py rename to plotly/validators/scatter/marker/gradient/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/gradient/_colorsrc.py b/plotly/validators/scatter/marker/gradient/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/gradient/_colorsrc.py rename to plotly/validators/scatter/marker/gradient/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/gradient/_type.py b/plotly/validators/scatter/marker/gradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/gradient/_type.py rename to plotly/validators/scatter/marker/gradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/gradient/_typesrc.py b/plotly/validators/scatter/marker/gradient/_typesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/gradient/_typesrc.py rename to plotly/validators/scatter/marker/gradient/_typesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/__init__.py b/plotly/validators/scatter/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/__init__.py rename to plotly/validators/scatter/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_autocolorscale.py b/plotly/validators/scatter/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_autocolorscale.py rename to plotly/validators/scatter/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_cauto.py b/plotly/validators/scatter/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_cauto.py rename to plotly/validators/scatter/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_cmax.py b/plotly/validators/scatter/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_cmax.py rename to plotly/validators/scatter/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_cmid.py b/plotly/validators/scatter/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_cmid.py rename to plotly/validators/scatter/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_cmin.py b/plotly/validators/scatter/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_cmin.py rename to plotly/validators/scatter/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_color.py b/plotly/validators/scatter/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_color.py rename to plotly/validators/scatter/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_coloraxis.py b/plotly/validators/scatter/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_coloraxis.py rename to plotly/validators/scatter/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_colorscale.py b/plotly/validators/scatter/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_colorscale.py rename to plotly/validators/scatter/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_colorsrc.py b/plotly/validators/scatter/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_colorsrc.py rename to plotly/validators/scatter/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_reversescale.py b/plotly/validators/scatter/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_reversescale.py rename to plotly/validators/scatter/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_width.py b/plotly/validators/scatter/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_width.py rename to plotly/validators/scatter/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter/marker/line/_widthsrc.py b/plotly/validators/scatter/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/marker/line/_widthsrc.py rename to plotly/validators/scatter/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/__init__.py b/plotly/validators/scatter/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/__init__.py rename to plotly/validators/scatter/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/_marker.py b/plotly/validators/scatter/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/_marker.py rename to plotly/validators/scatter/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/_textfont.py b/plotly/validators/scatter/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/_textfont.py rename to plotly/validators/scatter/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/marker/__init__.py b/plotly/validators/scatter/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/marker/__init__.py rename to plotly/validators/scatter/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/marker/_color.py b/plotly/validators/scatter/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/marker/_color.py rename to plotly/validators/scatter/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/marker/_opacity.py b/plotly/validators/scatter/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/marker/_opacity.py rename to plotly/validators/scatter/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/marker/_size.py b/plotly/validators/scatter/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/marker/_size.py rename to plotly/validators/scatter/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/textfont/__init__.py b/plotly/validators/scatter/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/textfont/__init__.py rename to plotly/validators/scatter/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/selected/textfont/_color.py b/plotly/validators/scatter/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/selected/textfont/_color.py rename to plotly/validators/scatter/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/stream/__init__.py b/plotly/validators/scatter/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/stream/__init__.py rename to plotly/validators/scatter/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/stream/_maxpoints.py b/plotly/validators/scatter/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/stream/_maxpoints.py rename to plotly/validators/scatter/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scatter/stream/_token.py b/plotly/validators/scatter/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/stream/_token.py rename to plotly/validators/scatter/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/__init__.py b/plotly/validators/scatter/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/__init__.py rename to plotly/validators/scatter/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_color.py b/plotly/validators/scatter/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_color.py rename to plotly/validators/scatter/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_colorsrc.py b/plotly/validators/scatter/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_colorsrc.py rename to plotly/validators/scatter/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_family.py b/plotly/validators/scatter/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_family.py rename to plotly/validators/scatter/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_familysrc.py b/plotly/validators/scatter/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_familysrc.py rename to plotly/validators/scatter/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_lineposition.py b/plotly/validators/scatter/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_lineposition.py rename to plotly/validators/scatter/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_linepositionsrc.py b/plotly/validators/scatter/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_linepositionsrc.py rename to plotly/validators/scatter/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_shadow.py b/plotly/validators/scatter/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_shadow.py rename to plotly/validators/scatter/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_shadowsrc.py b/plotly/validators/scatter/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_shadowsrc.py rename to plotly/validators/scatter/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_size.py b/plotly/validators/scatter/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_size.py rename to plotly/validators/scatter/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_sizesrc.py b/plotly/validators/scatter/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_sizesrc.py rename to plotly/validators/scatter/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_style.py b/plotly/validators/scatter/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_style.py rename to plotly/validators/scatter/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_stylesrc.py b/plotly/validators/scatter/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_stylesrc.py rename to plotly/validators/scatter/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_textcase.py b/plotly/validators/scatter/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_textcase.py rename to plotly/validators/scatter/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_textcasesrc.py b/plotly/validators/scatter/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_textcasesrc.py rename to plotly/validators/scatter/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_variant.py b/plotly/validators/scatter/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_variant.py rename to plotly/validators/scatter/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_variantsrc.py b/plotly/validators/scatter/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_variantsrc.py rename to plotly/validators/scatter/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_weight.py b/plotly/validators/scatter/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_weight.py rename to plotly/validators/scatter/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter/textfont/_weightsrc.py b/plotly/validators/scatter/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/textfont/_weightsrc.py rename to plotly/validators/scatter/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/__init__.py b/plotly/validators/scatter/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/__init__.py rename to plotly/validators/scatter/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/_marker.py b/plotly/validators/scatter/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/_marker.py rename to plotly/validators/scatter/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/_textfont.py b/plotly/validators/scatter/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/_textfont.py rename to plotly/validators/scatter/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/marker/__init__.py b/plotly/validators/scatter/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/marker/__init__.py rename to plotly/validators/scatter/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/marker/_color.py b/plotly/validators/scatter/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/marker/_color.py rename to plotly/validators/scatter/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/marker/_opacity.py b/plotly/validators/scatter/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/marker/_opacity.py rename to plotly/validators/scatter/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/marker/_size.py b/plotly/validators/scatter/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/marker/_size.py rename to plotly/validators/scatter/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/textfont/__init__.py b/plotly/validators/scatter/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/textfont/__init__.py rename to plotly/validators/scatter/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter/unselected/textfont/_color.py b/plotly/validators/scatter/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter/unselected/textfont/_color.py rename to plotly/validators/scatter/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/__init__.py b/plotly/validators/scatter3d/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/__init__.py rename to plotly/validators/scatter3d/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_connectgaps.py b/plotly/validators/scatter3d/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_connectgaps.py rename to plotly/validators/scatter3d/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_customdata.py b/plotly/validators/scatter3d/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_customdata.py rename to plotly/validators/scatter3d/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_customdatasrc.py b/plotly/validators/scatter3d/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_customdatasrc.py rename to plotly/validators/scatter3d/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_error_x.py b/plotly/validators/scatter3d/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_error_x.py rename to plotly/validators/scatter3d/_error_x.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_error_y.py b/plotly/validators/scatter3d/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_error_y.py rename to plotly/validators/scatter3d/_error_y.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_error_z.py b/plotly/validators/scatter3d/_error_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_error_z.py rename to plotly/validators/scatter3d/_error_z.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hoverinfo.py b/plotly/validators/scatter3d/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hoverinfo.py rename to plotly/validators/scatter3d/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hoverinfosrc.py b/plotly/validators/scatter3d/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hoverinfosrc.py rename to plotly/validators/scatter3d/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hoverlabel.py b/plotly/validators/scatter3d/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hoverlabel.py rename to plotly/validators/scatter3d/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hovertemplate.py b/plotly/validators/scatter3d/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hovertemplate.py rename to plotly/validators/scatter3d/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hovertemplatesrc.py b/plotly/validators/scatter3d/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hovertemplatesrc.py rename to plotly/validators/scatter3d/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hovertext.py b/plotly/validators/scatter3d/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hovertext.py rename to plotly/validators/scatter3d/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_hovertextsrc.py b/plotly/validators/scatter3d/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_hovertextsrc.py rename to plotly/validators/scatter3d/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_ids.py b/plotly/validators/scatter3d/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_ids.py rename to plotly/validators/scatter3d/_ids.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_idssrc.py b/plotly/validators/scatter3d/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_idssrc.py rename to plotly/validators/scatter3d/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_legend.py b/plotly/validators/scatter3d/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_legend.py rename to plotly/validators/scatter3d/_legend.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_legendgroup.py b/plotly/validators/scatter3d/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_legendgroup.py rename to plotly/validators/scatter3d/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_legendgrouptitle.py b/plotly/validators/scatter3d/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_legendgrouptitle.py rename to plotly/validators/scatter3d/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_legendrank.py b/plotly/validators/scatter3d/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_legendrank.py rename to plotly/validators/scatter3d/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_legendwidth.py b/plotly/validators/scatter3d/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_legendwidth.py rename to plotly/validators/scatter3d/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_line.py b/plotly/validators/scatter3d/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_line.py rename to plotly/validators/scatter3d/_line.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_marker.py b/plotly/validators/scatter3d/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_marker.py rename to plotly/validators/scatter3d/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_meta.py b/plotly/validators/scatter3d/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_meta.py rename to plotly/validators/scatter3d/_meta.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_metasrc.py b/plotly/validators/scatter3d/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_metasrc.py rename to plotly/validators/scatter3d/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_mode.py b/plotly/validators/scatter3d/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_mode.py rename to plotly/validators/scatter3d/_mode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_name.py b/plotly/validators/scatter3d/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_name.py rename to plotly/validators/scatter3d/_name.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_opacity.py b/plotly/validators/scatter3d/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_opacity.py rename to plotly/validators/scatter3d/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_projection.py b/plotly/validators/scatter3d/_projection.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_projection.py rename to plotly/validators/scatter3d/_projection.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_scene.py b/plotly/validators/scatter3d/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_scene.py rename to plotly/validators/scatter3d/_scene.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_showlegend.py b/plotly/validators/scatter3d/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_showlegend.py rename to plotly/validators/scatter3d/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_stream.py b/plotly/validators/scatter3d/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_stream.py rename to plotly/validators/scatter3d/_stream.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_surfaceaxis.py b/plotly/validators/scatter3d/_surfaceaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_surfaceaxis.py rename to plotly/validators/scatter3d/_surfaceaxis.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_surfacecolor.py b/plotly/validators/scatter3d/_surfacecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_surfacecolor.py rename to plotly/validators/scatter3d/_surfacecolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_text.py b/plotly/validators/scatter3d/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_text.py rename to plotly/validators/scatter3d/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_textfont.py b/plotly/validators/scatter3d/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_textfont.py rename to plotly/validators/scatter3d/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_textposition.py b/plotly/validators/scatter3d/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_textposition.py rename to plotly/validators/scatter3d/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_textpositionsrc.py b/plotly/validators/scatter3d/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_textpositionsrc.py rename to plotly/validators/scatter3d/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_textsrc.py b/plotly/validators/scatter3d/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_textsrc.py rename to plotly/validators/scatter3d/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_texttemplate.py b/plotly/validators/scatter3d/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_texttemplate.py rename to plotly/validators/scatter3d/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_texttemplatesrc.py b/plotly/validators/scatter3d/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_texttemplatesrc.py rename to plotly/validators/scatter3d/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_uid.py b/plotly/validators/scatter3d/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_uid.py rename to plotly/validators/scatter3d/_uid.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_uirevision.py b/plotly/validators/scatter3d/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_uirevision.py rename to plotly/validators/scatter3d/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_visible.py b/plotly/validators/scatter3d/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_visible.py rename to plotly/validators/scatter3d/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_x.py b/plotly/validators/scatter3d/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_x.py rename to plotly/validators/scatter3d/_x.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_xcalendar.py b/plotly/validators/scatter3d/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_xcalendar.py rename to plotly/validators/scatter3d/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_xhoverformat.py b/plotly/validators/scatter3d/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_xhoverformat.py rename to plotly/validators/scatter3d/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_xsrc.py b/plotly/validators/scatter3d/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_xsrc.py rename to plotly/validators/scatter3d/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_y.py b/plotly/validators/scatter3d/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_y.py rename to plotly/validators/scatter3d/_y.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_ycalendar.py b/plotly/validators/scatter3d/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_ycalendar.py rename to plotly/validators/scatter3d/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_yhoverformat.py b/plotly/validators/scatter3d/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_yhoverformat.py rename to plotly/validators/scatter3d/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_ysrc.py b/plotly/validators/scatter3d/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_ysrc.py rename to plotly/validators/scatter3d/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_z.py b/plotly/validators/scatter3d/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_z.py rename to plotly/validators/scatter3d/_z.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_zcalendar.py b/plotly/validators/scatter3d/_zcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_zcalendar.py rename to plotly/validators/scatter3d/_zcalendar.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_zhoverformat.py b/plotly/validators/scatter3d/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_zhoverformat.py rename to plotly/validators/scatter3d/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/_zsrc.py b/plotly/validators/scatter3d/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/_zsrc.py rename to plotly/validators/scatter3d/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/__init__.py b/plotly/validators/scatter3d/error_x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/__init__.py rename to plotly/validators/scatter3d/error_x/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_array.py b/plotly/validators/scatter3d/error_x/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_array.py rename to plotly/validators/scatter3d/error_x/_array.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_arrayminus.py b/plotly/validators/scatter3d/error_x/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_arrayminus.py rename to plotly/validators/scatter3d/error_x/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_arrayminussrc.py b/plotly/validators/scatter3d/error_x/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_arrayminussrc.py rename to plotly/validators/scatter3d/error_x/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_arraysrc.py b/plotly/validators/scatter3d/error_x/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_arraysrc.py rename to plotly/validators/scatter3d/error_x/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_color.py b/plotly/validators/scatter3d/error_x/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_color.py rename to plotly/validators/scatter3d/error_x/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_copy_zstyle.py b/plotly/validators/scatter3d/error_x/_copy_zstyle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_copy_zstyle.py rename to plotly/validators/scatter3d/error_x/_copy_zstyle.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_symmetric.py b/plotly/validators/scatter3d/error_x/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_symmetric.py rename to plotly/validators/scatter3d/error_x/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_thickness.py b/plotly/validators/scatter3d/error_x/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_thickness.py rename to plotly/validators/scatter3d/error_x/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_traceref.py b/plotly/validators/scatter3d/error_x/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_traceref.py rename to plotly/validators/scatter3d/error_x/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_tracerefminus.py b/plotly/validators/scatter3d/error_x/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_tracerefminus.py rename to plotly/validators/scatter3d/error_x/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_type.py b/plotly/validators/scatter3d/error_x/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_type.py rename to plotly/validators/scatter3d/error_x/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_value.py b/plotly/validators/scatter3d/error_x/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_value.py rename to plotly/validators/scatter3d/error_x/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_valueminus.py b/plotly/validators/scatter3d/error_x/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_valueminus.py rename to plotly/validators/scatter3d/error_x/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_visible.py b/plotly/validators/scatter3d/error_x/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_visible.py rename to plotly/validators/scatter3d/error_x/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_x/_width.py b/plotly/validators/scatter3d/error_x/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_x/_width.py rename to plotly/validators/scatter3d/error_x/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/__init__.py b/plotly/validators/scatter3d/error_y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/__init__.py rename to plotly/validators/scatter3d/error_y/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_array.py b/plotly/validators/scatter3d/error_y/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_array.py rename to plotly/validators/scatter3d/error_y/_array.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_arrayminus.py b/plotly/validators/scatter3d/error_y/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_arrayminus.py rename to plotly/validators/scatter3d/error_y/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_arrayminussrc.py b/plotly/validators/scatter3d/error_y/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_arrayminussrc.py rename to plotly/validators/scatter3d/error_y/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_arraysrc.py b/plotly/validators/scatter3d/error_y/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_arraysrc.py rename to plotly/validators/scatter3d/error_y/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_color.py b/plotly/validators/scatter3d/error_y/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_color.py rename to plotly/validators/scatter3d/error_y/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_copy_zstyle.py b/plotly/validators/scatter3d/error_y/_copy_zstyle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_copy_zstyle.py rename to plotly/validators/scatter3d/error_y/_copy_zstyle.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_symmetric.py b/plotly/validators/scatter3d/error_y/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_symmetric.py rename to plotly/validators/scatter3d/error_y/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_thickness.py b/plotly/validators/scatter3d/error_y/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_thickness.py rename to plotly/validators/scatter3d/error_y/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_traceref.py b/plotly/validators/scatter3d/error_y/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_traceref.py rename to plotly/validators/scatter3d/error_y/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_tracerefminus.py b/plotly/validators/scatter3d/error_y/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_tracerefminus.py rename to plotly/validators/scatter3d/error_y/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_type.py b/plotly/validators/scatter3d/error_y/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_type.py rename to plotly/validators/scatter3d/error_y/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_value.py b/plotly/validators/scatter3d/error_y/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_value.py rename to plotly/validators/scatter3d/error_y/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_valueminus.py b/plotly/validators/scatter3d/error_y/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_valueminus.py rename to plotly/validators/scatter3d/error_y/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_visible.py b/plotly/validators/scatter3d/error_y/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_visible.py rename to plotly/validators/scatter3d/error_y/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_y/_width.py b/plotly/validators/scatter3d/error_y/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_y/_width.py rename to plotly/validators/scatter3d/error_y/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/__init__.py b/plotly/validators/scatter3d/error_z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/__init__.py rename to plotly/validators/scatter3d/error_z/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_array.py b/plotly/validators/scatter3d/error_z/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_array.py rename to plotly/validators/scatter3d/error_z/_array.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_arrayminus.py b/plotly/validators/scatter3d/error_z/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_arrayminus.py rename to plotly/validators/scatter3d/error_z/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_arrayminussrc.py b/plotly/validators/scatter3d/error_z/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_arrayminussrc.py rename to plotly/validators/scatter3d/error_z/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_arraysrc.py b/plotly/validators/scatter3d/error_z/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_arraysrc.py rename to plotly/validators/scatter3d/error_z/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_color.py b/plotly/validators/scatter3d/error_z/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_color.py rename to plotly/validators/scatter3d/error_z/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_symmetric.py b/plotly/validators/scatter3d/error_z/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_symmetric.py rename to plotly/validators/scatter3d/error_z/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_thickness.py b/plotly/validators/scatter3d/error_z/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_thickness.py rename to plotly/validators/scatter3d/error_z/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_traceref.py b/plotly/validators/scatter3d/error_z/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_traceref.py rename to plotly/validators/scatter3d/error_z/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_tracerefminus.py b/plotly/validators/scatter3d/error_z/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_tracerefminus.py rename to plotly/validators/scatter3d/error_z/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_type.py b/plotly/validators/scatter3d/error_z/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_type.py rename to plotly/validators/scatter3d/error_z/_type.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_value.py b/plotly/validators/scatter3d/error_z/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_value.py rename to plotly/validators/scatter3d/error_z/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_valueminus.py b/plotly/validators/scatter3d/error_z/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_valueminus.py rename to plotly/validators/scatter3d/error_z/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_visible.py b/plotly/validators/scatter3d/error_z/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_visible.py rename to plotly/validators/scatter3d/error_z/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/error_z/_width.py b/plotly/validators/scatter3d/error_z/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/error_z/_width.py rename to plotly/validators/scatter3d/error_z/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/__init__.py b/plotly/validators/scatter3d/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/__init__.py rename to plotly/validators/scatter3d/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_align.py b/plotly/validators/scatter3d/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_align.py rename to plotly/validators/scatter3d/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_alignsrc.py b/plotly/validators/scatter3d/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_alignsrc.py rename to plotly/validators/scatter3d/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bgcolor.py b/plotly/validators/scatter3d/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bgcolor.py rename to plotly/validators/scatter3d/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bgcolorsrc.py b/plotly/validators/scatter3d/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scatter3d/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bordercolor.py b/plotly/validators/scatter3d/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bordercolor.py rename to plotly/validators/scatter3d/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bordercolorsrc.py b/plotly/validators/scatter3d/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scatter3d/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_font.py b/plotly/validators/scatter3d/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_font.py rename to plotly/validators/scatter3d/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_namelength.py b/plotly/validators/scatter3d/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_namelength.py rename to plotly/validators/scatter3d/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_namelengthsrc.py b/plotly/validators/scatter3d/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/_namelengthsrc.py rename to plotly/validators/scatter3d/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/__init__.py b/plotly/validators/scatter3d/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/__init__.py rename to plotly/validators/scatter3d/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_color.py b/plotly/validators/scatter3d/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_color.py rename to plotly/validators/scatter3d/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_colorsrc.py b/plotly/validators/scatter3d/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_colorsrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_family.py b/plotly/validators/scatter3d/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_family.py rename to plotly/validators/scatter3d/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_familysrc.py b/plotly/validators/scatter3d/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_familysrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_lineposition.py b/plotly/validators/scatter3d/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_lineposition.py rename to plotly/validators/scatter3d/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scatter3d/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_shadow.py b/plotly/validators/scatter3d/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_shadow.py rename to plotly/validators/scatter3d/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_shadowsrc.py b/plotly/validators/scatter3d/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_size.py b/plotly/validators/scatter3d/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_size.py rename to plotly/validators/scatter3d/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_sizesrc.py b/plotly/validators/scatter3d/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_sizesrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_style.py b/plotly/validators/scatter3d/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_style.py rename to plotly/validators/scatter3d/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_stylesrc.py b/plotly/validators/scatter3d/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_stylesrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_textcase.py b/plotly/validators/scatter3d/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_textcase.py rename to plotly/validators/scatter3d/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_textcasesrc.py b/plotly/validators/scatter3d/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_variant.py b/plotly/validators/scatter3d/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_variant.py rename to plotly/validators/scatter3d/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_variantsrc.py b/plotly/validators/scatter3d/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_variantsrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_weight.py b/plotly/validators/scatter3d/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_weight.py rename to plotly/validators/scatter3d/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_weightsrc.py b/plotly/validators/scatter3d/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/hoverlabel/font/_weightsrc.py rename to plotly/validators/scatter3d/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/__init__.py b/plotly/validators/scatter3d/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/__init__.py rename to plotly/validators/scatter3d/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/_font.py b/plotly/validators/scatter3d/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/_font.py rename to plotly/validators/scatter3d/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/_text.py b/plotly/validators/scatter3d/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/_text.py rename to plotly/validators/scatter3d/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/__init__.py b/plotly/validators/scatter3d/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/__init__.py rename to plotly/validators/scatter3d/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_color.py b/plotly/validators/scatter3d/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_color.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_family.py b/plotly/validators/scatter3d/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_family.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_lineposition.py b/plotly/validators/scatter3d/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_shadow.py b/plotly/validators/scatter3d/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_shadow.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_size.py b/plotly/validators/scatter3d/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_size.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_style.py b/plotly/validators/scatter3d/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_style.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_textcase.py b/plotly/validators/scatter3d/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_textcase.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_variant.py b/plotly/validators/scatter3d/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_variant.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_weight.py b/plotly/validators/scatter3d/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/legendgrouptitle/font/_weight.py rename to plotly/validators/scatter3d/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/__init__.py b/plotly/validators/scatter3d/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/__init__.py rename to plotly/validators/scatter3d/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_autocolorscale.py b/plotly/validators/scatter3d/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_autocolorscale.py rename to plotly/validators/scatter3d/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_cauto.py b/plotly/validators/scatter3d/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_cauto.py rename to plotly/validators/scatter3d/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_cmax.py b/plotly/validators/scatter3d/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_cmax.py rename to plotly/validators/scatter3d/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_cmid.py b/plotly/validators/scatter3d/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_cmid.py rename to plotly/validators/scatter3d/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_cmin.py b/plotly/validators/scatter3d/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_cmin.py rename to plotly/validators/scatter3d/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_color.py b/plotly/validators/scatter3d/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_color.py rename to plotly/validators/scatter3d/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_coloraxis.py b/plotly/validators/scatter3d/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_coloraxis.py rename to plotly/validators/scatter3d/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_colorbar.py b/plotly/validators/scatter3d/line/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_colorbar.py rename to plotly/validators/scatter3d/line/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_colorscale.py b/plotly/validators/scatter3d/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_colorscale.py rename to plotly/validators/scatter3d/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_colorsrc.py b/plotly/validators/scatter3d/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_colorsrc.py rename to plotly/validators/scatter3d/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_dash.py b/plotly/validators/scatter3d/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_dash.py rename to plotly/validators/scatter3d/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_reversescale.py b/plotly/validators/scatter3d/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_reversescale.py rename to plotly/validators/scatter3d/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_showscale.py b/plotly/validators/scatter3d/line/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_showscale.py rename to plotly/validators/scatter3d/line/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/_width.py b/plotly/validators/scatter3d/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/_width.py rename to plotly/validators/scatter3d/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/__init__.py b/plotly/validators/scatter3d/line/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/__init__.py rename to plotly/validators/scatter3d/line/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_bgcolor.py b/plotly/validators/scatter3d/line/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_bgcolor.py rename to plotly/validators/scatter3d/line/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_bordercolor.py b/plotly/validators/scatter3d/line/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_bordercolor.py rename to plotly/validators/scatter3d/line/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_borderwidth.py b/plotly/validators/scatter3d/line/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_borderwidth.py rename to plotly/validators/scatter3d/line/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_dtick.py b/plotly/validators/scatter3d/line/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_dtick.py rename to plotly/validators/scatter3d/line/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_exponentformat.py b/plotly/validators/scatter3d/line/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_exponentformat.py rename to plotly/validators/scatter3d/line/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_labelalias.py b/plotly/validators/scatter3d/line/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_labelalias.py rename to plotly/validators/scatter3d/line/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_len.py b/plotly/validators/scatter3d/line/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_len.py rename to plotly/validators/scatter3d/line/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_lenmode.py b/plotly/validators/scatter3d/line/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_lenmode.py rename to plotly/validators/scatter3d/line/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_minexponent.py b/plotly/validators/scatter3d/line/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_minexponent.py rename to plotly/validators/scatter3d/line/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_nticks.py b/plotly/validators/scatter3d/line/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_nticks.py rename to plotly/validators/scatter3d/line/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_orientation.py b/plotly/validators/scatter3d/line/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_orientation.py rename to plotly/validators/scatter3d/line/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_outlinecolor.py b/plotly/validators/scatter3d/line/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_outlinecolor.py rename to plotly/validators/scatter3d/line/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_outlinewidth.py b/plotly/validators/scatter3d/line/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_outlinewidth.py rename to plotly/validators/scatter3d/line/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_separatethousands.py b/plotly/validators/scatter3d/line/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_separatethousands.py rename to plotly/validators/scatter3d/line/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showexponent.py b/plotly/validators/scatter3d/line/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showexponent.py rename to plotly/validators/scatter3d/line/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showticklabels.py b/plotly/validators/scatter3d/line/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showticklabels.py rename to plotly/validators/scatter3d/line/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showtickprefix.py b/plotly/validators/scatter3d/line/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showtickprefix.py rename to plotly/validators/scatter3d/line/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showticksuffix.py b/plotly/validators/scatter3d/line/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_showticksuffix.py rename to plotly/validators/scatter3d/line/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_thickness.py b/plotly/validators/scatter3d/line/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_thickness.py rename to plotly/validators/scatter3d/line/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_thicknessmode.py b/plotly/validators/scatter3d/line/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_thicknessmode.py rename to plotly/validators/scatter3d/line/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tick0.py b/plotly/validators/scatter3d/line/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tick0.py rename to plotly/validators/scatter3d/line/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickangle.py b/plotly/validators/scatter3d/line/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickangle.py rename to plotly/validators/scatter3d/line/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickcolor.py b/plotly/validators/scatter3d/line/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickcolor.py rename to plotly/validators/scatter3d/line/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickfont.py b/plotly/validators/scatter3d/line/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickfont.py rename to plotly/validators/scatter3d/line/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickformat.py b/plotly/validators/scatter3d/line/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickformat.py rename to plotly/validators/scatter3d/line/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatter3d/line/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scatter3d/line/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickformatstops.py b/plotly/validators/scatter3d/line/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickformatstops.py rename to plotly/validators/scatter3d/line/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklabeloverflow.py b/plotly/validators/scatter3d/line/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklabeloverflow.py rename to plotly/validators/scatter3d/line/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklabelposition.py b/plotly/validators/scatter3d/line/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklabelposition.py rename to plotly/validators/scatter3d/line/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklabelstep.py b/plotly/validators/scatter3d/line/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklabelstep.py rename to plotly/validators/scatter3d/line/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklen.py b/plotly/validators/scatter3d/line/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticklen.py rename to plotly/validators/scatter3d/line/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickmode.py b/plotly/validators/scatter3d/line/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickmode.py rename to plotly/validators/scatter3d/line/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickprefix.py b/plotly/validators/scatter3d/line/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickprefix.py rename to plotly/validators/scatter3d/line/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticks.py b/plotly/validators/scatter3d/line/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticks.py rename to plotly/validators/scatter3d/line/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticksuffix.py b/plotly/validators/scatter3d/line/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticksuffix.py rename to plotly/validators/scatter3d/line/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticktext.py b/plotly/validators/scatter3d/line/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticktext.py rename to plotly/validators/scatter3d/line/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticktextsrc.py b/plotly/validators/scatter3d/line/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ticktextsrc.py rename to plotly/validators/scatter3d/line/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickvals.py b/plotly/validators/scatter3d/line/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickvals.py rename to plotly/validators/scatter3d/line/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickvalssrc.py b/plotly/validators/scatter3d/line/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickvalssrc.py rename to plotly/validators/scatter3d/line/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickwidth.py b/plotly/validators/scatter3d/line/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_tickwidth.py rename to plotly/validators/scatter3d/line/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_title.py b/plotly/validators/scatter3d/line/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_title.py rename to plotly/validators/scatter3d/line/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_x.py b/plotly/validators/scatter3d/line/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_x.py rename to plotly/validators/scatter3d/line/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_xanchor.py b/plotly/validators/scatter3d/line/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_xanchor.py rename to plotly/validators/scatter3d/line/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_xpad.py b/plotly/validators/scatter3d/line/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_xpad.py rename to plotly/validators/scatter3d/line/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_xref.py b/plotly/validators/scatter3d/line/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_xref.py rename to plotly/validators/scatter3d/line/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_y.py b/plotly/validators/scatter3d/line/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_y.py rename to plotly/validators/scatter3d/line/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_yanchor.py b/plotly/validators/scatter3d/line/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_yanchor.py rename to plotly/validators/scatter3d/line/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ypad.py b/plotly/validators/scatter3d/line/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_ypad.py rename to plotly/validators/scatter3d/line/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_yref.py b/plotly/validators/scatter3d/line/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/_yref.py rename to plotly/validators/scatter3d/line/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/__init__.py b/plotly/validators/scatter3d/line/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/__init__.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_color.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_color.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_family.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_family.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_lineposition.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_lineposition.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_shadow.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_shadow.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_size.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_size.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_style.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_style.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_textcase.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_textcase.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_variant.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_variant.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_weight.py b/plotly/validators/scatter3d/line/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickfont/_weight.py rename to plotly/validators/scatter3d/line/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/__init__.py b/plotly/validators/scatter3d/line/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/__init__.py rename to plotly/validators/scatter3d/line/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scatter3d/line/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scatter3d/line/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_enabled.py b/plotly/validators/scatter3d/line/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scatter3d/line/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_name.py b/plotly/validators/scatter3d/line/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_name.py rename to plotly/validators/scatter3d/line/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scatter3d/line/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scatter3d/line/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_value.py b/plotly/validators/scatter3d/line/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/tickformatstop/_value.py rename to plotly/validators/scatter3d/line/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/__init__.py b/plotly/validators/scatter3d/line/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/__init__.py rename to plotly/validators/scatter3d/line/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/_font.py b/plotly/validators/scatter3d/line/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/_font.py rename to plotly/validators/scatter3d/line/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/_side.py b/plotly/validators/scatter3d/line/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/_side.py rename to plotly/validators/scatter3d/line/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/_text.py b/plotly/validators/scatter3d/line/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/_text.py rename to plotly/validators/scatter3d/line/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/__init__.py b/plotly/validators/scatter3d/line/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/__init__.py rename to plotly/validators/scatter3d/line/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_color.py b/plotly/validators/scatter3d/line/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_color.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_family.py b/plotly/validators/scatter3d/line/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_family.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_lineposition.py b/plotly/validators/scatter3d/line/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_lineposition.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_shadow.py b/plotly/validators/scatter3d/line/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_shadow.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_size.py b/plotly/validators/scatter3d/line/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_size.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_style.py b/plotly/validators/scatter3d/line/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_style.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_textcase.py b/plotly/validators/scatter3d/line/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_textcase.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_variant.py b/plotly/validators/scatter3d/line/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_variant.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_weight.py b/plotly/validators/scatter3d/line/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/line/colorbar/title/font/_weight.py rename to plotly/validators/scatter3d/line/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/__init__.py b/plotly/validators/scatter3d/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/__init__.py rename to plotly/validators/scatter3d/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_autocolorscale.py b/plotly/validators/scatter3d/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_autocolorscale.py rename to plotly/validators/scatter3d/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_cauto.py b/plotly/validators/scatter3d/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_cauto.py rename to plotly/validators/scatter3d/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_cmax.py b/plotly/validators/scatter3d/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_cmax.py rename to plotly/validators/scatter3d/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_cmid.py b/plotly/validators/scatter3d/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_cmid.py rename to plotly/validators/scatter3d/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_cmin.py b/plotly/validators/scatter3d/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_cmin.py rename to plotly/validators/scatter3d/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_color.py b/plotly/validators/scatter3d/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_color.py rename to plotly/validators/scatter3d/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_coloraxis.py b/plotly/validators/scatter3d/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_coloraxis.py rename to plotly/validators/scatter3d/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_colorbar.py b/plotly/validators/scatter3d/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_colorbar.py rename to plotly/validators/scatter3d/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_colorscale.py b/plotly/validators/scatter3d/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_colorscale.py rename to plotly/validators/scatter3d/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_colorsrc.py b/plotly/validators/scatter3d/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_colorsrc.py rename to plotly/validators/scatter3d/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_line.py b/plotly/validators/scatter3d/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_line.py rename to plotly/validators/scatter3d/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_opacity.py b/plotly/validators/scatter3d/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_opacity.py rename to plotly/validators/scatter3d/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_reversescale.py b/plotly/validators/scatter3d/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_reversescale.py rename to plotly/validators/scatter3d/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_showscale.py b/plotly/validators/scatter3d/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_showscale.py rename to plotly/validators/scatter3d/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_size.py b/plotly/validators/scatter3d/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_size.py rename to plotly/validators/scatter3d/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_sizemin.py b/plotly/validators/scatter3d/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_sizemin.py rename to plotly/validators/scatter3d/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_sizemode.py b/plotly/validators/scatter3d/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_sizemode.py rename to plotly/validators/scatter3d/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_sizeref.py b/plotly/validators/scatter3d/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_sizeref.py rename to plotly/validators/scatter3d/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_sizesrc.py b/plotly/validators/scatter3d/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_sizesrc.py rename to plotly/validators/scatter3d/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_symbol.py b/plotly/validators/scatter3d/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_symbol.py rename to plotly/validators/scatter3d/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/_symbolsrc.py b/plotly/validators/scatter3d/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/_symbolsrc.py rename to plotly/validators/scatter3d/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/__init__.py b/plotly/validators/scatter3d/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/__init__.py rename to plotly/validators/scatter3d/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_bgcolor.py b/plotly/validators/scatter3d/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_bgcolor.py rename to plotly/validators/scatter3d/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_bordercolor.py b/plotly/validators/scatter3d/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_bordercolor.py rename to plotly/validators/scatter3d/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_borderwidth.py b/plotly/validators/scatter3d/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_borderwidth.py rename to plotly/validators/scatter3d/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_dtick.py b/plotly/validators/scatter3d/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_dtick.py rename to plotly/validators/scatter3d/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_exponentformat.py b/plotly/validators/scatter3d/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_exponentformat.py rename to plotly/validators/scatter3d/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_labelalias.py b/plotly/validators/scatter3d/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_labelalias.py rename to plotly/validators/scatter3d/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_len.py b/plotly/validators/scatter3d/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_len.py rename to plotly/validators/scatter3d/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_lenmode.py b/plotly/validators/scatter3d/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_lenmode.py rename to plotly/validators/scatter3d/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_minexponent.py b/plotly/validators/scatter3d/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_minexponent.py rename to plotly/validators/scatter3d/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_nticks.py b/plotly/validators/scatter3d/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_nticks.py rename to plotly/validators/scatter3d/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_orientation.py b/plotly/validators/scatter3d/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_orientation.py rename to plotly/validators/scatter3d/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_outlinecolor.py b/plotly/validators/scatter3d/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_outlinecolor.py rename to plotly/validators/scatter3d/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_outlinewidth.py b/plotly/validators/scatter3d/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_outlinewidth.py rename to plotly/validators/scatter3d/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_separatethousands.py b/plotly/validators/scatter3d/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_separatethousands.py rename to plotly/validators/scatter3d/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showexponent.py b/plotly/validators/scatter3d/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showexponent.py rename to plotly/validators/scatter3d/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showticklabels.py b/plotly/validators/scatter3d/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showticklabels.py rename to plotly/validators/scatter3d/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showtickprefix.py b/plotly/validators/scatter3d/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showtickprefix.py rename to plotly/validators/scatter3d/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showticksuffix.py b/plotly/validators/scatter3d/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_showticksuffix.py rename to plotly/validators/scatter3d/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_thickness.py b/plotly/validators/scatter3d/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_thickness.py rename to plotly/validators/scatter3d/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_thicknessmode.py b/plotly/validators/scatter3d/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_thicknessmode.py rename to plotly/validators/scatter3d/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tick0.py b/plotly/validators/scatter3d/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tick0.py rename to plotly/validators/scatter3d/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickangle.py b/plotly/validators/scatter3d/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickangle.py rename to plotly/validators/scatter3d/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickcolor.py b/plotly/validators/scatter3d/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickcolor.py rename to plotly/validators/scatter3d/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickfont.py b/plotly/validators/scatter3d/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickfont.py rename to plotly/validators/scatter3d/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickformat.py b/plotly/validators/scatter3d/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickformat.py rename to plotly/validators/scatter3d/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scatter3d/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickformatstops.py b/plotly/validators/scatter3d/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickformatstops.py rename to plotly/validators/scatter3d/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scatter3d/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scatter3d/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklabelposition.py b/plotly/validators/scatter3d/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scatter3d/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklabelstep.py b/plotly/validators/scatter3d/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scatter3d/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklen.py b/plotly/validators/scatter3d/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticklen.py rename to plotly/validators/scatter3d/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickmode.py b/plotly/validators/scatter3d/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickmode.py rename to plotly/validators/scatter3d/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickprefix.py b/plotly/validators/scatter3d/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickprefix.py rename to plotly/validators/scatter3d/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticks.py b/plotly/validators/scatter3d/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticks.py rename to plotly/validators/scatter3d/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticksuffix.py b/plotly/validators/scatter3d/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticksuffix.py rename to plotly/validators/scatter3d/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticktext.py b/plotly/validators/scatter3d/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticktext.py rename to plotly/validators/scatter3d/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticktextsrc.py b/plotly/validators/scatter3d/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scatter3d/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickvals.py b/plotly/validators/scatter3d/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickvals.py rename to plotly/validators/scatter3d/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickvalssrc.py b/plotly/validators/scatter3d/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scatter3d/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickwidth.py b/plotly/validators/scatter3d/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_tickwidth.py rename to plotly/validators/scatter3d/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_title.py b/plotly/validators/scatter3d/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_title.py rename to plotly/validators/scatter3d/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_x.py b/plotly/validators/scatter3d/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_x.py rename to plotly/validators/scatter3d/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_xanchor.py b/plotly/validators/scatter3d/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_xanchor.py rename to plotly/validators/scatter3d/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_xpad.py b/plotly/validators/scatter3d/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_xpad.py rename to plotly/validators/scatter3d/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_xref.py b/plotly/validators/scatter3d/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_xref.py rename to plotly/validators/scatter3d/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_y.py b/plotly/validators/scatter3d/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_y.py rename to plotly/validators/scatter3d/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_yanchor.py b/plotly/validators/scatter3d/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_yanchor.py rename to plotly/validators/scatter3d/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ypad.py b/plotly/validators/scatter3d/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_ypad.py rename to plotly/validators/scatter3d/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_yref.py b/plotly/validators/scatter3d/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/_yref.py rename to plotly/validators/scatter3d/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/__init__.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_color.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_color.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_family.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_family.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_size.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_size.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_style.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_style.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_variant.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_weight.py b/plotly/validators/scatter3d/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scatter3d/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scatter3d/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scatter3d/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scatter3d/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scatter3d/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scatter3d/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scatter3d/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scatter3d/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/__init__.py b/plotly/validators/scatter3d/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/__init__.py rename to plotly/validators/scatter3d/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/_font.py b/plotly/validators/scatter3d/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/_font.py rename to plotly/validators/scatter3d/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/_side.py b/plotly/validators/scatter3d/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/_side.py rename to plotly/validators/scatter3d/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/_text.py b/plotly/validators/scatter3d/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/_text.py rename to plotly/validators/scatter3d/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/__init__.py b/plotly/validators/scatter3d/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/__init__.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_color.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_color.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_family.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_family.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_shadow.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_size.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_size.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_style.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_style.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_textcase.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_variant.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_variant.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_weight.py b/plotly/validators/scatter3d/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/colorbar/title/font/_weight.py rename to plotly/validators/scatter3d/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/__init__.py b/plotly/validators/scatter3d/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/__init__.py rename to plotly/validators/scatter3d/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_autocolorscale.py b/plotly/validators/scatter3d/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_autocolorscale.py rename to plotly/validators/scatter3d/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_cauto.py b/plotly/validators/scatter3d/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_cauto.py rename to plotly/validators/scatter3d/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_cmax.py b/plotly/validators/scatter3d/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_cmax.py rename to plotly/validators/scatter3d/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_cmid.py b/plotly/validators/scatter3d/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_cmid.py rename to plotly/validators/scatter3d/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_cmin.py b/plotly/validators/scatter3d/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_cmin.py rename to plotly/validators/scatter3d/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_color.py b/plotly/validators/scatter3d/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_color.py rename to plotly/validators/scatter3d/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_coloraxis.py b/plotly/validators/scatter3d/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_coloraxis.py rename to plotly/validators/scatter3d/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_colorscale.py b/plotly/validators/scatter3d/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_colorscale.py rename to plotly/validators/scatter3d/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_colorsrc.py b/plotly/validators/scatter3d/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_colorsrc.py rename to plotly/validators/scatter3d/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_reversescale.py b/plotly/validators/scatter3d/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_reversescale.py rename to plotly/validators/scatter3d/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/marker/line/_width.py b/plotly/validators/scatter3d/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/marker/line/_width.py rename to plotly/validators/scatter3d/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/__init__.py b/plotly/validators/scatter3d/projection/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/__init__.py rename to plotly/validators/scatter3d/projection/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/_x.py b/plotly/validators/scatter3d/projection/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/_x.py rename to plotly/validators/scatter3d/projection/_x.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/_y.py b/plotly/validators/scatter3d/projection/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/_y.py rename to plotly/validators/scatter3d/projection/_y.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/_z.py b/plotly/validators/scatter3d/projection/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/_z.py rename to plotly/validators/scatter3d/projection/_z.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/x/__init__.py b/plotly/validators/scatter3d/projection/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/x/__init__.py rename to plotly/validators/scatter3d/projection/x/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/x/_opacity.py b/plotly/validators/scatter3d/projection/x/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/x/_opacity.py rename to plotly/validators/scatter3d/projection/x/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/x/_scale.py b/plotly/validators/scatter3d/projection/x/_scale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/x/_scale.py rename to plotly/validators/scatter3d/projection/x/_scale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/x/_show.py b/plotly/validators/scatter3d/projection/x/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/x/_show.py rename to plotly/validators/scatter3d/projection/x/_show.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/y/__init__.py b/plotly/validators/scatter3d/projection/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/y/__init__.py rename to plotly/validators/scatter3d/projection/y/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/y/_opacity.py b/plotly/validators/scatter3d/projection/y/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/y/_opacity.py rename to plotly/validators/scatter3d/projection/y/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/y/_scale.py b/plotly/validators/scatter3d/projection/y/_scale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/y/_scale.py rename to plotly/validators/scatter3d/projection/y/_scale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/y/_show.py b/plotly/validators/scatter3d/projection/y/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/y/_show.py rename to plotly/validators/scatter3d/projection/y/_show.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/z/__init__.py b/plotly/validators/scatter3d/projection/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/z/__init__.py rename to plotly/validators/scatter3d/projection/z/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/z/_opacity.py b/plotly/validators/scatter3d/projection/z/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/z/_opacity.py rename to plotly/validators/scatter3d/projection/z/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/z/_scale.py b/plotly/validators/scatter3d/projection/z/_scale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/z/_scale.py rename to plotly/validators/scatter3d/projection/z/_scale.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/projection/z/_show.py b/plotly/validators/scatter3d/projection/z/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/projection/z/_show.py rename to plotly/validators/scatter3d/projection/z/_show.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/stream/__init__.py b/plotly/validators/scatter3d/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/stream/__init__.py rename to plotly/validators/scatter3d/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/stream/_maxpoints.py b/plotly/validators/scatter3d/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/stream/_maxpoints.py rename to plotly/validators/scatter3d/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/stream/_token.py b/plotly/validators/scatter3d/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/stream/_token.py rename to plotly/validators/scatter3d/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/__init__.py b/plotly/validators/scatter3d/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/__init__.py rename to plotly/validators/scatter3d/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_color.py b/plotly/validators/scatter3d/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_color.py rename to plotly/validators/scatter3d/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_colorsrc.py b/plotly/validators/scatter3d/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_colorsrc.py rename to plotly/validators/scatter3d/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_family.py b/plotly/validators/scatter3d/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_family.py rename to plotly/validators/scatter3d/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_familysrc.py b/plotly/validators/scatter3d/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_familysrc.py rename to plotly/validators/scatter3d/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_size.py b/plotly/validators/scatter3d/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_size.py rename to plotly/validators/scatter3d/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_sizesrc.py b/plotly/validators/scatter3d/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_sizesrc.py rename to plotly/validators/scatter3d/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_style.py b/plotly/validators/scatter3d/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_style.py rename to plotly/validators/scatter3d/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_stylesrc.py b/plotly/validators/scatter3d/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_stylesrc.py rename to plotly/validators/scatter3d/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_variant.py b/plotly/validators/scatter3d/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_variant.py rename to plotly/validators/scatter3d/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_variantsrc.py b/plotly/validators/scatter3d/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_variantsrc.py rename to plotly/validators/scatter3d/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_weight.py b/plotly/validators/scatter3d/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_weight.py rename to plotly/validators/scatter3d/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatter3d/textfont/_weightsrc.py b/plotly/validators/scatter3d/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatter3d/textfont/_weightsrc.py rename to plotly/validators/scatter3d/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/__init__.py b/plotly/validators/scattercarpet/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/__init__.py rename to plotly/validators/scattercarpet/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_a.py b/plotly/validators/scattercarpet/_a.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_a.py rename to plotly/validators/scattercarpet/_a.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_asrc.py b/plotly/validators/scattercarpet/_asrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_asrc.py rename to plotly/validators/scattercarpet/_asrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_b.py b/plotly/validators/scattercarpet/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_b.py rename to plotly/validators/scattercarpet/_b.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_bsrc.py b/plotly/validators/scattercarpet/_bsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_bsrc.py rename to plotly/validators/scattercarpet/_bsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_carpet.py b/plotly/validators/scattercarpet/_carpet.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_carpet.py rename to plotly/validators/scattercarpet/_carpet.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_connectgaps.py b/plotly/validators/scattercarpet/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_connectgaps.py rename to plotly/validators/scattercarpet/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_customdata.py b/plotly/validators/scattercarpet/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_customdata.py rename to plotly/validators/scattercarpet/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_customdatasrc.py b/plotly/validators/scattercarpet/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_customdatasrc.py rename to plotly/validators/scattercarpet/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_fill.py b/plotly/validators/scattercarpet/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_fill.py rename to plotly/validators/scattercarpet/_fill.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_fillcolor.py b/plotly/validators/scattercarpet/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_fillcolor.py rename to plotly/validators/scattercarpet/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hoverinfo.py b/plotly/validators/scattercarpet/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hoverinfo.py rename to plotly/validators/scattercarpet/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hoverinfosrc.py b/plotly/validators/scattercarpet/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hoverinfosrc.py rename to plotly/validators/scattercarpet/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hoverlabel.py b/plotly/validators/scattercarpet/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hoverlabel.py rename to plotly/validators/scattercarpet/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hoveron.py b/plotly/validators/scattercarpet/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hoveron.py rename to plotly/validators/scattercarpet/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hovertemplate.py b/plotly/validators/scattercarpet/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hovertemplate.py rename to plotly/validators/scattercarpet/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hovertemplatesrc.py b/plotly/validators/scattercarpet/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hovertemplatesrc.py rename to plotly/validators/scattercarpet/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hovertext.py b/plotly/validators/scattercarpet/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hovertext.py rename to plotly/validators/scattercarpet/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_hovertextsrc.py b/plotly/validators/scattercarpet/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_hovertextsrc.py rename to plotly/validators/scattercarpet/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_ids.py b/plotly/validators/scattercarpet/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_ids.py rename to plotly/validators/scattercarpet/_ids.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_idssrc.py b/plotly/validators/scattercarpet/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_idssrc.py rename to plotly/validators/scattercarpet/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_legend.py b/plotly/validators/scattercarpet/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_legend.py rename to plotly/validators/scattercarpet/_legend.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_legendgroup.py b/plotly/validators/scattercarpet/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_legendgroup.py rename to plotly/validators/scattercarpet/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_legendgrouptitle.py b/plotly/validators/scattercarpet/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_legendgrouptitle.py rename to plotly/validators/scattercarpet/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_legendrank.py b/plotly/validators/scattercarpet/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_legendrank.py rename to plotly/validators/scattercarpet/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_legendwidth.py b/plotly/validators/scattercarpet/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_legendwidth.py rename to plotly/validators/scattercarpet/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_line.py b/plotly/validators/scattercarpet/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_line.py rename to plotly/validators/scattercarpet/_line.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_marker.py b/plotly/validators/scattercarpet/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_marker.py rename to plotly/validators/scattercarpet/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_meta.py b/plotly/validators/scattercarpet/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_meta.py rename to plotly/validators/scattercarpet/_meta.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_metasrc.py b/plotly/validators/scattercarpet/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_metasrc.py rename to plotly/validators/scattercarpet/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_mode.py b/plotly/validators/scattercarpet/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_mode.py rename to plotly/validators/scattercarpet/_mode.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_name.py b/plotly/validators/scattercarpet/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_name.py rename to plotly/validators/scattercarpet/_name.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_opacity.py b/plotly/validators/scattercarpet/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_opacity.py rename to plotly/validators/scattercarpet/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_selected.py b/plotly/validators/scattercarpet/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_selected.py rename to plotly/validators/scattercarpet/_selected.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_selectedpoints.py b/plotly/validators/scattercarpet/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_selectedpoints.py rename to plotly/validators/scattercarpet/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_showlegend.py b/plotly/validators/scattercarpet/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_showlegend.py rename to plotly/validators/scattercarpet/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_stream.py b/plotly/validators/scattercarpet/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_stream.py rename to plotly/validators/scattercarpet/_stream.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_text.py b/plotly/validators/scattercarpet/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_text.py rename to plotly/validators/scattercarpet/_text.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_textfont.py b/plotly/validators/scattercarpet/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_textfont.py rename to plotly/validators/scattercarpet/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_textposition.py b/plotly/validators/scattercarpet/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_textposition.py rename to plotly/validators/scattercarpet/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_textpositionsrc.py b/plotly/validators/scattercarpet/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_textpositionsrc.py rename to plotly/validators/scattercarpet/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_textsrc.py b/plotly/validators/scattercarpet/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_textsrc.py rename to plotly/validators/scattercarpet/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_texttemplate.py b/plotly/validators/scattercarpet/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_texttemplate.py rename to plotly/validators/scattercarpet/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_texttemplatesrc.py b/plotly/validators/scattercarpet/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_texttemplatesrc.py rename to plotly/validators/scattercarpet/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_uid.py b/plotly/validators/scattercarpet/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_uid.py rename to plotly/validators/scattercarpet/_uid.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_uirevision.py b/plotly/validators/scattercarpet/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_uirevision.py rename to plotly/validators/scattercarpet/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_unselected.py b/plotly/validators/scattercarpet/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_unselected.py rename to plotly/validators/scattercarpet/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_visible.py b/plotly/validators/scattercarpet/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_visible.py rename to plotly/validators/scattercarpet/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_xaxis.py b/plotly/validators/scattercarpet/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_xaxis.py rename to plotly/validators/scattercarpet/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_yaxis.py b/plotly/validators/scattercarpet/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_yaxis.py rename to plotly/validators/scattercarpet/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/_zorder.py b/plotly/validators/scattercarpet/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/_zorder.py rename to plotly/validators/scattercarpet/_zorder.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/__init__.py b/plotly/validators/scattercarpet/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/__init__.py rename to plotly/validators/scattercarpet/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_align.py b/plotly/validators/scattercarpet/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_align.py rename to plotly/validators/scattercarpet/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_alignsrc.py b/plotly/validators/scattercarpet/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_alignsrc.py rename to plotly/validators/scattercarpet/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bgcolor.py b/plotly/validators/scattercarpet/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bgcolor.py rename to plotly/validators/scattercarpet/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bgcolorsrc.py b/plotly/validators/scattercarpet/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scattercarpet/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bordercolor.py b/plotly/validators/scattercarpet/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bordercolor.py rename to plotly/validators/scattercarpet/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bordercolorsrc.py b/plotly/validators/scattercarpet/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scattercarpet/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_font.py b/plotly/validators/scattercarpet/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_font.py rename to plotly/validators/scattercarpet/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_namelength.py b/plotly/validators/scattercarpet/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_namelength.py rename to plotly/validators/scattercarpet/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_namelengthsrc.py b/plotly/validators/scattercarpet/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/_namelengthsrc.py rename to plotly/validators/scattercarpet/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/__init__.py b/plotly/validators/scattercarpet/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/__init__.py rename to plotly/validators/scattercarpet/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_color.py b/plotly/validators/scattercarpet/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_color.py rename to plotly/validators/scattercarpet/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_colorsrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_colorsrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_family.py b/plotly/validators/scattercarpet/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_family.py rename to plotly/validators/scattercarpet/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_familysrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_familysrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_lineposition.py b/plotly/validators/scattercarpet/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_lineposition.py rename to plotly/validators/scattercarpet/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_shadow.py b/plotly/validators/scattercarpet/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_shadow.py rename to plotly/validators/scattercarpet/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_shadowsrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_size.py b/plotly/validators/scattercarpet/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_size.py rename to plotly/validators/scattercarpet/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_sizesrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_sizesrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_style.py b/plotly/validators/scattercarpet/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_style.py rename to plotly/validators/scattercarpet/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_stylesrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_stylesrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_textcase.py b/plotly/validators/scattercarpet/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_textcase.py rename to plotly/validators/scattercarpet/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_textcasesrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_variant.py b/plotly/validators/scattercarpet/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_variant.py rename to plotly/validators/scattercarpet/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_variantsrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_variantsrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_weight.py b/plotly/validators/scattercarpet/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_weight.py rename to plotly/validators/scattercarpet/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_weightsrc.py b/plotly/validators/scattercarpet/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/hoverlabel/font/_weightsrc.py rename to plotly/validators/scattercarpet/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/__init__.py b/plotly/validators/scattercarpet/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/__init__.py rename to plotly/validators/scattercarpet/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/_font.py b/plotly/validators/scattercarpet/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/_font.py rename to plotly/validators/scattercarpet/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/_text.py b/plotly/validators/scattercarpet/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/_text.py rename to plotly/validators/scattercarpet/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/__init__.py b/plotly/validators/scattercarpet/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/__init__.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_color.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_color.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_family.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_family.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_lineposition.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_shadow.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_shadow.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_size.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_size.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_style.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_style.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_textcase.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_textcase.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_variant.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_variant.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_weight.py b/plotly/validators/scattercarpet/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/legendgrouptitle/font/_weight.py rename to plotly/validators/scattercarpet/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/__init__.py b/plotly/validators/scattercarpet/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/__init__.py rename to plotly/validators/scattercarpet/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_backoff.py b/plotly/validators/scattercarpet/line/_backoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_backoff.py rename to plotly/validators/scattercarpet/line/_backoff.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_backoffsrc.py b/plotly/validators/scattercarpet/line/_backoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_backoffsrc.py rename to plotly/validators/scattercarpet/line/_backoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_color.py b/plotly/validators/scattercarpet/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_color.py rename to plotly/validators/scattercarpet/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_dash.py b/plotly/validators/scattercarpet/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_dash.py rename to plotly/validators/scattercarpet/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_shape.py b/plotly/validators/scattercarpet/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_shape.py rename to plotly/validators/scattercarpet/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_smoothing.py b/plotly/validators/scattercarpet/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_smoothing.py rename to plotly/validators/scattercarpet/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/line/_width.py b/plotly/validators/scattercarpet/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/line/_width.py rename to plotly/validators/scattercarpet/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/__init__.py b/plotly/validators/scattercarpet/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/__init__.py rename to plotly/validators/scattercarpet/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_angle.py b/plotly/validators/scattercarpet/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_angle.py rename to plotly/validators/scattercarpet/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_angleref.py b/plotly/validators/scattercarpet/marker/_angleref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_angleref.py rename to plotly/validators/scattercarpet/marker/_angleref.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_anglesrc.py b/plotly/validators/scattercarpet/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_anglesrc.py rename to plotly/validators/scattercarpet/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_autocolorscale.py b/plotly/validators/scattercarpet/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_autocolorscale.py rename to plotly/validators/scattercarpet/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_cauto.py b/plotly/validators/scattercarpet/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_cauto.py rename to plotly/validators/scattercarpet/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_cmax.py b/plotly/validators/scattercarpet/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_cmax.py rename to plotly/validators/scattercarpet/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_cmid.py b/plotly/validators/scattercarpet/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_cmid.py rename to plotly/validators/scattercarpet/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_cmin.py b/plotly/validators/scattercarpet/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_cmin.py rename to plotly/validators/scattercarpet/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_color.py b/plotly/validators/scattercarpet/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_color.py rename to plotly/validators/scattercarpet/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_coloraxis.py b/plotly/validators/scattercarpet/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_coloraxis.py rename to plotly/validators/scattercarpet/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_colorbar.py b/plotly/validators/scattercarpet/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_colorbar.py rename to plotly/validators/scattercarpet/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_colorscale.py b/plotly/validators/scattercarpet/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_colorscale.py rename to plotly/validators/scattercarpet/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_colorsrc.py b/plotly/validators/scattercarpet/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_colorsrc.py rename to plotly/validators/scattercarpet/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_gradient.py b/plotly/validators/scattercarpet/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_gradient.py rename to plotly/validators/scattercarpet/marker/_gradient.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_line.py b/plotly/validators/scattercarpet/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_line.py rename to plotly/validators/scattercarpet/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_maxdisplayed.py b/plotly/validators/scattercarpet/marker/_maxdisplayed.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_maxdisplayed.py rename to plotly/validators/scattercarpet/marker/_maxdisplayed.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_opacity.py b/plotly/validators/scattercarpet/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_opacity.py rename to plotly/validators/scattercarpet/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_opacitysrc.py b/plotly/validators/scattercarpet/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_opacitysrc.py rename to plotly/validators/scattercarpet/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_reversescale.py b/plotly/validators/scattercarpet/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_reversescale.py rename to plotly/validators/scattercarpet/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_showscale.py b/plotly/validators/scattercarpet/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_showscale.py rename to plotly/validators/scattercarpet/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_size.py b/plotly/validators/scattercarpet/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_size.py rename to plotly/validators/scattercarpet/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_sizemin.py b/plotly/validators/scattercarpet/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_sizemin.py rename to plotly/validators/scattercarpet/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_sizemode.py b/plotly/validators/scattercarpet/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_sizemode.py rename to plotly/validators/scattercarpet/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_sizeref.py b/plotly/validators/scattercarpet/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_sizeref.py rename to plotly/validators/scattercarpet/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_sizesrc.py b/plotly/validators/scattercarpet/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_sizesrc.py rename to plotly/validators/scattercarpet/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_standoff.py b/plotly/validators/scattercarpet/marker/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_standoff.py rename to plotly/validators/scattercarpet/marker/_standoff.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_standoffsrc.py b/plotly/validators/scattercarpet/marker/_standoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_standoffsrc.py rename to plotly/validators/scattercarpet/marker/_standoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_symbol.py b/plotly/validators/scattercarpet/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_symbol.py rename to plotly/validators/scattercarpet/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/_symbolsrc.py b/plotly/validators/scattercarpet/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/_symbolsrc.py rename to plotly/validators/scattercarpet/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/__init__.py b/plotly/validators/scattercarpet/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/__init__.py rename to plotly/validators/scattercarpet/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_bgcolor.py b/plotly/validators/scattercarpet/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_bgcolor.py rename to plotly/validators/scattercarpet/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_bordercolor.py b/plotly/validators/scattercarpet/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_bordercolor.py rename to plotly/validators/scattercarpet/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_borderwidth.py b/plotly/validators/scattercarpet/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_borderwidth.py rename to plotly/validators/scattercarpet/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_dtick.py b/plotly/validators/scattercarpet/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_dtick.py rename to plotly/validators/scattercarpet/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_exponentformat.py b/plotly/validators/scattercarpet/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_exponentformat.py rename to plotly/validators/scattercarpet/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_labelalias.py b/plotly/validators/scattercarpet/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_labelalias.py rename to plotly/validators/scattercarpet/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_len.py b/plotly/validators/scattercarpet/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_len.py rename to plotly/validators/scattercarpet/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_lenmode.py b/plotly/validators/scattercarpet/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_lenmode.py rename to plotly/validators/scattercarpet/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_minexponent.py b/plotly/validators/scattercarpet/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_minexponent.py rename to plotly/validators/scattercarpet/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_nticks.py b/plotly/validators/scattercarpet/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_nticks.py rename to plotly/validators/scattercarpet/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_orientation.py b/plotly/validators/scattercarpet/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_orientation.py rename to plotly/validators/scattercarpet/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_outlinecolor.py b/plotly/validators/scattercarpet/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_outlinecolor.py rename to plotly/validators/scattercarpet/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_outlinewidth.py b/plotly/validators/scattercarpet/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_outlinewidth.py rename to plotly/validators/scattercarpet/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_separatethousands.py b/plotly/validators/scattercarpet/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_separatethousands.py rename to plotly/validators/scattercarpet/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showexponent.py b/plotly/validators/scattercarpet/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showexponent.py rename to plotly/validators/scattercarpet/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showticklabels.py b/plotly/validators/scattercarpet/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showticklabels.py rename to plotly/validators/scattercarpet/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showtickprefix.py b/plotly/validators/scattercarpet/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showtickprefix.py rename to plotly/validators/scattercarpet/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showticksuffix.py b/plotly/validators/scattercarpet/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_showticksuffix.py rename to plotly/validators/scattercarpet/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_thickness.py b/plotly/validators/scattercarpet/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_thickness.py rename to plotly/validators/scattercarpet/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_thicknessmode.py b/plotly/validators/scattercarpet/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_thicknessmode.py rename to plotly/validators/scattercarpet/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tick0.py b/plotly/validators/scattercarpet/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tick0.py rename to plotly/validators/scattercarpet/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickangle.py b/plotly/validators/scattercarpet/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickangle.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickcolor.py b/plotly/validators/scattercarpet/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickcolor.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickfont.py b/plotly/validators/scattercarpet/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickfont.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickformat.py b/plotly/validators/scattercarpet/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickformat.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickformatstops.py b/plotly/validators/scattercarpet/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickformatstops.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scattercarpet/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklabelposition.py b/plotly/validators/scattercarpet/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklabelstep.py b/plotly/validators/scattercarpet/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklen.py b/plotly/validators/scattercarpet/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticklen.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickmode.py b/plotly/validators/scattercarpet/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickmode.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickprefix.py b/plotly/validators/scattercarpet/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickprefix.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticks.py b/plotly/validators/scattercarpet/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticks.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticksuffix.py b/plotly/validators/scattercarpet/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticksuffix.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticktext.py b/plotly/validators/scattercarpet/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticktext.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticktextsrc.py b/plotly/validators/scattercarpet/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scattercarpet/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickvals.py b/plotly/validators/scattercarpet/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickvals.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickvalssrc.py b/plotly/validators/scattercarpet/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickwidth.py b/plotly/validators/scattercarpet/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_tickwidth.py rename to plotly/validators/scattercarpet/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_title.py b/plotly/validators/scattercarpet/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_title.py rename to plotly/validators/scattercarpet/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_x.py b/plotly/validators/scattercarpet/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_x.py rename to plotly/validators/scattercarpet/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_xanchor.py b/plotly/validators/scattercarpet/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_xanchor.py rename to plotly/validators/scattercarpet/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_xpad.py b/plotly/validators/scattercarpet/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_xpad.py rename to plotly/validators/scattercarpet/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_xref.py b/plotly/validators/scattercarpet/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_xref.py rename to plotly/validators/scattercarpet/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_y.py b/plotly/validators/scattercarpet/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_y.py rename to plotly/validators/scattercarpet/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_yanchor.py b/plotly/validators/scattercarpet/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_yanchor.py rename to plotly/validators/scattercarpet/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ypad.py b/plotly/validators/scattercarpet/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_ypad.py rename to plotly/validators/scattercarpet/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_yref.py b/plotly/validators/scattercarpet/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/_yref.py rename to plotly/validators/scattercarpet/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/__init__.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_color.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_color.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_family.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_family.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_size.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_size.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_style.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_style.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_variant.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_weight.py b/plotly/validators/scattercarpet/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scattercarpet/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scattercarpet/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scattercarpet/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/__init__.py b/plotly/validators/scattercarpet/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/__init__.py rename to plotly/validators/scattercarpet/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/_font.py b/plotly/validators/scattercarpet/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/_font.py rename to plotly/validators/scattercarpet/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/_side.py b/plotly/validators/scattercarpet/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/_side.py rename to plotly/validators/scattercarpet/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/_text.py b/plotly/validators/scattercarpet/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/_text.py rename to plotly/validators/scattercarpet/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/__init__.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/__init__.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_color.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_color.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_family.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_family.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_shadow.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_size.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_size.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_style.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_style.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_textcase.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_variant.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_variant.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_weight.py b/plotly/validators/scattercarpet/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/colorbar/title/font/_weight.py rename to plotly/validators/scattercarpet/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/__init__.py b/plotly/validators/scattercarpet/marker/gradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/__init__.py rename to plotly/validators/scattercarpet/marker/gradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_color.py b/plotly/validators/scattercarpet/marker/gradient/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_color.py rename to plotly/validators/scattercarpet/marker/gradient/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_colorsrc.py b/plotly/validators/scattercarpet/marker/gradient/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_colorsrc.py rename to plotly/validators/scattercarpet/marker/gradient/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_type.py b/plotly/validators/scattercarpet/marker/gradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_type.py rename to plotly/validators/scattercarpet/marker/gradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_typesrc.py b/plotly/validators/scattercarpet/marker/gradient/_typesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/gradient/_typesrc.py rename to plotly/validators/scattercarpet/marker/gradient/_typesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/__init__.py b/plotly/validators/scattercarpet/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/__init__.py rename to plotly/validators/scattercarpet/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_autocolorscale.py b/plotly/validators/scattercarpet/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_autocolorscale.py rename to plotly/validators/scattercarpet/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cauto.py b/plotly/validators/scattercarpet/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cauto.py rename to plotly/validators/scattercarpet/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cmax.py b/plotly/validators/scattercarpet/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cmax.py rename to plotly/validators/scattercarpet/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cmid.py b/plotly/validators/scattercarpet/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cmid.py rename to plotly/validators/scattercarpet/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cmin.py b/plotly/validators/scattercarpet/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_cmin.py rename to plotly/validators/scattercarpet/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_color.py b/plotly/validators/scattercarpet/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_color.py rename to plotly/validators/scattercarpet/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_coloraxis.py b/plotly/validators/scattercarpet/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_coloraxis.py rename to plotly/validators/scattercarpet/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_colorscale.py b/plotly/validators/scattercarpet/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_colorscale.py rename to plotly/validators/scattercarpet/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_colorsrc.py b/plotly/validators/scattercarpet/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_colorsrc.py rename to plotly/validators/scattercarpet/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_reversescale.py b/plotly/validators/scattercarpet/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_reversescale.py rename to plotly/validators/scattercarpet/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_width.py b/plotly/validators/scattercarpet/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_width.py rename to plotly/validators/scattercarpet/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/marker/line/_widthsrc.py b/plotly/validators/scattercarpet/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/marker/line/_widthsrc.py rename to plotly/validators/scattercarpet/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/__init__.py b/plotly/validators/scattercarpet/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/__init__.py rename to plotly/validators/scattercarpet/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/_marker.py b/plotly/validators/scattercarpet/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/_marker.py rename to plotly/validators/scattercarpet/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/_textfont.py b/plotly/validators/scattercarpet/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/_textfont.py rename to plotly/validators/scattercarpet/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/marker/__init__.py b/plotly/validators/scattercarpet/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/marker/__init__.py rename to plotly/validators/scattercarpet/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/marker/_color.py b/plotly/validators/scattercarpet/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/marker/_color.py rename to plotly/validators/scattercarpet/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/marker/_opacity.py b/plotly/validators/scattercarpet/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/marker/_opacity.py rename to plotly/validators/scattercarpet/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/marker/_size.py b/plotly/validators/scattercarpet/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/marker/_size.py rename to plotly/validators/scattercarpet/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/textfont/__init__.py b/plotly/validators/scattercarpet/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/textfont/__init__.py rename to plotly/validators/scattercarpet/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/selected/textfont/_color.py b/plotly/validators/scattercarpet/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/selected/textfont/_color.py rename to plotly/validators/scattercarpet/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/stream/__init__.py b/plotly/validators/scattercarpet/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/stream/__init__.py rename to plotly/validators/scattercarpet/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/stream/_maxpoints.py b/plotly/validators/scattercarpet/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/stream/_maxpoints.py rename to plotly/validators/scattercarpet/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/stream/_token.py b/plotly/validators/scattercarpet/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/stream/_token.py rename to plotly/validators/scattercarpet/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/__init__.py b/plotly/validators/scattercarpet/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/__init__.py rename to plotly/validators/scattercarpet/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_color.py b/plotly/validators/scattercarpet/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_color.py rename to plotly/validators/scattercarpet/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_colorsrc.py b/plotly/validators/scattercarpet/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_colorsrc.py rename to plotly/validators/scattercarpet/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_family.py b/plotly/validators/scattercarpet/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_family.py rename to plotly/validators/scattercarpet/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_familysrc.py b/plotly/validators/scattercarpet/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_familysrc.py rename to plotly/validators/scattercarpet/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_lineposition.py b/plotly/validators/scattercarpet/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_lineposition.py rename to plotly/validators/scattercarpet/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_linepositionsrc.py b/plotly/validators/scattercarpet/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_linepositionsrc.py rename to plotly/validators/scattercarpet/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_shadow.py b/plotly/validators/scattercarpet/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_shadow.py rename to plotly/validators/scattercarpet/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_shadowsrc.py b/plotly/validators/scattercarpet/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_shadowsrc.py rename to plotly/validators/scattercarpet/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_size.py b/plotly/validators/scattercarpet/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_size.py rename to plotly/validators/scattercarpet/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_sizesrc.py b/plotly/validators/scattercarpet/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_sizesrc.py rename to plotly/validators/scattercarpet/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_style.py b/plotly/validators/scattercarpet/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_style.py rename to plotly/validators/scattercarpet/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_stylesrc.py b/plotly/validators/scattercarpet/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_stylesrc.py rename to plotly/validators/scattercarpet/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_textcase.py b/plotly/validators/scattercarpet/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_textcase.py rename to plotly/validators/scattercarpet/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_textcasesrc.py b/plotly/validators/scattercarpet/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_textcasesrc.py rename to plotly/validators/scattercarpet/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_variant.py b/plotly/validators/scattercarpet/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_variant.py rename to plotly/validators/scattercarpet/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_variantsrc.py b/plotly/validators/scattercarpet/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_variantsrc.py rename to plotly/validators/scattercarpet/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_weight.py b/plotly/validators/scattercarpet/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_weight.py rename to plotly/validators/scattercarpet/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/textfont/_weightsrc.py b/plotly/validators/scattercarpet/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/textfont/_weightsrc.py rename to plotly/validators/scattercarpet/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/__init__.py b/plotly/validators/scattercarpet/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/__init__.py rename to plotly/validators/scattercarpet/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/_marker.py b/plotly/validators/scattercarpet/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/_marker.py rename to plotly/validators/scattercarpet/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/_textfont.py b/plotly/validators/scattercarpet/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/_textfont.py rename to plotly/validators/scattercarpet/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/__init__.py b/plotly/validators/scattercarpet/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/__init__.py rename to plotly/validators/scattercarpet/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/_color.py b/plotly/validators/scattercarpet/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/_color.py rename to plotly/validators/scattercarpet/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/_opacity.py b/plotly/validators/scattercarpet/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/_opacity.py rename to plotly/validators/scattercarpet/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/_size.py b/plotly/validators/scattercarpet/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/marker/_size.py rename to plotly/validators/scattercarpet/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/textfont/__init__.py b/plotly/validators/scattercarpet/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/textfont/__init__.py rename to plotly/validators/scattercarpet/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattercarpet/unselected/textfont/_color.py b/plotly/validators/scattercarpet/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattercarpet/unselected/textfont/_color.py rename to plotly/validators/scattercarpet/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/__init__.py b/plotly/validators/scattergeo/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/__init__.py rename to plotly/validators/scattergeo/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_connectgaps.py b/plotly/validators/scattergeo/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_connectgaps.py rename to plotly/validators/scattergeo/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_customdata.py b/plotly/validators/scattergeo/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_customdata.py rename to plotly/validators/scattergeo/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_customdatasrc.py b/plotly/validators/scattergeo/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_customdatasrc.py rename to plotly/validators/scattergeo/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_featureidkey.py b/plotly/validators/scattergeo/_featureidkey.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_featureidkey.py rename to plotly/validators/scattergeo/_featureidkey.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_fill.py b/plotly/validators/scattergeo/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_fill.py rename to plotly/validators/scattergeo/_fill.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_fillcolor.py b/plotly/validators/scattergeo/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_fillcolor.py rename to plotly/validators/scattergeo/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_geo.py b/plotly/validators/scattergeo/_geo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_geo.py rename to plotly/validators/scattergeo/_geo.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_geojson.py b/plotly/validators/scattergeo/_geojson.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_geojson.py rename to plotly/validators/scattergeo/_geojson.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hoverinfo.py b/plotly/validators/scattergeo/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hoverinfo.py rename to plotly/validators/scattergeo/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hoverinfosrc.py b/plotly/validators/scattergeo/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hoverinfosrc.py rename to plotly/validators/scattergeo/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hoverlabel.py b/plotly/validators/scattergeo/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hoverlabel.py rename to plotly/validators/scattergeo/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hovertemplate.py b/plotly/validators/scattergeo/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hovertemplate.py rename to plotly/validators/scattergeo/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hovertemplatesrc.py b/plotly/validators/scattergeo/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hovertemplatesrc.py rename to plotly/validators/scattergeo/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hovertext.py b/plotly/validators/scattergeo/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hovertext.py rename to plotly/validators/scattergeo/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_hovertextsrc.py b/plotly/validators/scattergeo/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_hovertextsrc.py rename to plotly/validators/scattergeo/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_ids.py b/plotly/validators/scattergeo/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_ids.py rename to plotly/validators/scattergeo/_ids.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_idssrc.py b/plotly/validators/scattergeo/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_idssrc.py rename to plotly/validators/scattergeo/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_lat.py b/plotly/validators/scattergeo/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_lat.py rename to plotly/validators/scattergeo/_lat.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_latsrc.py b/plotly/validators/scattergeo/_latsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_latsrc.py rename to plotly/validators/scattergeo/_latsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_legend.py b/plotly/validators/scattergeo/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_legend.py rename to plotly/validators/scattergeo/_legend.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_legendgroup.py b/plotly/validators/scattergeo/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_legendgroup.py rename to plotly/validators/scattergeo/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_legendgrouptitle.py b/plotly/validators/scattergeo/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_legendgrouptitle.py rename to plotly/validators/scattergeo/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_legendrank.py b/plotly/validators/scattergeo/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_legendrank.py rename to plotly/validators/scattergeo/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_legendwidth.py b/plotly/validators/scattergeo/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_legendwidth.py rename to plotly/validators/scattergeo/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_line.py b/plotly/validators/scattergeo/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_line.py rename to plotly/validators/scattergeo/_line.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_locationmode.py b/plotly/validators/scattergeo/_locationmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_locationmode.py rename to plotly/validators/scattergeo/_locationmode.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_locations.py b/plotly/validators/scattergeo/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_locations.py rename to plotly/validators/scattergeo/_locations.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_locationssrc.py b/plotly/validators/scattergeo/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_locationssrc.py rename to plotly/validators/scattergeo/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_lon.py b/plotly/validators/scattergeo/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_lon.py rename to plotly/validators/scattergeo/_lon.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_lonsrc.py b/plotly/validators/scattergeo/_lonsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_lonsrc.py rename to plotly/validators/scattergeo/_lonsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_marker.py b/plotly/validators/scattergeo/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_marker.py rename to plotly/validators/scattergeo/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_meta.py b/plotly/validators/scattergeo/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_meta.py rename to plotly/validators/scattergeo/_meta.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_metasrc.py b/plotly/validators/scattergeo/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_metasrc.py rename to plotly/validators/scattergeo/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_mode.py b/plotly/validators/scattergeo/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_mode.py rename to plotly/validators/scattergeo/_mode.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_name.py b/plotly/validators/scattergeo/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_name.py rename to plotly/validators/scattergeo/_name.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_opacity.py b/plotly/validators/scattergeo/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_opacity.py rename to plotly/validators/scattergeo/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_selected.py b/plotly/validators/scattergeo/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_selected.py rename to plotly/validators/scattergeo/_selected.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_selectedpoints.py b/plotly/validators/scattergeo/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_selectedpoints.py rename to plotly/validators/scattergeo/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_showlegend.py b/plotly/validators/scattergeo/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_showlegend.py rename to plotly/validators/scattergeo/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_stream.py b/plotly/validators/scattergeo/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_stream.py rename to plotly/validators/scattergeo/_stream.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_text.py b/plotly/validators/scattergeo/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_text.py rename to plotly/validators/scattergeo/_text.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_textfont.py b/plotly/validators/scattergeo/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_textfont.py rename to plotly/validators/scattergeo/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_textposition.py b/plotly/validators/scattergeo/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_textposition.py rename to plotly/validators/scattergeo/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_textpositionsrc.py b/plotly/validators/scattergeo/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_textpositionsrc.py rename to plotly/validators/scattergeo/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_textsrc.py b/plotly/validators/scattergeo/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_textsrc.py rename to plotly/validators/scattergeo/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_texttemplate.py b/plotly/validators/scattergeo/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_texttemplate.py rename to plotly/validators/scattergeo/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_texttemplatesrc.py b/plotly/validators/scattergeo/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_texttemplatesrc.py rename to plotly/validators/scattergeo/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_uid.py b/plotly/validators/scattergeo/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_uid.py rename to plotly/validators/scattergeo/_uid.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_uirevision.py b/plotly/validators/scattergeo/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_uirevision.py rename to plotly/validators/scattergeo/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_unselected.py b/plotly/validators/scattergeo/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_unselected.py rename to plotly/validators/scattergeo/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/_visible.py b/plotly/validators/scattergeo/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/_visible.py rename to plotly/validators/scattergeo/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/__init__.py b/plotly/validators/scattergeo/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/__init__.py rename to plotly/validators/scattergeo/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_align.py b/plotly/validators/scattergeo/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_align.py rename to plotly/validators/scattergeo/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_alignsrc.py b/plotly/validators/scattergeo/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_alignsrc.py rename to plotly/validators/scattergeo/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bgcolor.py b/plotly/validators/scattergeo/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bgcolor.py rename to plotly/validators/scattergeo/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bgcolorsrc.py b/plotly/validators/scattergeo/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scattergeo/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bordercolor.py b/plotly/validators/scattergeo/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bordercolor.py rename to plotly/validators/scattergeo/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bordercolorsrc.py b/plotly/validators/scattergeo/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scattergeo/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_font.py b/plotly/validators/scattergeo/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_font.py rename to plotly/validators/scattergeo/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_namelength.py b/plotly/validators/scattergeo/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_namelength.py rename to plotly/validators/scattergeo/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_namelengthsrc.py b/plotly/validators/scattergeo/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/_namelengthsrc.py rename to plotly/validators/scattergeo/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/__init__.py b/plotly/validators/scattergeo/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/__init__.py rename to plotly/validators/scattergeo/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_color.py b/plotly/validators/scattergeo/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_color.py rename to plotly/validators/scattergeo/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_colorsrc.py b/plotly/validators/scattergeo/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_colorsrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_family.py b/plotly/validators/scattergeo/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_family.py rename to plotly/validators/scattergeo/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_familysrc.py b/plotly/validators/scattergeo/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_familysrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_lineposition.py b/plotly/validators/scattergeo/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_lineposition.py rename to plotly/validators/scattergeo/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scattergeo/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_shadow.py b/plotly/validators/scattergeo/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_shadow.py rename to plotly/validators/scattergeo/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_shadowsrc.py b/plotly/validators/scattergeo/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_size.py b/plotly/validators/scattergeo/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_size.py rename to plotly/validators/scattergeo/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_sizesrc.py b/plotly/validators/scattergeo/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_sizesrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_style.py b/plotly/validators/scattergeo/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_style.py rename to plotly/validators/scattergeo/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_stylesrc.py b/plotly/validators/scattergeo/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_stylesrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_textcase.py b/plotly/validators/scattergeo/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_textcase.py rename to plotly/validators/scattergeo/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_textcasesrc.py b/plotly/validators/scattergeo/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_variant.py b/plotly/validators/scattergeo/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_variant.py rename to plotly/validators/scattergeo/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_variantsrc.py b/plotly/validators/scattergeo/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_variantsrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_weight.py b/plotly/validators/scattergeo/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_weight.py rename to plotly/validators/scattergeo/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_weightsrc.py b/plotly/validators/scattergeo/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/hoverlabel/font/_weightsrc.py rename to plotly/validators/scattergeo/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/__init__.py b/plotly/validators/scattergeo/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/__init__.py rename to plotly/validators/scattergeo/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/_font.py b/plotly/validators/scattergeo/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/_font.py rename to plotly/validators/scattergeo/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/_text.py b/plotly/validators/scattergeo/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/_text.py rename to plotly/validators/scattergeo/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/__init__.py b/plotly/validators/scattergeo/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/__init__.py rename to plotly/validators/scattergeo/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_color.py b/plotly/validators/scattergeo/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_color.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_family.py b/plotly/validators/scattergeo/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_family.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_lineposition.py b/plotly/validators/scattergeo/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_shadow.py b/plotly/validators/scattergeo/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_shadow.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_size.py b/plotly/validators/scattergeo/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_size.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_style.py b/plotly/validators/scattergeo/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_style.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_textcase.py b/plotly/validators/scattergeo/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_textcase.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_variant.py b/plotly/validators/scattergeo/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_variant.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_weight.py b/plotly/validators/scattergeo/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/legendgrouptitle/font/_weight.py rename to plotly/validators/scattergeo/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/line/__init__.py b/plotly/validators/scattergeo/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/line/__init__.py rename to plotly/validators/scattergeo/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/line/_color.py b/plotly/validators/scattergeo/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/line/_color.py rename to plotly/validators/scattergeo/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/line/_dash.py b/plotly/validators/scattergeo/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/line/_dash.py rename to plotly/validators/scattergeo/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/line/_width.py b/plotly/validators/scattergeo/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/line/_width.py rename to plotly/validators/scattergeo/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/__init__.py b/plotly/validators/scattergeo/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/__init__.py rename to plotly/validators/scattergeo/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_angle.py b/plotly/validators/scattergeo/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_angle.py rename to plotly/validators/scattergeo/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_angleref.py b/plotly/validators/scattergeo/marker/_angleref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_angleref.py rename to plotly/validators/scattergeo/marker/_angleref.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_anglesrc.py b/plotly/validators/scattergeo/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_anglesrc.py rename to plotly/validators/scattergeo/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_autocolorscale.py b/plotly/validators/scattergeo/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_autocolorscale.py rename to plotly/validators/scattergeo/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_cauto.py b/plotly/validators/scattergeo/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_cauto.py rename to plotly/validators/scattergeo/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_cmax.py b/plotly/validators/scattergeo/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_cmax.py rename to plotly/validators/scattergeo/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_cmid.py b/plotly/validators/scattergeo/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_cmid.py rename to plotly/validators/scattergeo/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_cmin.py b/plotly/validators/scattergeo/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_cmin.py rename to plotly/validators/scattergeo/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_color.py b/plotly/validators/scattergeo/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_color.py rename to plotly/validators/scattergeo/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_coloraxis.py b/plotly/validators/scattergeo/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_coloraxis.py rename to plotly/validators/scattergeo/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_colorbar.py b/plotly/validators/scattergeo/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_colorbar.py rename to plotly/validators/scattergeo/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_colorscale.py b/plotly/validators/scattergeo/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_colorscale.py rename to plotly/validators/scattergeo/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_colorsrc.py b/plotly/validators/scattergeo/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_colorsrc.py rename to plotly/validators/scattergeo/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_gradient.py b/plotly/validators/scattergeo/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_gradient.py rename to plotly/validators/scattergeo/marker/_gradient.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_line.py b/plotly/validators/scattergeo/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_line.py rename to plotly/validators/scattergeo/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_opacity.py b/plotly/validators/scattergeo/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_opacity.py rename to plotly/validators/scattergeo/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_opacitysrc.py b/plotly/validators/scattergeo/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_opacitysrc.py rename to plotly/validators/scattergeo/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_reversescale.py b/plotly/validators/scattergeo/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_reversescale.py rename to plotly/validators/scattergeo/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_showscale.py b/plotly/validators/scattergeo/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_showscale.py rename to plotly/validators/scattergeo/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_size.py b/plotly/validators/scattergeo/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_size.py rename to plotly/validators/scattergeo/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_sizemin.py b/plotly/validators/scattergeo/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_sizemin.py rename to plotly/validators/scattergeo/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_sizemode.py b/plotly/validators/scattergeo/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_sizemode.py rename to plotly/validators/scattergeo/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_sizeref.py b/plotly/validators/scattergeo/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_sizeref.py rename to plotly/validators/scattergeo/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_sizesrc.py b/plotly/validators/scattergeo/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_sizesrc.py rename to plotly/validators/scattergeo/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_standoff.py b/plotly/validators/scattergeo/marker/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_standoff.py rename to plotly/validators/scattergeo/marker/_standoff.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_standoffsrc.py b/plotly/validators/scattergeo/marker/_standoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_standoffsrc.py rename to plotly/validators/scattergeo/marker/_standoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_symbol.py b/plotly/validators/scattergeo/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_symbol.py rename to plotly/validators/scattergeo/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/_symbolsrc.py b/plotly/validators/scattergeo/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/_symbolsrc.py rename to plotly/validators/scattergeo/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/__init__.py b/plotly/validators/scattergeo/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/__init__.py rename to plotly/validators/scattergeo/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_bgcolor.py b/plotly/validators/scattergeo/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_bgcolor.py rename to plotly/validators/scattergeo/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_bordercolor.py b/plotly/validators/scattergeo/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_bordercolor.py rename to plotly/validators/scattergeo/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_borderwidth.py b/plotly/validators/scattergeo/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_borderwidth.py rename to plotly/validators/scattergeo/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_dtick.py b/plotly/validators/scattergeo/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_dtick.py rename to plotly/validators/scattergeo/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_exponentformat.py b/plotly/validators/scattergeo/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_exponentformat.py rename to plotly/validators/scattergeo/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_labelalias.py b/plotly/validators/scattergeo/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_labelalias.py rename to plotly/validators/scattergeo/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_len.py b/plotly/validators/scattergeo/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_len.py rename to plotly/validators/scattergeo/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_lenmode.py b/plotly/validators/scattergeo/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_lenmode.py rename to plotly/validators/scattergeo/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_minexponent.py b/plotly/validators/scattergeo/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_minexponent.py rename to plotly/validators/scattergeo/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_nticks.py b/plotly/validators/scattergeo/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_nticks.py rename to plotly/validators/scattergeo/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_orientation.py b/plotly/validators/scattergeo/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_orientation.py rename to plotly/validators/scattergeo/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_outlinecolor.py b/plotly/validators/scattergeo/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_outlinecolor.py rename to plotly/validators/scattergeo/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_outlinewidth.py b/plotly/validators/scattergeo/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_outlinewidth.py rename to plotly/validators/scattergeo/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_separatethousands.py b/plotly/validators/scattergeo/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_separatethousands.py rename to plotly/validators/scattergeo/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showexponent.py b/plotly/validators/scattergeo/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showexponent.py rename to plotly/validators/scattergeo/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showticklabels.py b/plotly/validators/scattergeo/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showticklabels.py rename to plotly/validators/scattergeo/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showtickprefix.py b/plotly/validators/scattergeo/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showtickprefix.py rename to plotly/validators/scattergeo/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showticksuffix.py b/plotly/validators/scattergeo/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_showticksuffix.py rename to plotly/validators/scattergeo/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_thickness.py b/plotly/validators/scattergeo/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_thickness.py rename to plotly/validators/scattergeo/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_thicknessmode.py b/plotly/validators/scattergeo/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_thicknessmode.py rename to plotly/validators/scattergeo/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tick0.py b/plotly/validators/scattergeo/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tick0.py rename to plotly/validators/scattergeo/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickangle.py b/plotly/validators/scattergeo/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickangle.py rename to plotly/validators/scattergeo/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickcolor.py b/plotly/validators/scattergeo/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickcolor.py rename to plotly/validators/scattergeo/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickfont.py b/plotly/validators/scattergeo/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickfont.py rename to plotly/validators/scattergeo/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickformat.py b/plotly/validators/scattergeo/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickformat.py rename to plotly/validators/scattergeo/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scattergeo/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickformatstops.py b/plotly/validators/scattergeo/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickformatstops.py rename to plotly/validators/scattergeo/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scattergeo/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scattergeo/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklabelposition.py b/plotly/validators/scattergeo/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scattergeo/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklabelstep.py b/plotly/validators/scattergeo/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scattergeo/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklen.py b/plotly/validators/scattergeo/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticklen.py rename to plotly/validators/scattergeo/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickmode.py b/plotly/validators/scattergeo/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickmode.py rename to plotly/validators/scattergeo/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickprefix.py b/plotly/validators/scattergeo/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickprefix.py rename to plotly/validators/scattergeo/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticks.py b/plotly/validators/scattergeo/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticks.py rename to plotly/validators/scattergeo/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticksuffix.py b/plotly/validators/scattergeo/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticksuffix.py rename to plotly/validators/scattergeo/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticktext.py b/plotly/validators/scattergeo/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticktext.py rename to plotly/validators/scattergeo/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticktextsrc.py b/plotly/validators/scattergeo/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scattergeo/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickvals.py b/plotly/validators/scattergeo/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickvals.py rename to plotly/validators/scattergeo/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickvalssrc.py b/plotly/validators/scattergeo/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scattergeo/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickwidth.py b/plotly/validators/scattergeo/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_tickwidth.py rename to plotly/validators/scattergeo/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_title.py b/plotly/validators/scattergeo/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_title.py rename to plotly/validators/scattergeo/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_x.py b/plotly/validators/scattergeo/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_x.py rename to plotly/validators/scattergeo/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_xanchor.py b/plotly/validators/scattergeo/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_xanchor.py rename to plotly/validators/scattergeo/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_xpad.py b/plotly/validators/scattergeo/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_xpad.py rename to plotly/validators/scattergeo/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_xref.py b/plotly/validators/scattergeo/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_xref.py rename to plotly/validators/scattergeo/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_y.py b/plotly/validators/scattergeo/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_y.py rename to plotly/validators/scattergeo/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_yanchor.py b/plotly/validators/scattergeo/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_yanchor.py rename to plotly/validators/scattergeo/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ypad.py b/plotly/validators/scattergeo/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_ypad.py rename to plotly/validators/scattergeo/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_yref.py b/plotly/validators/scattergeo/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/_yref.py rename to plotly/validators/scattergeo/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/__init__.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_color.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_color.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_family.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_family.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_size.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_size.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_style.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_style.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_variant.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_weight.py b/plotly/validators/scattergeo/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scattergeo/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scattergeo/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scattergeo/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scattergeo/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scattergeo/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scattergeo/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scattergeo/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scattergeo/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/__init__.py b/plotly/validators/scattergeo/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/__init__.py rename to plotly/validators/scattergeo/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/_font.py b/plotly/validators/scattergeo/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/_font.py rename to plotly/validators/scattergeo/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/_side.py b/plotly/validators/scattergeo/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/_side.py rename to plotly/validators/scattergeo/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/_text.py b/plotly/validators/scattergeo/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/_text.py rename to plotly/validators/scattergeo/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/__init__.py b/plotly/validators/scattergeo/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/__init__.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_color.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_color.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_family.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_family.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_shadow.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_size.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_size.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_style.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_style.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_textcase.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_variant.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_variant.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_weight.py b/plotly/validators/scattergeo/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/colorbar/title/font/_weight.py rename to plotly/validators/scattergeo/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/gradient/__init__.py b/plotly/validators/scattergeo/marker/gradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/gradient/__init__.py rename to plotly/validators/scattergeo/marker/gradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_color.py b/plotly/validators/scattergeo/marker/gradient/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_color.py rename to plotly/validators/scattergeo/marker/gradient/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_colorsrc.py b/plotly/validators/scattergeo/marker/gradient/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_colorsrc.py rename to plotly/validators/scattergeo/marker/gradient/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_type.py b/plotly/validators/scattergeo/marker/gradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_type.py rename to plotly/validators/scattergeo/marker/gradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_typesrc.py b/plotly/validators/scattergeo/marker/gradient/_typesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/gradient/_typesrc.py rename to plotly/validators/scattergeo/marker/gradient/_typesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/__init__.py b/plotly/validators/scattergeo/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/__init__.py rename to plotly/validators/scattergeo/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_autocolorscale.py b/plotly/validators/scattergeo/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_autocolorscale.py rename to plotly/validators/scattergeo/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_cauto.py b/plotly/validators/scattergeo/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_cauto.py rename to plotly/validators/scattergeo/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_cmax.py b/plotly/validators/scattergeo/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_cmax.py rename to plotly/validators/scattergeo/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_cmid.py b/plotly/validators/scattergeo/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_cmid.py rename to plotly/validators/scattergeo/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_cmin.py b/plotly/validators/scattergeo/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_cmin.py rename to plotly/validators/scattergeo/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_color.py b/plotly/validators/scattergeo/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_color.py rename to plotly/validators/scattergeo/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_coloraxis.py b/plotly/validators/scattergeo/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_coloraxis.py rename to plotly/validators/scattergeo/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_colorscale.py b/plotly/validators/scattergeo/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_colorscale.py rename to plotly/validators/scattergeo/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_colorsrc.py b/plotly/validators/scattergeo/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_colorsrc.py rename to plotly/validators/scattergeo/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_reversescale.py b/plotly/validators/scattergeo/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_reversescale.py rename to plotly/validators/scattergeo/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_width.py b/plotly/validators/scattergeo/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_width.py rename to plotly/validators/scattergeo/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/marker/line/_widthsrc.py b/plotly/validators/scattergeo/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/marker/line/_widthsrc.py rename to plotly/validators/scattergeo/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/__init__.py b/plotly/validators/scattergeo/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/__init__.py rename to plotly/validators/scattergeo/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/_marker.py b/plotly/validators/scattergeo/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/_marker.py rename to plotly/validators/scattergeo/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/_textfont.py b/plotly/validators/scattergeo/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/_textfont.py rename to plotly/validators/scattergeo/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/marker/__init__.py b/plotly/validators/scattergeo/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/marker/__init__.py rename to plotly/validators/scattergeo/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/marker/_color.py b/plotly/validators/scattergeo/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/marker/_color.py rename to plotly/validators/scattergeo/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/marker/_opacity.py b/plotly/validators/scattergeo/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/marker/_opacity.py rename to plotly/validators/scattergeo/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/marker/_size.py b/plotly/validators/scattergeo/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/marker/_size.py rename to plotly/validators/scattergeo/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/textfont/__init__.py b/plotly/validators/scattergeo/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/textfont/__init__.py rename to plotly/validators/scattergeo/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/selected/textfont/_color.py b/plotly/validators/scattergeo/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/selected/textfont/_color.py rename to plotly/validators/scattergeo/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/stream/__init__.py b/plotly/validators/scattergeo/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/stream/__init__.py rename to plotly/validators/scattergeo/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/stream/_maxpoints.py b/plotly/validators/scattergeo/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/stream/_maxpoints.py rename to plotly/validators/scattergeo/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/stream/_token.py b/plotly/validators/scattergeo/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/stream/_token.py rename to plotly/validators/scattergeo/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/__init__.py b/plotly/validators/scattergeo/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/__init__.py rename to plotly/validators/scattergeo/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_color.py b/plotly/validators/scattergeo/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_color.py rename to plotly/validators/scattergeo/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_colorsrc.py b/plotly/validators/scattergeo/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_colorsrc.py rename to plotly/validators/scattergeo/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_family.py b/plotly/validators/scattergeo/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_family.py rename to plotly/validators/scattergeo/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_familysrc.py b/plotly/validators/scattergeo/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_familysrc.py rename to plotly/validators/scattergeo/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_lineposition.py b/plotly/validators/scattergeo/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_lineposition.py rename to plotly/validators/scattergeo/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_linepositionsrc.py b/plotly/validators/scattergeo/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_linepositionsrc.py rename to plotly/validators/scattergeo/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_shadow.py b/plotly/validators/scattergeo/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_shadow.py rename to plotly/validators/scattergeo/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_shadowsrc.py b/plotly/validators/scattergeo/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_shadowsrc.py rename to plotly/validators/scattergeo/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_size.py b/plotly/validators/scattergeo/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_size.py rename to plotly/validators/scattergeo/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_sizesrc.py b/plotly/validators/scattergeo/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_sizesrc.py rename to plotly/validators/scattergeo/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_style.py b/plotly/validators/scattergeo/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_style.py rename to plotly/validators/scattergeo/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_stylesrc.py b/plotly/validators/scattergeo/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_stylesrc.py rename to plotly/validators/scattergeo/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_textcase.py b/plotly/validators/scattergeo/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_textcase.py rename to plotly/validators/scattergeo/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_textcasesrc.py b/plotly/validators/scattergeo/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_textcasesrc.py rename to plotly/validators/scattergeo/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_variant.py b/plotly/validators/scattergeo/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_variant.py rename to plotly/validators/scattergeo/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_variantsrc.py b/plotly/validators/scattergeo/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_variantsrc.py rename to plotly/validators/scattergeo/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_weight.py b/plotly/validators/scattergeo/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_weight.py rename to plotly/validators/scattergeo/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/textfont/_weightsrc.py b/plotly/validators/scattergeo/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/textfont/_weightsrc.py rename to plotly/validators/scattergeo/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/__init__.py b/plotly/validators/scattergeo/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/__init__.py rename to plotly/validators/scattergeo/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/_marker.py b/plotly/validators/scattergeo/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/_marker.py rename to plotly/validators/scattergeo/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/_textfont.py b/plotly/validators/scattergeo/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/_textfont.py rename to plotly/validators/scattergeo/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/marker/__init__.py b/plotly/validators/scattergeo/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/marker/__init__.py rename to plotly/validators/scattergeo/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/marker/_color.py b/plotly/validators/scattergeo/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/marker/_color.py rename to plotly/validators/scattergeo/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/marker/_opacity.py b/plotly/validators/scattergeo/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/marker/_opacity.py rename to plotly/validators/scattergeo/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/marker/_size.py b/plotly/validators/scattergeo/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/marker/_size.py rename to plotly/validators/scattergeo/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/textfont/__init__.py b/plotly/validators/scattergeo/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/textfont/__init__.py rename to plotly/validators/scattergeo/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergeo/unselected/textfont/_color.py b/plotly/validators/scattergeo/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergeo/unselected/textfont/_color.py rename to plotly/validators/scattergeo/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/__init__.py b/plotly/validators/scattergl/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/__init__.py rename to plotly/validators/scattergl/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_connectgaps.py b/plotly/validators/scattergl/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_connectgaps.py rename to plotly/validators/scattergl/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_customdata.py b/plotly/validators/scattergl/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_customdata.py rename to plotly/validators/scattergl/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_customdatasrc.py b/plotly/validators/scattergl/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_customdatasrc.py rename to plotly/validators/scattergl/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_dx.py b/plotly/validators/scattergl/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_dx.py rename to plotly/validators/scattergl/_dx.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_dy.py b/plotly/validators/scattergl/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_dy.py rename to plotly/validators/scattergl/_dy.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_error_x.py b/plotly/validators/scattergl/_error_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_error_x.py rename to plotly/validators/scattergl/_error_x.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_error_y.py b/plotly/validators/scattergl/_error_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_error_y.py rename to plotly/validators/scattergl/_error_y.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_fill.py b/plotly/validators/scattergl/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_fill.py rename to plotly/validators/scattergl/_fill.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_fillcolor.py b/plotly/validators/scattergl/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_fillcolor.py rename to plotly/validators/scattergl/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hoverinfo.py b/plotly/validators/scattergl/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hoverinfo.py rename to plotly/validators/scattergl/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hoverinfosrc.py b/plotly/validators/scattergl/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hoverinfosrc.py rename to plotly/validators/scattergl/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hoverlabel.py b/plotly/validators/scattergl/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hoverlabel.py rename to plotly/validators/scattergl/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hovertemplate.py b/plotly/validators/scattergl/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hovertemplate.py rename to plotly/validators/scattergl/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hovertemplatesrc.py b/plotly/validators/scattergl/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hovertemplatesrc.py rename to plotly/validators/scattergl/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hovertext.py b/plotly/validators/scattergl/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hovertext.py rename to plotly/validators/scattergl/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_hovertextsrc.py b/plotly/validators/scattergl/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_hovertextsrc.py rename to plotly/validators/scattergl/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_ids.py b/plotly/validators/scattergl/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_ids.py rename to plotly/validators/scattergl/_ids.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_idssrc.py b/plotly/validators/scattergl/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_idssrc.py rename to plotly/validators/scattergl/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_legend.py b/plotly/validators/scattergl/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_legend.py rename to plotly/validators/scattergl/_legend.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_legendgroup.py b/plotly/validators/scattergl/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_legendgroup.py rename to plotly/validators/scattergl/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_legendgrouptitle.py b/plotly/validators/scattergl/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_legendgrouptitle.py rename to plotly/validators/scattergl/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_legendrank.py b/plotly/validators/scattergl/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_legendrank.py rename to plotly/validators/scattergl/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_legendwidth.py b/plotly/validators/scattergl/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_legendwidth.py rename to plotly/validators/scattergl/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_line.py b/plotly/validators/scattergl/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_line.py rename to plotly/validators/scattergl/_line.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_marker.py b/plotly/validators/scattergl/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_marker.py rename to plotly/validators/scattergl/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_meta.py b/plotly/validators/scattergl/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_meta.py rename to plotly/validators/scattergl/_meta.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_metasrc.py b/plotly/validators/scattergl/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_metasrc.py rename to plotly/validators/scattergl/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_mode.py b/plotly/validators/scattergl/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_mode.py rename to plotly/validators/scattergl/_mode.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_name.py b/plotly/validators/scattergl/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_name.py rename to plotly/validators/scattergl/_name.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_opacity.py b/plotly/validators/scattergl/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_opacity.py rename to plotly/validators/scattergl/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_selected.py b/plotly/validators/scattergl/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_selected.py rename to plotly/validators/scattergl/_selected.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_selectedpoints.py b/plotly/validators/scattergl/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_selectedpoints.py rename to plotly/validators/scattergl/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_showlegend.py b/plotly/validators/scattergl/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_showlegend.py rename to plotly/validators/scattergl/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_stream.py b/plotly/validators/scattergl/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_stream.py rename to plotly/validators/scattergl/_stream.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_text.py b/plotly/validators/scattergl/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_text.py rename to plotly/validators/scattergl/_text.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_textfont.py b/plotly/validators/scattergl/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_textfont.py rename to plotly/validators/scattergl/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_textposition.py b/plotly/validators/scattergl/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_textposition.py rename to plotly/validators/scattergl/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_textpositionsrc.py b/plotly/validators/scattergl/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_textpositionsrc.py rename to plotly/validators/scattergl/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_textsrc.py b/plotly/validators/scattergl/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_textsrc.py rename to plotly/validators/scattergl/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_texttemplate.py b/plotly/validators/scattergl/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_texttemplate.py rename to plotly/validators/scattergl/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_texttemplatesrc.py b/plotly/validators/scattergl/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_texttemplatesrc.py rename to plotly/validators/scattergl/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_uid.py b/plotly/validators/scattergl/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_uid.py rename to plotly/validators/scattergl/_uid.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_uirevision.py b/plotly/validators/scattergl/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_uirevision.py rename to plotly/validators/scattergl/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_unselected.py b/plotly/validators/scattergl/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_unselected.py rename to plotly/validators/scattergl/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_visible.py b/plotly/validators/scattergl/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_visible.py rename to plotly/validators/scattergl/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_x.py b/plotly/validators/scattergl/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_x.py rename to plotly/validators/scattergl/_x.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_x0.py b/plotly/validators/scattergl/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_x0.py rename to plotly/validators/scattergl/_x0.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xaxis.py b/plotly/validators/scattergl/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xaxis.py rename to plotly/validators/scattergl/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xcalendar.py b/plotly/validators/scattergl/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xcalendar.py rename to plotly/validators/scattergl/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xhoverformat.py b/plotly/validators/scattergl/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xhoverformat.py rename to plotly/validators/scattergl/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xperiod.py b/plotly/validators/scattergl/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xperiod.py rename to plotly/validators/scattergl/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xperiod0.py b/plotly/validators/scattergl/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xperiod0.py rename to plotly/validators/scattergl/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xperiodalignment.py b/plotly/validators/scattergl/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xperiodalignment.py rename to plotly/validators/scattergl/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_xsrc.py b/plotly/validators/scattergl/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_xsrc.py rename to plotly/validators/scattergl/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_y.py b/plotly/validators/scattergl/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_y.py rename to plotly/validators/scattergl/_y.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_y0.py b/plotly/validators/scattergl/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_y0.py rename to plotly/validators/scattergl/_y0.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_yaxis.py b/plotly/validators/scattergl/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_yaxis.py rename to plotly/validators/scattergl/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_ycalendar.py b/plotly/validators/scattergl/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_ycalendar.py rename to plotly/validators/scattergl/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_yhoverformat.py b/plotly/validators/scattergl/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_yhoverformat.py rename to plotly/validators/scattergl/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_yperiod.py b/plotly/validators/scattergl/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_yperiod.py rename to plotly/validators/scattergl/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_yperiod0.py b/plotly/validators/scattergl/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_yperiod0.py rename to plotly/validators/scattergl/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_yperiodalignment.py b/plotly/validators/scattergl/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_yperiodalignment.py rename to plotly/validators/scattergl/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/scattergl/_ysrc.py b/plotly/validators/scattergl/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/_ysrc.py rename to plotly/validators/scattergl/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/__init__.py b/plotly/validators/scattergl/error_x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/__init__.py rename to plotly/validators/scattergl/error_x/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_array.py b/plotly/validators/scattergl/error_x/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_array.py rename to plotly/validators/scattergl/error_x/_array.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_arrayminus.py b/plotly/validators/scattergl/error_x/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_arrayminus.py rename to plotly/validators/scattergl/error_x/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_arrayminussrc.py b/plotly/validators/scattergl/error_x/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_arrayminussrc.py rename to plotly/validators/scattergl/error_x/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_arraysrc.py b/plotly/validators/scattergl/error_x/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_arraysrc.py rename to plotly/validators/scattergl/error_x/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_color.py b/plotly/validators/scattergl/error_x/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_color.py rename to plotly/validators/scattergl/error_x/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_copy_ystyle.py b/plotly/validators/scattergl/error_x/_copy_ystyle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_copy_ystyle.py rename to plotly/validators/scattergl/error_x/_copy_ystyle.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_symmetric.py b/plotly/validators/scattergl/error_x/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_symmetric.py rename to plotly/validators/scattergl/error_x/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_thickness.py b/plotly/validators/scattergl/error_x/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_thickness.py rename to plotly/validators/scattergl/error_x/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_traceref.py b/plotly/validators/scattergl/error_x/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_traceref.py rename to plotly/validators/scattergl/error_x/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_tracerefminus.py b/plotly/validators/scattergl/error_x/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_tracerefminus.py rename to plotly/validators/scattergl/error_x/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_type.py b/plotly/validators/scattergl/error_x/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_type.py rename to plotly/validators/scattergl/error_x/_type.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_value.py b/plotly/validators/scattergl/error_x/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_value.py rename to plotly/validators/scattergl/error_x/_value.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_valueminus.py b/plotly/validators/scattergl/error_x/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_valueminus.py rename to plotly/validators/scattergl/error_x/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_visible.py b/plotly/validators/scattergl/error_x/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_visible.py rename to plotly/validators/scattergl/error_x/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_x/_width.py b/plotly/validators/scattergl/error_x/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_x/_width.py rename to plotly/validators/scattergl/error_x/_width.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/__init__.py b/plotly/validators/scattergl/error_y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/__init__.py rename to plotly/validators/scattergl/error_y/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_array.py b/plotly/validators/scattergl/error_y/_array.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_array.py rename to plotly/validators/scattergl/error_y/_array.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_arrayminus.py b/plotly/validators/scattergl/error_y/_arrayminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_arrayminus.py rename to plotly/validators/scattergl/error_y/_arrayminus.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_arrayminussrc.py b/plotly/validators/scattergl/error_y/_arrayminussrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_arrayminussrc.py rename to plotly/validators/scattergl/error_y/_arrayminussrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_arraysrc.py b/plotly/validators/scattergl/error_y/_arraysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_arraysrc.py rename to plotly/validators/scattergl/error_y/_arraysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_color.py b/plotly/validators/scattergl/error_y/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_color.py rename to plotly/validators/scattergl/error_y/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_symmetric.py b/plotly/validators/scattergl/error_y/_symmetric.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_symmetric.py rename to plotly/validators/scattergl/error_y/_symmetric.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_thickness.py b/plotly/validators/scattergl/error_y/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_thickness.py rename to plotly/validators/scattergl/error_y/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_traceref.py b/plotly/validators/scattergl/error_y/_traceref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_traceref.py rename to plotly/validators/scattergl/error_y/_traceref.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_tracerefminus.py b/plotly/validators/scattergl/error_y/_tracerefminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_tracerefminus.py rename to plotly/validators/scattergl/error_y/_tracerefminus.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_type.py b/plotly/validators/scattergl/error_y/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_type.py rename to plotly/validators/scattergl/error_y/_type.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_value.py b/plotly/validators/scattergl/error_y/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_value.py rename to plotly/validators/scattergl/error_y/_value.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_valueminus.py b/plotly/validators/scattergl/error_y/_valueminus.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_valueminus.py rename to plotly/validators/scattergl/error_y/_valueminus.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_visible.py b/plotly/validators/scattergl/error_y/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_visible.py rename to plotly/validators/scattergl/error_y/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattergl/error_y/_width.py b/plotly/validators/scattergl/error_y/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/error_y/_width.py rename to plotly/validators/scattergl/error_y/_width.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/__init__.py b/plotly/validators/scattergl/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/__init__.py rename to plotly/validators/scattergl/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_align.py b/plotly/validators/scattergl/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_align.py rename to plotly/validators/scattergl/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_alignsrc.py b/plotly/validators/scattergl/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_alignsrc.py rename to plotly/validators/scattergl/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bgcolor.py b/plotly/validators/scattergl/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bgcolor.py rename to plotly/validators/scattergl/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bgcolorsrc.py b/plotly/validators/scattergl/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scattergl/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bordercolor.py b/plotly/validators/scattergl/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bordercolor.py rename to plotly/validators/scattergl/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bordercolorsrc.py b/plotly/validators/scattergl/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scattergl/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_font.py b/plotly/validators/scattergl/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_font.py rename to plotly/validators/scattergl/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_namelength.py b/plotly/validators/scattergl/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_namelength.py rename to plotly/validators/scattergl/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/_namelengthsrc.py b/plotly/validators/scattergl/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/_namelengthsrc.py rename to plotly/validators/scattergl/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/__init__.py b/plotly/validators/scattergl/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/__init__.py rename to plotly/validators/scattergl/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_color.py b/plotly/validators/scattergl/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_color.py rename to plotly/validators/scattergl/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_colorsrc.py b/plotly/validators/scattergl/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_colorsrc.py rename to plotly/validators/scattergl/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_family.py b/plotly/validators/scattergl/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_family.py rename to plotly/validators/scattergl/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_familysrc.py b/plotly/validators/scattergl/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_familysrc.py rename to plotly/validators/scattergl/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_lineposition.py b/plotly/validators/scattergl/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_lineposition.py rename to plotly/validators/scattergl/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scattergl/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scattergl/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_shadow.py b/plotly/validators/scattergl/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_shadow.py rename to plotly/validators/scattergl/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_shadowsrc.py b/plotly/validators/scattergl/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scattergl/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_size.py b/plotly/validators/scattergl/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_size.py rename to plotly/validators/scattergl/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_sizesrc.py b/plotly/validators/scattergl/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_sizesrc.py rename to plotly/validators/scattergl/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_style.py b/plotly/validators/scattergl/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_style.py rename to plotly/validators/scattergl/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_stylesrc.py b/plotly/validators/scattergl/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_stylesrc.py rename to plotly/validators/scattergl/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_textcase.py b/plotly/validators/scattergl/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_textcase.py rename to plotly/validators/scattergl/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_textcasesrc.py b/plotly/validators/scattergl/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scattergl/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_variant.py b/plotly/validators/scattergl/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_variant.py rename to plotly/validators/scattergl/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_variantsrc.py b/plotly/validators/scattergl/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_variantsrc.py rename to plotly/validators/scattergl/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_weight.py b/plotly/validators/scattergl/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_weight.py rename to plotly/validators/scattergl/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_weightsrc.py b/plotly/validators/scattergl/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/hoverlabel/font/_weightsrc.py rename to plotly/validators/scattergl/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/__init__.py b/plotly/validators/scattergl/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/__init__.py rename to plotly/validators/scattergl/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/_font.py b/plotly/validators/scattergl/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/_font.py rename to plotly/validators/scattergl/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/_text.py b/plotly/validators/scattergl/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/_text.py rename to plotly/validators/scattergl/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/__init__.py b/plotly/validators/scattergl/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/__init__.py rename to plotly/validators/scattergl/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_color.py b/plotly/validators/scattergl/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_color.py rename to plotly/validators/scattergl/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_family.py b/plotly/validators/scattergl/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_family.py rename to plotly/validators/scattergl/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_lineposition.py b/plotly/validators/scattergl/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scattergl/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_shadow.py b/plotly/validators/scattergl/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_shadow.py rename to plotly/validators/scattergl/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_size.py b/plotly/validators/scattergl/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_size.py rename to plotly/validators/scattergl/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_style.py b/plotly/validators/scattergl/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_style.py rename to plotly/validators/scattergl/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_textcase.py b/plotly/validators/scattergl/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_textcase.py rename to plotly/validators/scattergl/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_variant.py b/plotly/validators/scattergl/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_variant.py rename to plotly/validators/scattergl/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_weight.py b/plotly/validators/scattergl/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/legendgrouptitle/font/_weight.py rename to plotly/validators/scattergl/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergl/line/__init__.py b/plotly/validators/scattergl/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/line/__init__.py rename to plotly/validators/scattergl/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/line/_color.py b/plotly/validators/scattergl/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/line/_color.py rename to plotly/validators/scattergl/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/line/_dash.py b/plotly/validators/scattergl/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/line/_dash.py rename to plotly/validators/scattergl/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scattergl/line/_shape.py b/plotly/validators/scattergl/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/line/_shape.py rename to plotly/validators/scattergl/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/scattergl/line/_width.py b/plotly/validators/scattergl/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/line/_width.py rename to plotly/validators/scattergl/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/__init__.py b/plotly/validators/scattergl/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/__init__.py rename to plotly/validators/scattergl/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_angle.py b/plotly/validators/scattergl/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_angle.py rename to plotly/validators/scattergl/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_anglesrc.py b/plotly/validators/scattergl/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_anglesrc.py rename to plotly/validators/scattergl/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_autocolorscale.py b/plotly/validators/scattergl/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_autocolorscale.py rename to plotly/validators/scattergl/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_cauto.py b/plotly/validators/scattergl/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_cauto.py rename to plotly/validators/scattergl/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_cmax.py b/plotly/validators/scattergl/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_cmax.py rename to plotly/validators/scattergl/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_cmid.py b/plotly/validators/scattergl/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_cmid.py rename to plotly/validators/scattergl/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_cmin.py b/plotly/validators/scattergl/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_cmin.py rename to plotly/validators/scattergl/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_color.py b/plotly/validators/scattergl/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_color.py rename to plotly/validators/scattergl/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_coloraxis.py b/plotly/validators/scattergl/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_coloraxis.py rename to plotly/validators/scattergl/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_colorbar.py b/plotly/validators/scattergl/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_colorbar.py rename to plotly/validators/scattergl/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_colorscale.py b/plotly/validators/scattergl/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_colorscale.py rename to plotly/validators/scattergl/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_colorsrc.py b/plotly/validators/scattergl/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_colorsrc.py rename to plotly/validators/scattergl/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_line.py b/plotly/validators/scattergl/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_line.py rename to plotly/validators/scattergl/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_opacity.py b/plotly/validators/scattergl/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_opacity.py rename to plotly/validators/scattergl/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_opacitysrc.py b/plotly/validators/scattergl/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_opacitysrc.py rename to plotly/validators/scattergl/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_reversescale.py b/plotly/validators/scattergl/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_reversescale.py rename to plotly/validators/scattergl/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_showscale.py b/plotly/validators/scattergl/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_showscale.py rename to plotly/validators/scattergl/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_size.py b/plotly/validators/scattergl/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_size.py rename to plotly/validators/scattergl/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_sizemin.py b/plotly/validators/scattergl/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_sizemin.py rename to plotly/validators/scattergl/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_sizemode.py b/plotly/validators/scattergl/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_sizemode.py rename to plotly/validators/scattergl/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_sizeref.py b/plotly/validators/scattergl/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_sizeref.py rename to plotly/validators/scattergl/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_sizesrc.py b/plotly/validators/scattergl/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_sizesrc.py rename to plotly/validators/scattergl/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_symbol.py b/plotly/validators/scattergl/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_symbol.py rename to plotly/validators/scattergl/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/_symbolsrc.py b/plotly/validators/scattergl/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/_symbolsrc.py rename to plotly/validators/scattergl/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/__init__.py b/plotly/validators/scattergl/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/__init__.py rename to plotly/validators/scattergl/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_bgcolor.py b/plotly/validators/scattergl/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_bgcolor.py rename to plotly/validators/scattergl/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_bordercolor.py b/plotly/validators/scattergl/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_bordercolor.py rename to plotly/validators/scattergl/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_borderwidth.py b/plotly/validators/scattergl/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_borderwidth.py rename to plotly/validators/scattergl/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_dtick.py b/plotly/validators/scattergl/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_dtick.py rename to plotly/validators/scattergl/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_exponentformat.py b/plotly/validators/scattergl/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_exponentformat.py rename to plotly/validators/scattergl/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_labelalias.py b/plotly/validators/scattergl/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_labelalias.py rename to plotly/validators/scattergl/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_len.py b/plotly/validators/scattergl/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_len.py rename to plotly/validators/scattergl/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_lenmode.py b/plotly/validators/scattergl/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_lenmode.py rename to plotly/validators/scattergl/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_minexponent.py b/plotly/validators/scattergl/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_minexponent.py rename to plotly/validators/scattergl/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_nticks.py b/plotly/validators/scattergl/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_nticks.py rename to plotly/validators/scattergl/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_orientation.py b/plotly/validators/scattergl/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_orientation.py rename to plotly/validators/scattergl/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_outlinecolor.py b/plotly/validators/scattergl/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_outlinecolor.py rename to plotly/validators/scattergl/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_outlinewidth.py b/plotly/validators/scattergl/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_outlinewidth.py rename to plotly/validators/scattergl/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_separatethousands.py b/plotly/validators/scattergl/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_separatethousands.py rename to plotly/validators/scattergl/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showexponent.py b/plotly/validators/scattergl/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showexponent.py rename to plotly/validators/scattergl/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showticklabels.py b/plotly/validators/scattergl/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showticklabels.py rename to plotly/validators/scattergl/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showtickprefix.py b/plotly/validators/scattergl/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showtickprefix.py rename to plotly/validators/scattergl/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showticksuffix.py b/plotly/validators/scattergl/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_showticksuffix.py rename to plotly/validators/scattergl/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_thickness.py b/plotly/validators/scattergl/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_thickness.py rename to plotly/validators/scattergl/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_thicknessmode.py b/plotly/validators/scattergl/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_thicknessmode.py rename to plotly/validators/scattergl/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tick0.py b/plotly/validators/scattergl/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tick0.py rename to plotly/validators/scattergl/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickangle.py b/plotly/validators/scattergl/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickangle.py rename to plotly/validators/scattergl/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickcolor.py b/plotly/validators/scattergl/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickcolor.py rename to plotly/validators/scattergl/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickfont.py b/plotly/validators/scattergl/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickfont.py rename to plotly/validators/scattergl/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickformat.py b/plotly/validators/scattergl/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickformat.py rename to plotly/validators/scattergl/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scattergl/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickformatstops.py b/plotly/validators/scattergl/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickformatstops.py rename to plotly/validators/scattergl/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scattergl/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scattergl/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklabelposition.py b/plotly/validators/scattergl/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scattergl/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklabelstep.py b/plotly/validators/scattergl/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scattergl/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklen.py b/plotly/validators/scattergl/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticklen.py rename to plotly/validators/scattergl/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickmode.py b/plotly/validators/scattergl/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickmode.py rename to plotly/validators/scattergl/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickprefix.py b/plotly/validators/scattergl/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickprefix.py rename to plotly/validators/scattergl/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticks.py b/plotly/validators/scattergl/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticks.py rename to plotly/validators/scattergl/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticksuffix.py b/plotly/validators/scattergl/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticksuffix.py rename to plotly/validators/scattergl/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticktext.py b/plotly/validators/scattergl/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticktext.py rename to plotly/validators/scattergl/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticktextsrc.py b/plotly/validators/scattergl/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scattergl/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickvals.py b/plotly/validators/scattergl/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickvals.py rename to plotly/validators/scattergl/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickvalssrc.py b/plotly/validators/scattergl/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scattergl/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickwidth.py b/plotly/validators/scattergl/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_tickwidth.py rename to plotly/validators/scattergl/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_title.py b/plotly/validators/scattergl/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_title.py rename to plotly/validators/scattergl/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_x.py b/plotly/validators/scattergl/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_x.py rename to plotly/validators/scattergl/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_xanchor.py b/plotly/validators/scattergl/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_xanchor.py rename to plotly/validators/scattergl/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_xpad.py b/plotly/validators/scattergl/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_xpad.py rename to plotly/validators/scattergl/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_xref.py b/plotly/validators/scattergl/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_xref.py rename to plotly/validators/scattergl/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_y.py b/plotly/validators/scattergl/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_y.py rename to plotly/validators/scattergl/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_yanchor.py b/plotly/validators/scattergl/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_yanchor.py rename to plotly/validators/scattergl/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ypad.py b/plotly/validators/scattergl/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_ypad.py rename to plotly/validators/scattergl/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_yref.py b/plotly/validators/scattergl/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/_yref.py rename to plotly/validators/scattergl/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/__init__.py b/plotly/validators/scattergl/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_color.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_color.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_family.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_family.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_size.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_size.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_style.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_style.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_variant.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_weight.py b/plotly/validators/scattergl/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scattergl/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scattergl/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scattergl/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scattergl/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scattergl/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scattergl/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scattergl/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scattergl/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scattergl/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scattergl/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scattergl/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scattergl/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scattergl/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/__init__.py b/plotly/validators/scattergl/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/__init__.py rename to plotly/validators/scattergl/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/_font.py b/plotly/validators/scattergl/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/_font.py rename to plotly/validators/scattergl/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/_side.py b/plotly/validators/scattergl/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/_side.py rename to plotly/validators/scattergl/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/_text.py b/plotly/validators/scattergl/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/_text.py rename to plotly/validators/scattergl/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/__init__.py b/plotly/validators/scattergl/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/__init__.py rename to plotly/validators/scattergl/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_color.py b/plotly/validators/scattergl/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_color.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_family.py b/plotly/validators/scattergl/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_family.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scattergl/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_shadow.py b/plotly/validators/scattergl/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_size.py b/plotly/validators/scattergl/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_size.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_style.py b/plotly/validators/scattergl/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_style.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_textcase.py b/plotly/validators/scattergl/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_variant.py b/plotly/validators/scattergl/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_variant.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_weight.py b/plotly/validators/scattergl/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/colorbar/title/font/_weight.py rename to plotly/validators/scattergl/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/__init__.py b/plotly/validators/scattergl/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/__init__.py rename to plotly/validators/scattergl/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_autocolorscale.py b/plotly/validators/scattergl/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_autocolorscale.py rename to plotly/validators/scattergl/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_cauto.py b/plotly/validators/scattergl/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_cauto.py rename to plotly/validators/scattergl/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_cmax.py b/plotly/validators/scattergl/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_cmax.py rename to plotly/validators/scattergl/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_cmid.py b/plotly/validators/scattergl/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_cmid.py rename to plotly/validators/scattergl/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_cmin.py b/plotly/validators/scattergl/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_cmin.py rename to plotly/validators/scattergl/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_color.py b/plotly/validators/scattergl/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_color.py rename to plotly/validators/scattergl/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_coloraxis.py b/plotly/validators/scattergl/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_coloraxis.py rename to plotly/validators/scattergl/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_colorscale.py b/plotly/validators/scattergl/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_colorscale.py rename to plotly/validators/scattergl/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_colorsrc.py b/plotly/validators/scattergl/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_colorsrc.py rename to plotly/validators/scattergl/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_reversescale.py b/plotly/validators/scattergl/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_reversescale.py rename to plotly/validators/scattergl/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_width.py b/plotly/validators/scattergl/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_width.py rename to plotly/validators/scattergl/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattergl/marker/line/_widthsrc.py b/plotly/validators/scattergl/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/marker/line/_widthsrc.py rename to plotly/validators/scattergl/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/__init__.py b/plotly/validators/scattergl/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/__init__.py rename to plotly/validators/scattergl/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/_marker.py b/plotly/validators/scattergl/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/_marker.py rename to plotly/validators/scattergl/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/_textfont.py b/plotly/validators/scattergl/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/_textfont.py rename to plotly/validators/scattergl/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/marker/__init__.py b/plotly/validators/scattergl/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/marker/__init__.py rename to plotly/validators/scattergl/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/marker/_color.py b/plotly/validators/scattergl/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/marker/_color.py rename to plotly/validators/scattergl/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/marker/_opacity.py b/plotly/validators/scattergl/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/marker/_opacity.py rename to plotly/validators/scattergl/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/marker/_size.py b/plotly/validators/scattergl/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/marker/_size.py rename to plotly/validators/scattergl/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/textfont/__init__.py b/plotly/validators/scattergl/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/textfont/__init__.py rename to plotly/validators/scattergl/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/selected/textfont/_color.py b/plotly/validators/scattergl/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/selected/textfont/_color.py rename to plotly/validators/scattergl/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/stream/__init__.py b/plotly/validators/scattergl/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/stream/__init__.py rename to plotly/validators/scattergl/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/stream/_maxpoints.py b/plotly/validators/scattergl/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/stream/_maxpoints.py rename to plotly/validators/scattergl/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scattergl/stream/_token.py b/plotly/validators/scattergl/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/stream/_token.py rename to plotly/validators/scattergl/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/__init__.py b/plotly/validators/scattergl/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/__init__.py rename to plotly/validators/scattergl/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_color.py b/plotly/validators/scattergl/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_color.py rename to plotly/validators/scattergl/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_colorsrc.py b/plotly/validators/scattergl/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_colorsrc.py rename to plotly/validators/scattergl/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_family.py b/plotly/validators/scattergl/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_family.py rename to plotly/validators/scattergl/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_familysrc.py b/plotly/validators/scattergl/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_familysrc.py rename to plotly/validators/scattergl/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_size.py b/plotly/validators/scattergl/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_size.py rename to plotly/validators/scattergl/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_sizesrc.py b/plotly/validators/scattergl/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_sizesrc.py rename to plotly/validators/scattergl/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_style.py b/plotly/validators/scattergl/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_style.py rename to plotly/validators/scattergl/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_stylesrc.py b/plotly/validators/scattergl/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_stylesrc.py rename to plotly/validators/scattergl/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_variant.py b/plotly/validators/scattergl/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_variant.py rename to plotly/validators/scattergl/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_variantsrc.py b/plotly/validators/scattergl/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_variantsrc.py rename to plotly/validators/scattergl/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_weight.py b/plotly/validators/scattergl/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_weight.py rename to plotly/validators/scattergl/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattergl/textfont/_weightsrc.py b/plotly/validators/scattergl/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/textfont/_weightsrc.py rename to plotly/validators/scattergl/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/__init__.py b/plotly/validators/scattergl/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/__init__.py rename to plotly/validators/scattergl/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/_marker.py b/plotly/validators/scattergl/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/_marker.py rename to plotly/validators/scattergl/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/_textfont.py b/plotly/validators/scattergl/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/_textfont.py rename to plotly/validators/scattergl/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/marker/__init__.py b/plotly/validators/scattergl/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/marker/__init__.py rename to plotly/validators/scattergl/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/marker/_color.py b/plotly/validators/scattergl/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/marker/_color.py rename to plotly/validators/scattergl/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/marker/_opacity.py b/plotly/validators/scattergl/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/marker/_opacity.py rename to plotly/validators/scattergl/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/marker/_size.py b/plotly/validators/scattergl/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/marker/_size.py rename to plotly/validators/scattergl/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/textfont/__init__.py b/plotly/validators/scattergl/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/textfont/__init__.py rename to plotly/validators/scattergl/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattergl/unselected/textfont/_color.py b/plotly/validators/scattergl/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattergl/unselected/textfont/_color.py rename to plotly/validators/scattergl/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/__init__.py b/plotly/validators/scattermap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/__init__.py rename to plotly/validators/scattermap/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_below.py b/plotly/validators/scattermap/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_below.py rename to plotly/validators/scattermap/_below.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_cluster.py b/plotly/validators/scattermap/_cluster.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_cluster.py rename to plotly/validators/scattermap/_cluster.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_connectgaps.py b/plotly/validators/scattermap/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_connectgaps.py rename to plotly/validators/scattermap/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_customdata.py b/plotly/validators/scattermap/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_customdata.py rename to plotly/validators/scattermap/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_customdatasrc.py b/plotly/validators/scattermap/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_customdatasrc.py rename to plotly/validators/scattermap/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_fill.py b/plotly/validators/scattermap/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_fill.py rename to plotly/validators/scattermap/_fill.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_fillcolor.py b/plotly/validators/scattermap/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_fillcolor.py rename to plotly/validators/scattermap/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hoverinfo.py b/plotly/validators/scattermap/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hoverinfo.py rename to plotly/validators/scattermap/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hoverinfosrc.py b/plotly/validators/scattermap/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hoverinfosrc.py rename to plotly/validators/scattermap/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hoverlabel.py b/plotly/validators/scattermap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hoverlabel.py rename to plotly/validators/scattermap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hovertemplate.py b/plotly/validators/scattermap/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hovertemplate.py rename to plotly/validators/scattermap/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hovertemplatesrc.py b/plotly/validators/scattermap/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hovertemplatesrc.py rename to plotly/validators/scattermap/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hovertext.py b/plotly/validators/scattermap/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hovertext.py rename to plotly/validators/scattermap/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_hovertextsrc.py b/plotly/validators/scattermap/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_hovertextsrc.py rename to plotly/validators/scattermap/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_ids.py b/plotly/validators/scattermap/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_ids.py rename to plotly/validators/scattermap/_ids.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_idssrc.py b/plotly/validators/scattermap/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_idssrc.py rename to plotly/validators/scattermap/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_lat.py b/plotly/validators/scattermap/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_lat.py rename to plotly/validators/scattermap/_lat.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_latsrc.py b/plotly/validators/scattermap/_latsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_latsrc.py rename to plotly/validators/scattermap/_latsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_legend.py b/plotly/validators/scattermap/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_legend.py rename to plotly/validators/scattermap/_legend.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_legendgroup.py b/plotly/validators/scattermap/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_legendgroup.py rename to plotly/validators/scattermap/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_legendgrouptitle.py b/plotly/validators/scattermap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_legendgrouptitle.py rename to plotly/validators/scattermap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_legendrank.py b/plotly/validators/scattermap/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_legendrank.py rename to plotly/validators/scattermap/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_legendwidth.py b/plotly/validators/scattermap/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_legendwidth.py rename to plotly/validators/scattermap/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_line.py b/plotly/validators/scattermap/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_line.py rename to plotly/validators/scattermap/_line.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_lon.py b/plotly/validators/scattermap/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_lon.py rename to plotly/validators/scattermap/_lon.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_lonsrc.py b/plotly/validators/scattermap/_lonsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_lonsrc.py rename to plotly/validators/scattermap/_lonsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_marker.py b/plotly/validators/scattermap/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_marker.py rename to plotly/validators/scattermap/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_meta.py b/plotly/validators/scattermap/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_meta.py rename to plotly/validators/scattermap/_meta.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_metasrc.py b/plotly/validators/scattermap/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_metasrc.py rename to plotly/validators/scattermap/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_mode.py b/plotly/validators/scattermap/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_mode.py rename to plotly/validators/scattermap/_mode.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_name.py b/plotly/validators/scattermap/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_name.py rename to plotly/validators/scattermap/_name.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_opacity.py b/plotly/validators/scattermap/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_opacity.py rename to plotly/validators/scattermap/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_selected.py b/plotly/validators/scattermap/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_selected.py rename to plotly/validators/scattermap/_selected.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_selectedpoints.py b/plotly/validators/scattermap/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_selectedpoints.py rename to plotly/validators/scattermap/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_showlegend.py b/plotly/validators/scattermap/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_showlegend.py rename to plotly/validators/scattermap/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_stream.py b/plotly/validators/scattermap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_stream.py rename to plotly/validators/scattermap/_stream.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_subplot.py b/plotly/validators/scattermap/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_subplot.py rename to plotly/validators/scattermap/_subplot.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_text.py b/plotly/validators/scattermap/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_text.py rename to plotly/validators/scattermap/_text.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_textfont.py b/plotly/validators/scattermap/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_textfont.py rename to plotly/validators/scattermap/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_textposition.py b/plotly/validators/scattermap/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_textposition.py rename to plotly/validators/scattermap/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_textsrc.py b/plotly/validators/scattermap/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_textsrc.py rename to plotly/validators/scattermap/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_texttemplate.py b/plotly/validators/scattermap/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_texttemplate.py rename to plotly/validators/scattermap/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_texttemplatesrc.py b/plotly/validators/scattermap/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_texttemplatesrc.py rename to plotly/validators/scattermap/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_uid.py b/plotly/validators/scattermap/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_uid.py rename to plotly/validators/scattermap/_uid.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_uirevision.py b/plotly/validators/scattermap/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_uirevision.py rename to plotly/validators/scattermap/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_unselected.py b/plotly/validators/scattermap/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_unselected.py rename to plotly/validators/scattermap/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scattermap/_visible.py b/plotly/validators/scattermap/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/_visible.py rename to plotly/validators/scattermap/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/__init__.py b/plotly/validators/scattermap/cluster/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/__init__.py rename to plotly/validators/scattermap/cluster/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_color.py b/plotly/validators/scattermap/cluster/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_color.py rename to plotly/validators/scattermap/cluster/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_colorsrc.py b/plotly/validators/scattermap/cluster/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_colorsrc.py rename to plotly/validators/scattermap/cluster/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_enabled.py b/plotly/validators/scattermap/cluster/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_enabled.py rename to plotly/validators/scattermap/cluster/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_maxzoom.py b/plotly/validators/scattermap/cluster/_maxzoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_maxzoom.py rename to plotly/validators/scattermap/cluster/_maxzoom.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_opacity.py b/plotly/validators/scattermap/cluster/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_opacity.py rename to plotly/validators/scattermap/cluster/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_opacitysrc.py b/plotly/validators/scattermap/cluster/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_opacitysrc.py rename to plotly/validators/scattermap/cluster/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_size.py b/plotly/validators/scattermap/cluster/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_size.py rename to plotly/validators/scattermap/cluster/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_sizesrc.py b/plotly/validators/scattermap/cluster/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_sizesrc.py rename to plotly/validators/scattermap/cluster/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_step.py b/plotly/validators/scattermap/cluster/_step.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_step.py rename to plotly/validators/scattermap/cluster/_step.py diff --git a/packages/python/plotly/plotly/validators/scattermap/cluster/_stepsrc.py b/plotly/validators/scattermap/cluster/_stepsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/cluster/_stepsrc.py rename to plotly/validators/scattermap/cluster/_stepsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/__init__.py b/plotly/validators/scattermap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/__init__.py rename to plotly/validators/scattermap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_align.py b/plotly/validators/scattermap/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_align.py rename to plotly/validators/scattermap/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_alignsrc.py b/plotly/validators/scattermap/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_alignsrc.py rename to plotly/validators/scattermap/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bgcolor.py b/plotly/validators/scattermap/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bgcolor.py rename to plotly/validators/scattermap/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bgcolorsrc.py b/plotly/validators/scattermap/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scattermap/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bordercolor.py b/plotly/validators/scattermap/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bordercolor.py rename to plotly/validators/scattermap/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bordercolorsrc.py b/plotly/validators/scattermap/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scattermap/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_font.py b/plotly/validators/scattermap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_font.py rename to plotly/validators/scattermap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_namelength.py b/plotly/validators/scattermap/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_namelength.py rename to plotly/validators/scattermap/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/_namelengthsrc.py b/plotly/validators/scattermap/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/_namelengthsrc.py rename to plotly/validators/scattermap/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/__init__.py b/plotly/validators/scattermap/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/__init__.py rename to plotly/validators/scattermap/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_color.py b/plotly/validators/scattermap/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_color.py rename to plotly/validators/scattermap/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_colorsrc.py b/plotly/validators/scattermap/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_colorsrc.py rename to plotly/validators/scattermap/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_family.py b/plotly/validators/scattermap/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_family.py rename to plotly/validators/scattermap/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_familysrc.py b/plotly/validators/scattermap/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_familysrc.py rename to plotly/validators/scattermap/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_lineposition.py b/plotly/validators/scattermap/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_lineposition.py rename to plotly/validators/scattermap/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scattermap/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scattermap/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_shadow.py b/plotly/validators/scattermap/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_shadow.py rename to plotly/validators/scattermap/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_shadowsrc.py b/plotly/validators/scattermap/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scattermap/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_size.py b/plotly/validators/scattermap/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_size.py rename to plotly/validators/scattermap/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_sizesrc.py b/plotly/validators/scattermap/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_sizesrc.py rename to plotly/validators/scattermap/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_style.py b/plotly/validators/scattermap/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_style.py rename to plotly/validators/scattermap/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_stylesrc.py b/plotly/validators/scattermap/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_stylesrc.py rename to plotly/validators/scattermap/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_textcase.py b/plotly/validators/scattermap/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_textcase.py rename to plotly/validators/scattermap/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_textcasesrc.py b/plotly/validators/scattermap/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scattermap/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_variant.py b/plotly/validators/scattermap/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_variant.py rename to plotly/validators/scattermap/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_variantsrc.py b/plotly/validators/scattermap/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_variantsrc.py rename to plotly/validators/scattermap/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_weight.py b/plotly/validators/scattermap/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_weight.py rename to plotly/validators/scattermap/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_weightsrc.py b/plotly/validators/scattermap/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/hoverlabel/font/_weightsrc.py rename to plotly/validators/scattermap/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/__init__.py b/plotly/validators/scattermap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/__init__.py rename to plotly/validators/scattermap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/_font.py b/plotly/validators/scattermap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/_font.py rename to plotly/validators/scattermap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/_text.py b/plotly/validators/scattermap/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/_text.py rename to plotly/validators/scattermap/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/__init__.py b/plotly/validators/scattermap/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/__init__.py rename to plotly/validators/scattermap/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_color.py b/plotly/validators/scattermap/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_color.py rename to plotly/validators/scattermap/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_family.py b/plotly/validators/scattermap/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_family.py rename to plotly/validators/scattermap/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_lineposition.py b/plotly/validators/scattermap/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scattermap/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_shadow.py b/plotly/validators/scattermap/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_shadow.py rename to plotly/validators/scattermap/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_size.py b/plotly/validators/scattermap/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_size.py rename to plotly/validators/scattermap/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_style.py b/plotly/validators/scattermap/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_style.py rename to plotly/validators/scattermap/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_textcase.py b/plotly/validators/scattermap/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_textcase.py rename to plotly/validators/scattermap/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_variant.py b/plotly/validators/scattermap/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_variant.py rename to plotly/validators/scattermap/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_weight.py b/plotly/validators/scattermap/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/legendgrouptitle/font/_weight.py rename to plotly/validators/scattermap/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermap/line/__init__.py b/plotly/validators/scattermap/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/line/__init__.py rename to plotly/validators/scattermap/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/line/_color.py b/plotly/validators/scattermap/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/line/_color.py rename to plotly/validators/scattermap/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/line/_width.py b/plotly/validators/scattermap/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/line/_width.py rename to plotly/validators/scattermap/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/__init__.py b/plotly/validators/scattermap/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/__init__.py rename to plotly/validators/scattermap/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_allowoverlap.py b/plotly/validators/scattermap/marker/_allowoverlap.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_allowoverlap.py rename to plotly/validators/scattermap/marker/_allowoverlap.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_angle.py b/plotly/validators/scattermap/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_angle.py rename to plotly/validators/scattermap/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_anglesrc.py b/plotly/validators/scattermap/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_anglesrc.py rename to plotly/validators/scattermap/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_autocolorscale.py b/plotly/validators/scattermap/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_autocolorscale.py rename to plotly/validators/scattermap/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_cauto.py b/plotly/validators/scattermap/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_cauto.py rename to plotly/validators/scattermap/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_cmax.py b/plotly/validators/scattermap/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_cmax.py rename to plotly/validators/scattermap/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_cmid.py b/plotly/validators/scattermap/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_cmid.py rename to plotly/validators/scattermap/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_cmin.py b/plotly/validators/scattermap/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_cmin.py rename to plotly/validators/scattermap/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_color.py b/plotly/validators/scattermap/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_color.py rename to plotly/validators/scattermap/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_coloraxis.py b/plotly/validators/scattermap/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_coloraxis.py rename to plotly/validators/scattermap/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_colorbar.py b/plotly/validators/scattermap/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_colorbar.py rename to plotly/validators/scattermap/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_colorscale.py b/plotly/validators/scattermap/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_colorscale.py rename to plotly/validators/scattermap/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_colorsrc.py b/plotly/validators/scattermap/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_colorsrc.py rename to plotly/validators/scattermap/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_opacity.py b/plotly/validators/scattermap/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_opacity.py rename to plotly/validators/scattermap/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_opacitysrc.py b/plotly/validators/scattermap/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_opacitysrc.py rename to plotly/validators/scattermap/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_reversescale.py b/plotly/validators/scattermap/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_reversescale.py rename to plotly/validators/scattermap/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_showscale.py b/plotly/validators/scattermap/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_showscale.py rename to plotly/validators/scattermap/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_size.py b/plotly/validators/scattermap/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_size.py rename to plotly/validators/scattermap/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_sizemin.py b/plotly/validators/scattermap/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_sizemin.py rename to plotly/validators/scattermap/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_sizemode.py b/plotly/validators/scattermap/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_sizemode.py rename to plotly/validators/scattermap/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_sizeref.py b/plotly/validators/scattermap/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_sizeref.py rename to plotly/validators/scattermap/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_sizesrc.py b/plotly/validators/scattermap/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_sizesrc.py rename to plotly/validators/scattermap/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_symbol.py b/plotly/validators/scattermap/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_symbol.py rename to plotly/validators/scattermap/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/_symbolsrc.py b/plotly/validators/scattermap/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/_symbolsrc.py rename to plotly/validators/scattermap/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/__init__.py b/plotly/validators/scattermap/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/__init__.py rename to plotly/validators/scattermap/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_bgcolor.py b/plotly/validators/scattermap/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_bgcolor.py rename to plotly/validators/scattermap/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_bordercolor.py b/plotly/validators/scattermap/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_bordercolor.py rename to plotly/validators/scattermap/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_borderwidth.py b/plotly/validators/scattermap/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_borderwidth.py rename to plotly/validators/scattermap/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_dtick.py b/plotly/validators/scattermap/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_dtick.py rename to plotly/validators/scattermap/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_exponentformat.py b/plotly/validators/scattermap/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_exponentformat.py rename to plotly/validators/scattermap/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_labelalias.py b/plotly/validators/scattermap/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_labelalias.py rename to plotly/validators/scattermap/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_len.py b/plotly/validators/scattermap/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_len.py rename to plotly/validators/scattermap/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_lenmode.py b/plotly/validators/scattermap/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_lenmode.py rename to plotly/validators/scattermap/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_minexponent.py b/plotly/validators/scattermap/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_minexponent.py rename to plotly/validators/scattermap/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_nticks.py b/plotly/validators/scattermap/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_nticks.py rename to plotly/validators/scattermap/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_orientation.py b/plotly/validators/scattermap/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_orientation.py rename to plotly/validators/scattermap/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_outlinecolor.py b/plotly/validators/scattermap/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_outlinecolor.py rename to plotly/validators/scattermap/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_outlinewidth.py b/plotly/validators/scattermap/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_outlinewidth.py rename to plotly/validators/scattermap/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_separatethousands.py b/plotly/validators/scattermap/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_separatethousands.py rename to plotly/validators/scattermap/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showexponent.py b/plotly/validators/scattermap/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showexponent.py rename to plotly/validators/scattermap/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showticklabels.py b/plotly/validators/scattermap/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showticklabels.py rename to plotly/validators/scattermap/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showtickprefix.py b/plotly/validators/scattermap/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showtickprefix.py rename to plotly/validators/scattermap/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showticksuffix.py b/plotly/validators/scattermap/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_showticksuffix.py rename to plotly/validators/scattermap/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_thickness.py b/plotly/validators/scattermap/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_thickness.py rename to plotly/validators/scattermap/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_thicknessmode.py b/plotly/validators/scattermap/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_thicknessmode.py rename to plotly/validators/scattermap/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tick0.py b/plotly/validators/scattermap/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tick0.py rename to plotly/validators/scattermap/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickangle.py b/plotly/validators/scattermap/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickangle.py rename to plotly/validators/scattermap/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickcolor.py b/plotly/validators/scattermap/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickcolor.py rename to plotly/validators/scattermap/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickfont.py b/plotly/validators/scattermap/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickfont.py rename to plotly/validators/scattermap/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickformat.py b/plotly/validators/scattermap/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickformat.py rename to plotly/validators/scattermap/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattermap/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scattermap/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickformatstops.py b/plotly/validators/scattermap/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickformatstops.py rename to plotly/validators/scattermap/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scattermap/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scattermap/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklabelposition.py b/plotly/validators/scattermap/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scattermap/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklabelstep.py b/plotly/validators/scattermap/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scattermap/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklen.py b/plotly/validators/scattermap/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticklen.py rename to plotly/validators/scattermap/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickmode.py b/plotly/validators/scattermap/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickmode.py rename to plotly/validators/scattermap/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickprefix.py b/plotly/validators/scattermap/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickprefix.py rename to plotly/validators/scattermap/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticks.py b/plotly/validators/scattermap/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticks.py rename to plotly/validators/scattermap/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticksuffix.py b/plotly/validators/scattermap/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticksuffix.py rename to plotly/validators/scattermap/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticktext.py b/plotly/validators/scattermap/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticktext.py rename to plotly/validators/scattermap/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticktextsrc.py b/plotly/validators/scattermap/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scattermap/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickvals.py b/plotly/validators/scattermap/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickvals.py rename to plotly/validators/scattermap/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickvalssrc.py b/plotly/validators/scattermap/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scattermap/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickwidth.py b/plotly/validators/scattermap/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_tickwidth.py rename to plotly/validators/scattermap/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_title.py b/plotly/validators/scattermap/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_title.py rename to plotly/validators/scattermap/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_x.py b/plotly/validators/scattermap/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_x.py rename to plotly/validators/scattermap/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_xanchor.py b/plotly/validators/scattermap/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_xanchor.py rename to plotly/validators/scattermap/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_xpad.py b/plotly/validators/scattermap/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_xpad.py rename to plotly/validators/scattermap/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_xref.py b/plotly/validators/scattermap/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_xref.py rename to plotly/validators/scattermap/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_y.py b/plotly/validators/scattermap/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_y.py rename to plotly/validators/scattermap/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_yanchor.py b/plotly/validators/scattermap/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_yanchor.py rename to plotly/validators/scattermap/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ypad.py b/plotly/validators/scattermap/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_ypad.py rename to plotly/validators/scattermap/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_yref.py b/plotly/validators/scattermap/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/_yref.py rename to plotly/validators/scattermap/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/__init__.py b/plotly/validators/scattermap/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_color.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_color.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_family.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_family.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_size.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_size.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_style.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_style.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_variant.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_weight.py b/plotly/validators/scattermap/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scattermap/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scattermap/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scattermap/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scattermap/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scattermap/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scattermap/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scattermap/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scattermap/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scattermap/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scattermap/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scattermap/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scattermap/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scattermap/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/__init__.py b/plotly/validators/scattermap/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/__init__.py rename to plotly/validators/scattermap/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/_font.py b/plotly/validators/scattermap/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/_font.py rename to plotly/validators/scattermap/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/_side.py b/plotly/validators/scattermap/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/_side.py rename to plotly/validators/scattermap/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/_text.py b/plotly/validators/scattermap/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/_text.py rename to plotly/validators/scattermap/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/__init__.py b/plotly/validators/scattermap/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/__init__.py rename to plotly/validators/scattermap/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_color.py b/plotly/validators/scattermap/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_color.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_family.py b/plotly/validators/scattermap/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_family.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scattermap/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_shadow.py b/plotly/validators/scattermap/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_size.py b/plotly/validators/scattermap/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_size.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_style.py b/plotly/validators/scattermap/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_style.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_textcase.py b/plotly/validators/scattermap/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_variant.py b/plotly/validators/scattermap/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_variant.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_weight.py b/plotly/validators/scattermap/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/marker/colorbar/title/font/_weight.py rename to plotly/validators/scattermap/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermap/selected/__init__.py b/plotly/validators/scattermap/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/selected/__init__.py rename to plotly/validators/scattermap/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/selected/_marker.py b/plotly/validators/scattermap/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/selected/_marker.py rename to plotly/validators/scattermap/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattermap/selected/marker/__init__.py b/plotly/validators/scattermap/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/selected/marker/__init__.py rename to plotly/validators/scattermap/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/selected/marker/_color.py b/plotly/validators/scattermap/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/selected/marker/_color.py rename to plotly/validators/scattermap/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/selected/marker/_opacity.py b/plotly/validators/scattermap/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/selected/marker/_opacity.py rename to plotly/validators/scattermap/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermap/selected/marker/_size.py b/plotly/validators/scattermap/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/selected/marker/_size.py rename to plotly/validators/scattermap/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/stream/__init__.py b/plotly/validators/scattermap/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/stream/__init__.py rename to plotly/validators/scattermap/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/stream/_maxpoints.py b/plotly/validators/scattermap/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/stream/_maxpoints.py rename to plotly/validators/scattermap/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scattermap/stream/_token.py b/plotly/validators/scattermap/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/stream/_token.py rename to plotly/validators/scattermap/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scattermap/textfont/__init__.py b/plotly/validators/scattermap/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/textfont/__init__.py rename to plotly/validators/scattermap/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/textfont/_color.py b/plotly/validators/scattermap/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/textfont/_color.py rename to plotly/validators/scattermap/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/textfont/_family.py b/plotly/validators/scattermap/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/textfont/_family.py rename to plotly/validators/scattermap/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermap/textfont/_size.py b/plotly/validators/scattermap/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/textfont/_size.py rename to plotly/validators/scattermap/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermap/textfont/_style.py b/plotly/validators/scattermap/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/textfont/_style.py rename to plotly/validators/scattermap/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermap/textfont/_weight.py b/plotly/validators/scattermap/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/textfont/_weight.py rename to plotly/validators/scattermap/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermap/unselected/__init__.py b/plotly/validators/scattermap/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/unselected/__init__.py rename to plotly/validators/scattermap/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/unselected/_marker.py b/plotly/validators/scattermap/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/unselected/_marker.py rename to plotly/validators/scattermap/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattermap/unselected/marker/__init__.py b/plotly/validators/scattermap/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/unselected/marker/__init__.py rename to plotly/validators/scattermap/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermap/unselected/marker/_color.py b/plotly/validators/scattermap/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/unselected/marker/_color.py rename to plotly/validators/scattermap/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermap/unselected/marker/_opacity.py b/plotly/validators/scattermap/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/unselected/marker/_opacity.py rename to plotly/validators/scattermap/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermap/unselected/marker/_size.py b/plotly/validators/scattermap/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermap/unselected/marker/_size.py rename to plotly/validators/scattermap/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/__init__.py b/plotly/validators/scattermapbox/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/__init__.py rename to plotly/validators/scattermapbox/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_below.py b/plotly/validators/scattermapbox/_below.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_below.py rename to plotly/validators/scattermapbox/_below.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_cluster.py b/plotly/validators/scattermapbox/_cluster.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_cluster.py rename to plotly/validators/scattermapbox/_cluster.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_connectgaps.py b/plotly/validators/scattermapbox/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_connectgaps.py rename to plotly/validators/scattermapbox/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_customdata.py b/plotly/validators/scattermapbox/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_customdata.py rename to plotly/validators/scattermapbox/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_customdatasrc.py b/plotly/validators/scattermapbox/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_customdatasrc.py rename to plotly/validators/scattermapbox/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_fill.py b/plotly/validators/scattermapbox/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_fill.py rename to plotly/validators/scattermapbox/_fill.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_fillcolor.py b/plotly/validators/scattermapbox/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_fillcolor.py rename to plotly/validators/scattermapbox/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hoverinfo.py b/plotly/validators/scattermapbox/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hoverinfo.py rename to plotly/validators/scattermapbox/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hoverinfosrc.py b/plotly/validators/scattermapbox/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hoverinfosrc.py rename to plotly/validators/scattermapbox/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hoverlabel.py b/plotly/validators/scattermapbox/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hoverlabel.py rename to plotly/validators/scattermapbox/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hovertemplate.py b/plotly/validators/scattermapbox/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hovertemplate.py rename to plotly/validators/scattermapbox/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hovertemplatesrc.py b/plotly/validators/scattermapbox/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hovertemplatesrc.py rename to plotly/validators/scattermapbox/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hovertext.py b/plotly/validators/scattermapbox/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hovertext.py rename to plotly/validators/scattermapbox/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_hovertextsrc.py b/plotly/validators/scattermapbox/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_hovertextsrc.py rename to plotly/validators/scattermapbox/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_ids.py b/plotly/validators/scattermapbox/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_ids.py rename to plotly/validators/scattermapbox/_ids.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_idssrc.py b/plotly/validators/scattermapbox/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_idssrc.py rename to plotly/validators/scattermapbox/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_lat.py b/plotly/validators/scattermapbox/_lat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_lat.py rename to plotly/validators/scattermapbox/_lat.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_latsrc.py b/plotly/validators/scattermapbox/_latsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_latsrc.py rename to plotly/validators/scattermapbox/_latsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_legend.py b/plotly/validators/scattermapbox/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_legend.py rename to plotly/validators/scattermapbox/_legend.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_legendgroup.py b/plotly/validators/scattermapbox/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_legendgroup.py rename to plotly/validators/scattermapbox/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_legendgrouptitle.py b/plotly/validators/scattermapbox/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_legendgrouptitle.py rename to plotly/validators/scattermapbox/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_legendrank.py b/plotly/validators/scattermapbox/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_legendrank.py rename to plotly/validators/scattermapbox/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_legendwidth.py b/plotly/validators/scattermapbox/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_legendwidth.py rename to plotly/validators/scattermapbox/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_line.py b/plotly/validators/scattermapbox/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_line.py rename to plotly/validators/scattermapbox/_line.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_lon.py b/plotly/validators/scattermapbox/_lon.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_lon.py rename to plotly/validators/scattermapbox/_lon.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_lonsrc.py b/plotly/validators/scattermapbox/_lonsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_lonsrc.py rename to plotly/validators/scattermapbox/_lonsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_marker.py b/plotly/validators/scattermapbox/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_marker.py rename to plotly/validators/scattermapbox/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_meta.py b/plotly/validators/scattermapbox/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_meta.py rename to plotly/validators/scattermapbox/_meta.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_metasrc.py b/plotly/validators/scattermapbox/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_metasrc.py rename to plotly/validators/scattermapbox/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_mode.py b/plotly/validators/scattermapbox/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_mode.py rename to plotly/validators/scattermapbox/_mode.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_name.py b/plotly/validators/scattermapbox/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_name.py rename to plotly/validators/scattermapbox/_name.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_opacity.py b/plotly/validators/scattermapbox/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_opacity.py rename to plotly/validators/scattermapbox/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_selected.py b/plotly/validators/scattermapbox/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_selected.py rename to plotly/validators/scattermapbox/_selected.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_selectedpoints.py b/plotly/validators/scattermapbox/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_selectedpoints.py rename to plotly/validators/scattermapbox/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_showlegend.py b/plotly/validators/scattermapbox/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_showlegend.py rename to plotly/validators/scattermapbox/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_stream.py b/plotly/validators/scattermapbox/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_stream.py rename to plotly/validators/scattermapbox/_stream.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_subplot.py b/plotly/validators/scattermapbox/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_subplot.py rename to plotly/validators/scattermapbox/_subplot.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_text.py b/plotly/validators/scattermapbox/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_text.py rename to plotly/validators/scattermapbox/_text.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_textfont.py b/plotly/validators/scattermapbox/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_textfont.py rename to plotly/validators/scattermapbox/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_textposition.py b/plotly/validators/scattermapbox/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_textposition.py rename to plotly/validators/scattermapbox/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_textsrc.py b/plotly/validators/scattermapbox/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_textsrc.py rename to plotly/validators/scattermapbox/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_texttemplate.py b/plotly/validators/scattermapbox/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_texttemplate.py rename to plotly/validators/scattermapbox/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_texttemplatesrc.py b/plotly/validators/scattermapbox/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_texttemplatesrc.py rename to plotly/validators/scattermapbox/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_uid.py b/plotly/validators/scattermapbox/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_uid.py rename to plotly/validators/scattermapbox/_uid.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_uirevision.py b/plotly/validators/scattermapbox/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_uirevision.py rename to plotly/validators/scattermapbox/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_unselected.py b/plotly/validators/scattermapbox/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_unselected.py rename to plotly/validators/scattermapbox/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/_visible.py b/plotly/validators/scattermapbox/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/_visible.py rename to plotly/validators/scattermapbox/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/__init__.py b/plotly/validators/scattermapbox/cluster/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/__init__.py rename to plotly/validators/scattermapbox/cluster/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_color.py b/plotly/validators/scattermapbox/cluster/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_color.py rename to plotly/validators/scattermapbox/cluster/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_colorsrc.py b/plotly/validators/scattermapbox/cluster/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_colorsrc.py rename to plotly/validators/scattermapbox/cluster/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_enabled.py b/plotly/validators/scattermapbox/cluster/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_enabled.py rename to plotly/validators/scattermapbox/cluster/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_maxzoom.py b/plotly/validators/scattermapbox/cluster/_maxzoom.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_maxzoom.py rename to plotly/validators/scattermapbox/cluster/_maxzoom.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_opacity.py b/plotly/validators/scattermapbox/cluster/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_opacity.py rename to plotly/validators/scattermapbox/cluster/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_opacitysrc.py b/plotly/validators/scattermapbox/cluster/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_opacitysrc.py rename to plotly/validators/scattermapbox/cluster/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_size.py b/plotly/validators/scattermapbox/cluster/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_size.py rename to plotly/validators/scattermapbox/cluster/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_sizesrc.py b/plotly/validators/scattermapbox/cluster/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_sizesrc.py rename to plotly/validators/scattermapbox/cluster/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_step.py b/plotly/validators/scattermapbox/cluster/_step.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_step.py rename to plotly/validators/scattermapbox/cluster/_step.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/cluster/_stepsrc.py b/plotly/validators/scattermapbox/cluster/_stepsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/cluster/_stepsrc.py rename to plotly/validators/scattermapbox/cluster/_stepsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/__init__.py b/plotly/validators/scattermapbox/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/__init__.py rename to plotly/validators/scattermapbox/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_align.py b/plotly/validators/scattermapbox/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_align.py rename to plotly/validators/scattermapbox/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_alignsrc.py b/plotly/validators/scattermapbox/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_alignsrc.py rename to plotly/validators/scattermapbox/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bgcolor.py b/plotly/validators/scattermapbox/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bgcolor.py rename to plotly/validators/scattermapbox/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bgcolorsrc.py b/plotly/validators/scattermapbox/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scattermapbox/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bordercolor.py b/plotly/validators/scattermapbox/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bordercolor.py rename to plotly/validators/scattermapbox/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bordercolorsrc.py b/plotly/validators/scattermapbox/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scattermapbox/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_font.py b/plotly/validators/scattermapbox/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_font.py rename to plotly/validators/scattermapbox/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_namelength.py b/plotly/validators/scattermapbox/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_namelength.py rename to plotly/validators/scattermapbox/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_namelengthsrc.py b/plotly/validators/scattermapbox/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/_namelengthsrc.py rename to plotly/validators/scattermapbox/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/__init__.py b/plotly/validators/scattermapbox/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/__init__.py rename to plotly/validators/scattermapbox/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_color.py b/plotly/validators/scattermapbox/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_color.py rename to plotly/validators/scattermapbox/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_colorsrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_colorsrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_family.py b/plotly/validators/scattermapbox/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_family.py rename to plotly/validators/scattermapbox/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_familysrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_familysrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_lineposition.py b/plotly/validators/scattermapbox/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_lineposition.py rename to plotly/validators/scattermapbox/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_shadow.py b/plotly/validators/scattermapbox/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_shadow.py rename to plotly/validators/scattermapbox/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_shadowsrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_size.py b/plotly/validators/scattermapbox/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_size.py rename to plotly/validators/scattermapbox/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_sizesrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_sizesrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_style.py b/plotly/validators/scattermapbox/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_style.py rename to plotly/validators/scattermapbox/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_stylesrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_stylesrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_textcase.py b/plotly/validators/scattermapbox/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_textcase.py rename to plotly/validators/scattermapbox/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_textcasesrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_variant.py b/plotly/validators/scattermapbox/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_variant.py rename to plotly/validators/scattermapbox/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_variantsrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_variantsrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_weight.py b/plotly/validators/scattermapbox/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_weight.py rename to plotly/validators/scattermapbox/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_weightsrc.py b/plotly/validators/scattermapbox/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/hoverlabel/font/_weightsrc.py rename to plotly/validators/scattermapbox/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/__init__.py b/plotly/validators/scattermapbox/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/__init__.py rename to plotly/validators/scattermapbox/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/_font.py b/plotly/validators/scattermapbox/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/_font.py rename to plotly/validators/scattermapbox/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/_text.py b/plotly/validators/scattermapbox/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/_text.py rename to plotly/validators/scattermapbox/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/__init__.py b/plotly/validators/scattermapbox/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/__init__.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_color.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_color.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_family.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_family.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_lineposition.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_shadow.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_shadow.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_size.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_size.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_style.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_style.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_textcase.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_textcase.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_variant.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_variant.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_weight.py b/plotly/validators/scattermapbox/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/legendgrouptitle/font/_weight.py rename to plotly/validators/scattermapbox/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/line/__init__.py b/plotly/validators/scattermapbox/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/line/__init__.py rename to plotly/validators/scattermapbox/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/line/_color.py b/plotly/validators/scattermapbox/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/line/_color.py rename to plotly/validators/scattermapbox/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/line/_width.py b/plotly/validators/scattermapbox/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/line/_width.py rename to plotly/validators/scattermapbox/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/__init__.py b/plotly/validators/scattermapbox/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/__init__.py rename to plotly/validators/scattermapbox/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_allowoverlap.py b/plotly/validators/scattermapbox/marker/_allowoverlap.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_allowoverlap.py rename to plotly/validators/scattermapbox/marker/_allowoverlap.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_angle.py b/plotly/validators/scattermapbox/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_angle.py rename to plotly/validators/scattermapbox/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_anglesrc.py b/plotly/validators/scattermapbox/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_anglesrc.py rename to plotly/validators/scattermapbox/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_autocolorscale.py b/plotly/validators/scattermapbox/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_autocolorscale.py rename to plotly/validators/scattermapbox/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_cauto.py b/plotly/validators/scattermapbox/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_cauto.py rename to plotly/validators/scattermapbox/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_cmax.py b/plotly/validators/scattermapbox/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_cmax.py rename to plotly/validators/scattermapbox/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_cmid.py b/plotly/validators/scattermapbox/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_cmid.py rename to plotly/validators/scattermapbox/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_cmin.py b/plotly/validators/scattermapbox/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_cmin.py rename to plotly/validators/scattermapbox/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_color.py b/plotly/validators/scattermapbox/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_color.py rename to plotly/validators/scattermapbox/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_coloraxis.py b/plotly/validators/scattermapbox/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_coloraxis.py rename to plotly/validators/scattermapbox/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_colorbar.py b/plotly/validators/scattermapbox/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_colorbar.py rename to plotly/validators/scattermapbox/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_colorscale.py b/plotly/validators/scattermapbox/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_colorscale.py rename to plotly/validators/scattermapbox/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_colorsrc.py b/plotly/validators/scattermapbox/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_colorsrc.py rename to plotly/validators/scattermapbox/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_opacity.py b/plotly/validators/scattermapbox/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_opacity.py rename to plotly/validators/scattermapbox/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_opacitysrc.py b/plotly/validators/scattermapbox/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_opacitysrc.py rename to plotly/validators/scattermapbox/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_reversescale.py b/plotly/validators/scattermapbox/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_reversescale.py rename to plotly/validators/scattermapbox/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_showscale.py b/plotly/validators/scattermapbox/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_showscale.py rename to plotly/validators/scattermapbox/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_size.py b/plotly/validators/scattermapbox/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_size.py rename to plotly/validators/scattermapbox/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_sizemin.py b/plotly/validators/scattermapbox/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_sizemin.py rename to plotly/validators/scattermapbox/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_sizemode.py b/plotly/validators/scattermapbox/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_sizemode.py rename to plotly/validators/scattermapbox/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_sizeref.py b/plotly/validators/scattermapbox/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_sizeref.py rename to plotly/validators/scattermapbox/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_sizesrc.py b/plotly/validators/scattermapbox/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_sizesrc.py rename to plotly/validators/scattermapbox/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_symbol.py b/plotly/validators/scattermapbox/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_symbol.py rename to plotly/validators/scattermapbox/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/_symbolsrc.py b/plotly/validators/scattermapbox/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/_symbolsrc.py rename to plotly/validators/scattermapbox/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/__init__.py b/plotly/validators/scattermapbox/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/__init__.py rename to plotly/validators/scattermapbox/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_bgcolor.py b/plotly/validators/scattermapbox/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_bgcolor.py rename to plotly/validators/scattermapbox/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_bordercolor.py b/plotly/validators/scattermapbox/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_bordercolor.py rename to plotly/validators/scattermapbox/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_borderwidth.py b/plotly/validators/scattermapbox/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_borderwidth.py rename to plotly/validators/scattermapbox/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_dtick.py b/plotly/validators/scattermapbox/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_dtick.py rename to plotly/validators/scattermapbox/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_exponentformat.py b/plotly/validators/scattermapbox/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_exponentformat.py rename to plotly/validators/scattermapbox/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_labelalias.py b/plotly/validators/scattermapbox/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_labelalias.py rename to plotly/validators/scattermapbox/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_len.py b/plotly/validators/scattermapbox/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_len.py rename to plotly/validators/scattermapbox/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_lenmode.py b/plotly/validators/scattermapbox/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_lenmode.py rename to plotly/validators/scattermapbox/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_minexponent.py b/plotly/validators/scattermapbox/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_minexponent.py rename to plotly/validators/scattermapbox/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_nticks.py b/plotly/validators/scattermapbox/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_nticks.py rename to plotly/validators/scattermapbox/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_orientation.py b/plotly/validators/scattermapbox/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_orientation.py rename to plotly/validators/scattermapbox/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_outlinecolor.py b/plotly/validators/scattermapbox/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_outlinecolor.py rename to plotly/validators/scattermapbox/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_outlinewidth.py b/plotly/validators/scattermapbox/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_outlinewidth.py rename to plotly/validators/scattermapbox/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_separatethousands.py b/plotly/validators/scattermapbox/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_separatethousands.py rename to plotly/validators/scattermapbox/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showexponent.py b/plotly/validators/scattermapbox/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showexponent.py rename to plotly/validators/scattermapbox/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showticklabels.py b/plotly/validators/scattermapbox/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showticklabels.py rename to plotly/validators/scattermapbox/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showtickprefix.py b/plotly/validators/scattermapbox/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showtickprefix.py rename to plotly/validators/scattermapbox/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showticksuffix.py b/plotly/validators/scattermapbox/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_showticksuffix.py rename to plotly/validators/scattermapbox/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_thickness.py b/plotly/validators/scattermapbox/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_thickness.py rename to plotly/validators/scattermapbox/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_thicknessmode.py b/plotly/validators/scattermapbox/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_thicknessmode.py rename to plotly/validators/scattermapbox/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tick0.py b/plotly/validators/scattermapbox/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tick0.py rename to plotly/validators/scattermapbox/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickangle.py b/plotly/validators/scattermapbox/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickangle.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickcolor.py b/plotly/validators/scattermapbox/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickcolor.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickfont.py b/plotly/validators/scattermapbox/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickfont.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickformat.py b/plotly/validators/scattermapbox/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickformat.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickformatstops.py b/plotly/validators/scattermapbox/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickformatstops.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scattermapbox/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklabelposition.py b/plotly/validators/scattermapbox/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklabelstep.py b/plotly/validators/scattermapbox/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklen.py b/plotly/validators/scattermapbox/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticklen.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickmode.py b/plotly/validators/scattermapbox/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickmode.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickprefix.py b/plotly/validators/scattermapbox/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickprefix.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticks.py b/plotly/validators/scattermapbox/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticks.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticksuffix.py b/plotly/validators/scattermapbox/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticksuffix.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticktext.py b/plotly/validators/scattermapbox/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticktext.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticktextsrc.py b/plotly/validators/scattermapbox/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scattermapbox/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickvals.py b/plotly/validators/scattermapbox/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickvals.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickvalssrc.py b/plotly/validators/scattermapbox/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickwidth.py b/plotly/validators/scattermapbox/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_tickwidth.py rename to plotly/validators/scattermapbox/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_title.py b/plotly/validators/scattermapbox/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_title.py rename to plotly/validators/scattermapbox/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_x.py b/plotly/validators/scattermapbox/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_x.py rename to plotly/validators/scattermapbox/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_xanchor.py b/plotly/validators/scattermapbox/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_xanchor.py rename to plotly/validators/scattermapbox/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_xpad.py b/plotly/validators/scattermapbox/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_xpad.py rename to plotly/validators/scattermapbox/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_xref.py b/plotly/validators/scattermapbox/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_xref.py rename to plotly/validators/scattermapbox/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_y.py b/plotly/validators/scattermapbox/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_y.py rename to plotly/validators/scattermapbox/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_yanchor.py b/plotly/validators/scattermapbox/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_yanchor.py rename to plotly/validators/scattermapbox/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ypad.py b/plotly/validators/scattermapbox/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_ypad.py rename to plotly/validators/scattermapbox/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_yref.py b/plotly/validators/scattermapbox/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/_yref.py rename to plotly/validators/scattermapbox/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/__init__.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_color.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_color.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_family.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_family.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_size.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_size.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_style.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_style.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_variant.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_weight.py b/plotly/validators/scattermapbox/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scattermapbox/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scattermapbox/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scattermapbox/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/__init__.py b/plotly/validators/scattermapbox/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/__init__.py rename to plotly/validators/scattermapbox/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/_font.py b/plotly/validators/scattermapbox/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/_font.py rename to plotly/validators/scattermapbox/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/_side.py b/plotly/validators/scattermapbox/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/_side.py rename to plotly/validators/scattermapbox/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/_text.py b/plotly/validators/scattermapbox/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/_text.py rename to plotly/validators/scattermapbox/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/__init__.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/__init__.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_color.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_color.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_family.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_family.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_shadow.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_size.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_size.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_style.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_style.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_textcase.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_variant.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_variant.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_weight.py b/plotly/validators/scattermapbox/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/marker/colorbar/title/font/_weight.py rename to plotly/validators/scattermapbox/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/selected/__init__.py b/plotly/validators/scattermapbox/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/selected/__init__.py rename to plotly/validators/scattermapbox/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/selected/_marker.py b/plotly/validators/scattermapbox/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/selected/_marker.py rename to plotly/validators/scattermapbox/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/selected/marker/__init__.py b/plotly/validators/scattermapbox/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/selected/marker/__init__.py rename to plotly/validators/scattermapbox/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/selected/marker/_color.py b/plotly/validators/scattermapbox/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/selected/marker/_color.py rename to plotly/validators/scattermapbox/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/selected/marker/_opacity.py b/plotly/validators/scattermapbox/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/selected/marker/_opacity.py rename to plotly/validators/scattermapbox/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/selected/marker/_size.py b/plotly/validators/scattermapbox/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/selected/marker/_size.py rename to plotly/validators/scattermapbox/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/stream/__init__.py b/plotly/validators/scattermapbox/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/stream/__init__.py rename to plotly/validators/scattermapbox/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/stream/_maxpoints.py b/plotly/validators/scattermapbox/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/stream/_maxpoints.py rename to plotly/validators/scattermapbox/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/stream/_token.py b/plotly/validators/scattermapbox/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/stream/_token.py rename to plotly/validators/scattermapbox/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/textfont/__init__.py b/plotly/validators/scattermapbox/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/textfont/__init__.py rename to plotly/validators/scattermapbox/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/textfont/_color.py b/plotly/validators/scattermapbox/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/textfont/_color.py rename to plotly/validators/scattermapbox/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/textfont/_family.py b/plotly/validators/scattermapbox/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/textfont/_family.py rename to plotly/validators/scattermapbox/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/textfont/_size.py b/plotly/validators/scattermapbox/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/textfont/_size.py rename to plotly/validators/scattermapbox/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/textfont/_style.py b/plotly/validators/scattermapbox/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/textfont/_style.py rename to plotly/validators/scattermapbox/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/textfont/_weight.py b/plotly/validators/scattermapbox/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/textfont/_weight.py rename to plotly/validators/scattermapbox/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/unselected/__init__.py b/plotly/validators/scattermapbox/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/unselected/__init__.py rename to plotly/validators/scattermapbox/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/unselected/_marker.py b/plotly/validators/scattermapbox/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/unselected/_marker.py rename to plotly/validators/scattermapbox/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/__init__.py b/plotly/validators/scattermapbox/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/__init__.py rename to plotly/validators/scattermapbox/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/_color.py b/plotly/validators/scattermapbox/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/_color.py rename to plotly/validators/scattermapbox/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/_opacity.py b/plotly/validators/scattermapbox/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/_opacity.py rename to plotly/validators/scattermapbox/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/_size.py b/plotly/validators/scattermapbox/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattermapbox/unselected/marker/_size.py rename to plotly/validators/scattermapbox/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/__init__.py b/plotly/validators/scatterpolar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/__init__.py rename to plotly/validators/scatterpolar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_cliponaxis.py b/plotly/validators/scatterpolar/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_cliponaxis.py rename to plotly/validators/scatterpolar/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_connectgaps.py b/plotly/validators/scatterpolar/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_connectgaps.py rename to plotly/validators/scatterpolar/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_customdata.py b/plotly/validators/scatterpolar/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_customdata.py rename to plotly/validators/scatterpolar/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_customdatasrc.py b/plotly/validators/scatterpolar/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_customdatasrc.py rename to plotly/validators/scatterpolar/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_dr.py b/plotly/validators/scatterpolar/_dr.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_dr.py rename to plotly/validators/scatterpolar/_dr.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_dtheta.py b/plotly/validators/scatterpolar/_dtheta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_dtheta.py rename to plotly/validators/scatterpolar/_dtheta.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_fill.py b/plotly/validators/scatterpolar/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_fill.py rename to plotly/validators/scatterpolar/_fill.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_fillcolor.py b/plotly/validators/scatterpolar/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_fillcolor.py rename to plotly/validators/scatterpolar/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hoverinfo.py b/plotly/validators/scatterpolar/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hoverinfo.py rename to plotly/validators/scatterpolar/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hoverinfosrc.py b/plotly/validators/scatterpolar/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hoverinfosrc.py rename to plotly/validators/scatterpolar/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hoverlabel.py b/plotly/validators/scatterpolar/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hoverlabel.py rename to plotly/validators/scatterpolar/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hoveron.py b/plotly/validators/scatterpolar/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hoveron.py rename to plotly/validators/scatterpolar/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hovertemplate.py b/plotly/validators/scatterpolar/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hovertemplate.py rename to plotly/validators/scatterpolar/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hovertemplatesrc.py b/plotly/validators/scatterpolar/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hovertemplatesrc.py rename to plotly/validators/scatterpolar/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hovertext.py b/plotly/validators/scatterpolar/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hovertext.py rename to plotly/validators/scatterpolar/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_hovertextsrc.py b/plotly/validators/scatterpolar/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_hovertextsrc.py rename to plotly/validators/scatterpolar/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_ids.py b/plotly/validators/scatterpolar/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_ids.py rename to plotly/validators/scatterpolar/_ids.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_idssrc.py b/plotly/validators/scatterpolar/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_idssrc.py rename to plotly/validators/scatterpolar/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_legend.py b/plotly/validators/scatterpolar/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_legend.py rename to plotly/validators/scatterpolar/_legend.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_legendgroup.py b/plotly/validators/scatterpolar/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_legendgroup.py rename to plotly/validators/scatterpolar/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_legendgrouptitle.py b/plotly/validators/scatterpolar/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_legendgrouptitle.py rename to plotly/validators/scatterpolar/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_legendrank.py b/plotly/validators/scatterpolar/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_legendrank.py rename to plotly/validators/scatterpolar/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_legendwidth.py b/plotly/validators/scatterpolar/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_legendwidth.py rename to plotly/validators/scatterpolar/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_line.py b/plotly/validators/scatterpolar/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_line.py rename to plotly/validators/scatterpolar/_line.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_marker.py b/plotly/validators/scatterpolar/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_marker.py rename to plotly/validators/scatterpolar/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_meta.py b/plotly/validators/scatterpolar/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_meta.py rename to plotly/validators/scatterpolar/_meta.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_metasrc.py b/plotly/validators/scatterpolar/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_metasrc.py rename to plotly/validators/scatterpolar/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_mode.py b/plotly/validators/scatterpolar/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_mode.py rename to plotly/validators/scatterpolar/_mode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_name.py b/plotly/validators/scatterpolar/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_name.py rename to plotly/validators/scatterpolar/_name.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_opacity.py b/plotly/validators/scatterpolar/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_opacity.py rename to plotly/validators/scatterpolar/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_r.py b/plotly/validators/scatterpolar/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_r.py rename to plotly/validators/scatterpolar/_r.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_r0.py b/plotly/validators/scatterpolar/_r0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_r0.py rename to plotly/validators/scatterpolar/_r0.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_rsrc.py b/plotly/validators/scatterpolar/_rsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_rsrc.py rename to plotly/validators/scatterpolar/_rsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_selected.py b/plotly/validators/scatterpolar/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_selected.py rename to plotly/validators/scatterpolar/_selected.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_selectedpoints.py b/plotly/validators/scatterpolar/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_selectedpoints.py rename to plotly/validators/scatterpolar/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_showlegend.py b/plotly/validators/scatterpolar/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_showlegend.py rename to plotly/validators/scatterpolar/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_stream.py b/plotly/validators/scatterpolar/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_stream.py rename to plotly/validators/scatterpolar/_stream.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_subplot.py b/plotly/validators/scatterpolar/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_subplot.py rename to plotly/validators/scatterpolar/_subplot.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_text.py b/plotly/validators/scatterpolar/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_text.py rename to plotly/validators/scatterpolar/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_textfont.py b/plotly/validators/scatterpolar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_textfont.py rename to plotly/validators/scatterpolar/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_textposition.py b/plotly/validators/scatterpolar/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_textposition.py rename to plotly/validators/scatterpolar/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_textpositionsrc.py b/plotly/validators/scatterpolar/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_textpositionsrc.py rename to plotly/validators/scatterpolar/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_textsrc.py b/plotly/validators/scatterpolar/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_textsrc.py rename to plotly/validators/scatterpolar/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_texttemplate.py b/plotly/validators/scatterpolar/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_texttemplate.py rename to plotly/validators/scatterpolar/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_texttemplatesrc.py b/plotly/validators/scatterpolar/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_texttemplatesrc.py rename to plotly/validators/scatterpolar/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_theta.py b/plotly/validators/scatterpolar/_theta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_theta.py rename to plotly/validators/scatterpolar/_theta.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_theta0.py b/plotly/validators/scatterpolar/_theta0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_theta0.py rename to plotly/validators/scatterpolar/_theta0.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_thetasrc.py b/plotly/validators/scatterpolar/_thetasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_thetasrc.py rename to plotly/validators/scatterpolar/_thetasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_thetaunit.py b/plotly/validators/scatterpolar/_thetaunit.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_thetaunit.py rename to plotly/validators/scatterpolar/_thetaunit.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_uid.py b/plotly/validators/scatterpolar/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_uid.py rename to plotly/validators/scatterpolar/_uid.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_uirevision.py b/plotly/validators/scatterpolar/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_uirevision.py rename to plotly/validators/scatterpolar/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_unselected.py b/plotly/validators/scatterpolar/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_unselected.py rename to plotly/validators/scatterpolar/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/_visible.py b/plotly/validators/scatterpolar/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/_visible.py rename to plotly/validators/scatterpolar/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/__init__.py b/plotly/validators/scatterpolar/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/__init__.py rename to plotly/validators/scatterpolar/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_align.py b/plotly/validators/scatterpolar/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_align.py rename to plotly/validators/scatterpolar/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_alignsrc.py b/plotly/validators/scatterpolar/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_alignsrc.py rename to plotly/validators/scatterpolar/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bgcolor.py b/plotly/validators/scatterpolar/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bgcolor.py rename to plotly/validators/scatterpolar/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bgcolorsrc.py b/plotly/validators/scatterpolar/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scatterpolar/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bordercolor.py b/plotly/validators/scatterpolar/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bordercolor.py rename to plotly/validators/scatterpolar/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bordercolorsrc.py b/plotly/validators/scatterpolar/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scatterpolar/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_font.py b/plotly/validators/scatterpolar/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_font.py rename to plotly/validators/scatterpolar/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_namelength.py b/plotly/validators/scatterpolar/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_namelength.py rename to plotly/validators/scatterpolar/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_namelengthsrc.py b/plotly/validators/scatterpolar/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/_namelengthsrc.py rename to plotly/validators/scatterpolar/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/__init__.py b/plotly/validators/scatterpolar/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/__init__.py rename to plotly/validators/scatterpolar/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_color.py b/plotly/validators/scatterpolar/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_color.py rename to plotly/validators/scatterpolar/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_colorsrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_colorsrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_family.py b/plotly/validators/scatterpolar/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_family.py rename to plotly/validators/scatterpolar/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_familysrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_familysrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_lineposition.py b/plotly/validators/scatterpolar/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_lineposition.py rename to plotly/validators/scatterpolar/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_shadow.py b/plotly/validators/scatterpolar/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_shadow.py rename to plotly/validators/scatterpolar/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_shadowsrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_size.py b/plotly/validators/scatterpolar/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_size.py rename to plotly/validators/scatterpolar/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_sizesrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_sizesrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_style.py b/plotly/validators/scatterpolar/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_style.py rename to plotly/validators/scatterpolar/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_stylesrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_stylesrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_textcase.py b/plotly/validators/scatterpolar/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_textcase.py rename to plotly/validators/scatterpolar/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_textcasesrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_variant.py b/plotly/validators/scatterpolar/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_variant.py rename to plotly/validators/scatterpolar/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_variantsrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_variantsrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_weight.py b/plotly/validators/scatterpolar/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_weight.py rename to plotly/validators/scatterpolar/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_weightsrc.py b/plotly/validators/scatterpolar/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/hoverlabel/font/_weightsrc.py rename to plotly/validators/scatterpolar/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/__init__.py b/plotly/validators/scatterpolar/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/__init__.py rename to plotly/validators/scatterpolar/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/_font.py b/plotly/validators/scatterpolar/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/_font.py rename to plotly/validators/scatterpolar/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/_text.py b/plotly/validators/scatterpolar/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/_text.py rename to plotly/validators/scatterpolar/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/__init__.py b/plotly/validators/scatterpolar/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/__init__.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_color.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_color.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_family.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_family.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_lineposition.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_shadow.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_shadow.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_size.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_size.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_style.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_style.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_textcase.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_textcase.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_variant.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_variant.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_weight.py b/plotly/validators/scatterpolar/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/legendgrouptitle/font/_weight.py rename to plotly/validators/scatterpolar/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/__init__.py b/plotly/validators/scatterpolar/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/__init__.py rename to plotly/validators/scatterpolar/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_backoff.py b/plotly/validators/scatterpolar/line/_backoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_backoff.py rename to plotly/validators/scatterpolar/line/_backoff.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_backoffsrc.py b/plotly/validators/scatterpolar/line/_backoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_backoffsrc.py rename to plotly/validators/scatterpolar/line/_backoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_color.py b/plotly/validators/scatterpolar/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_color.py rename to plotly/validators/scatterpolar/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_dash.py b/plotly/validators/scatterpolar/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_dash.py rename to plotly/validators/scatterpolar/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_shape.py b/plotly/validators/scatterpolar/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_shape.py rename to plotly/validators/scatterpolar/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_smoothing.py b/plotly/validators/scatterpolar/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_smoothing.py rename to plotly/validators/scatterpolar/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/line/_width.py b/plotly/validators/scatterpolar/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/line/_width.py rename to plotly/validators/scatterpolar/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/__init__.py b/plotly/validators/scatterpolar/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/__init__.py rename to plotly/validators/scatterpolar/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_angle.py b/plotly/validators/scatterpolar/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_angle.py rename to plotly/validators/scatterpolar/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_angleref.py b/plotly/validators/scatterpolar/marker/_angleref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_angleref.py rename to plotly/validators/scatterpolar/marker/_angleref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_anglesrc.py b/plotly/validators/scatterpolar/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_anglesrc.py rename to plotly/validators/scatterpolar/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_autocolorscale.py b/plotly/validators/scatterpolar/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_autocolorscale.py rename to plotly/validators/scatterpolar/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_cauto.py b/plotly/validators/scatterpolar/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_cauto.py rename to plotly/validators/scatterpolar/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_cmax.py b/plotly/validators/scatterpolar/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_cmax.py rename to plotly/validators/scatterpolar/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_cmid.py b/plotly/validators/scatterpolar/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_cmid.py rename to plotly/validators/scatterpolar/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_cmin.py b/plotly/validators/scatterpolar/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_cmin.py rename to plotly/validators/scatterpolar/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_color.py b/plotly/validators/scatterpolar/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_color.py rename to plotly/validators/scatterpolar/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_coloraxis.py b/plotly/validators/scatterpolar/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_coloraxis.py rename to plotly/validators/scatterpolar/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_colorbar.py b/plotly/validators/scatterpolar/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_colorbar.py rename to plotly/validators/scatterpolar/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_colorscale.py b/plotly/validators/scatterpolar/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_colorscale.py rename to plotly/validators/scatterpolar/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_colorsrc.py b/plotly/validators/scatterpolar/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_colorsrc.py rename to plotly/validators/scatterpolar/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_gradient.py b/plotly/validators/scatterpolar/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_gradient.py rename to plotly/validators/scatterpolar/marker/_gradient.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_line.py b/plotly/validators/scatterpolar/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_line.py rename to plotly/validators/scatterpolar/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_maxdisplayed.py b/plotly/validators/scatterpolar/marker/_maxdisplayed.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_maxdisplayed.py rename to plotly/validators/scatterpolar/marker/_maxdisplayed.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_opacity.py b/plotly/validators/scatterpolar/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_opacity.py rename to plotly/validators/scatterpolar/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_opacitysrc.py b/plotly/validators/scatterpolar/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_opacitysrc.py rename to plotly/validators/scatterpolar/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_reversescale.py b/plotly/validators/scatterpolar/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_reversescale.py rename to plotly/validators/scatterpolar/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_showscale.py b/plotly/validators/scatterpolar/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_showscale.py rename to plotly/validators/scatterpolar/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_size.py b/plotly/validators/scatterpolar/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_size.py rename to plotly/validators/scatterpolar/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_sizemin.py b/plotly/validators/scatterpolar/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_sizemin.py rename to plotly/validators/scatterpolar/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_sizemode.py b/plotly/validators/scatterpolar/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_sizemode.py rename to plotly/validators/scatterpolar/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_sizeref.py b/plotly/validators/scatterpolar/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_sizeref.py rename to plotly/validators/scatterpolar/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_sizesrc.py b/plotly/validators/scatterpolar/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_sizesrc.py rename to plotly/validators/scatterpolar/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_standoff.py b/plotly/validators/scatterpolar/marker/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_standoff.py rename to plotly/validators/scatterpolar/marker/_standoff.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_standoffsrc.py b/plotly/validators/scatterpolar/marker/_standoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_standoffsrc.py rename to plotly/validators/scatterpolar/marker/_standoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_symbol.py b/plotly/validators/scatterpolar/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_symbol.py rename to plotly/validators/scatterpolar/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/_symbolsrc.py b/plotly/validators/scatterpolar/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/_symbolsrc.py rename to plotly/validators/scatterpolar/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/__init__.py b/plotly/validators/scatterpolar/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/__init__.py rename to plotly/validators/scatterpolar/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_bgcolor.py b/plotly/validators/scatterpolar/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_bgcolor.py rename to plotly/validators/scatterpolar/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_bordercolor.py b/plotly/validators/scatterpolar/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_bordercolor.py rename to plotly/validators/scatterpolar/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_borderwidth.py b/plotly/validators/scatterpolar/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_borderwidth.py rename to plotly/validators/scatterpolar/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_dtick.py b/plotly/validators/scatterpolar/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_dtick.py rename to plotly/validators/scatterpolar/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_exponentformat.py b/plotly/validators/scatterpolar/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_exponentformat.py rename to plotly/validators/scatterpolar/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_labelalias.py b/plotly/validators/scatterpolar/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_labelalias.py rename to plotly/validators/scatterpolar/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_len.py b/plotly/validators/scatterpolar/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_len.py rename to plotly/validators/scatterpolar/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_lenmode.py b/plotly/validators/scatterpolar/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_lenmode.py rename to plotly/validators/scatterpolar/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_minexponent.py b/plotly/validators/scatterpolar/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_minexponent.py rename to plotly/validators/scatterpolar/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_nticks.py b/plotly/validators/scatterpolar/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_nticks.py rename to plotly/validators/scatterpolar/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_orientation.py b/plotly/validators/scatterpolar/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_orientation.py rename to plotly/validators/scatterpolar/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_outlinecolor.py b/plotly/validators/scatterpolar/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_outlinecolor.py rename to plotly/validators/scatterpolar/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_outlinewidth.py b/plotly/validators/scatterpolar/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_outlinewidth.py rename to plotly/validators/scatterpolar/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_separatethousands.py b/plotly/validators/scatterpolar/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_separatethousands.py rename to plotly/validators/scatterpolar/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showexponent.py b/plotly/validators/scatterpolar/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showexponent.py rename to plotly/validators/scatterpolar/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showticklabels.py b/plotly/validators/scatterpolar/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showticklabels.py rename to plotly/validators/scatterpolar/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showtickprefix.py b/plotly/validators/scatterpolar/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showtickprefix.py rename to plotly/validators/scatterpolar/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showticksuffix.py b/plotly/validators/scatterpolar/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_showticksuffix.py rename to plotly/validators/scatterpolar/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_thickness.py b/plotly/validators/scatterpolar/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_thickness.py rename to plotly/validators/scatterpolar/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_thicknessmode.py b/plotly/validators/scatterpolar/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_thicknessmode.py rename to plotly/validators/scatterpolar/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tick0.py b/plotly/validators/scatterpolar/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tick0.py rename to plotly/validators/scatterpolar/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickangle.py b/plotly/validators/scatterpolar/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickangle.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickcolor.py b/plotly/validators/scatterpolar/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickcolor.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickfont.py b/plotly/validators/scatterpolar/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickfont.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickformat.py b/plotly/validators/scatterpolar/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickformat.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickformatstops.py b/plotly/validators/scatterpolar/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickformatstops.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scatterpolar/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklabelposition.py b/plotly/validators/scatterpolar/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklabelstep.py b/plotly/validators/scatterpolar/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklen.py b/plotly/validators/scatterpolar/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticklen.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickmode.py b/plotly/validators/scatterpolar/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickmode.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickprefix.py b/plotly/validators/scatterpolar/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickprefix.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticks.py b/plotly/validators/scatterpolar/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticks.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticksuffix.py b/plotly/validators/scatterpolar/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticksuffix.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticktext.py b/plotly/validators/scatterpolar/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticktext.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticktextsrc.py b/plotly/validators/scatterpolar/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scatterpolar/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickvals.py b/plotly/validators/scatterpolar/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickvals.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickvalssrc.py b/plotly/validators/scatterpolar/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickwidth.py b/plotly/validators/scatterpolar/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_tickwidth.py rename to plotly/validators/scatterpolar/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_title.py b/plotly/validators/scatterpolar/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_title.py rename to plotly/validators/scatterpolar/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_x.py b/plotly/validators/scatterpolar/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_x.py rename to plotly/validators/scatterpolar/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_xanchor.py b/plotly/validators/scatterpolar/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_xanchor.py rename to plotly/validators/scatterpolar/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_xpad.py b/plotly/validators/scatterpolar/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_xpad.py rename to plotly/validators/scatterpolar/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_xref.py b/plotly/validators/scatterpolar/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_xref.py rename to plotly/validators/scatterpolar/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_y.py b/plotly/validators/scatterpolar/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_y.py rename to plotly/validators/scatterpolar/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_yanchor.py b/plotly/validators/scatterpolar/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_yanchor.py rename to plotly/validators/scatterpolar/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ypad.py b/plotly/validators/scatterpolar/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_ypad.py rename to plotly/validators/scatterpolar/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_yref.py b/plotly/validators/scatterpolar/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/_yref.py rename to plotly/validators/scatterpolar/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/__init__.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_color.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_color.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_family.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_family.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_size.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_size.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_style.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_style.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_variant.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_weight.py b/plotly/validators/scatterpolar/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scatterpolar/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scatterpolar/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scatterpolar/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/__init__.py b/plotly/validators/scatterpolar/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/__init__.py rename to plotly/validators/scatterpolar/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/_font.py b/plotly/validators/scatterpolar/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/_font.py rename to plotly/validators/scatterpolar/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/_side.py b/plotly/validators/scatterpolar/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/_side.py rename to plotly/validators/scatterpolar/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/_text.py b/plotly/validators/scatterpolar/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/_text.py rename to plotly/validators/scatterpolar/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/__init__.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/__init__.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_color.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_color.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_family.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_family.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_shadow.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_size.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_size.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_style.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_style.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_textcase.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_variant.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_variant.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_weight.py b/plotly/validators/scatterpolar/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/colorbar/title/font/_weight.py rename to plotly/validators/scatterpolar/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/__init__.py b/plotly/validators/scatterpolar/marker/gradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/__init__.py rename to plotly/validators/scatterpolar/marker/gradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_color.py b/plotly/validators/scatterpolar/marker/gradient/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_color.py rename to plotly/validators/scatterpolar/marker/gradient/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_colorsrc.py b/plotly/validators/scatterpolar/marker/gradient/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_colorsrc.py rename to plotly/validators/scatterpolar/marker/gradient/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_type.py b/plotly/validators/scatterpolar/marker/gradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_type.py rename to plotly/validators/scatterpolar/marker/gradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_typesrc.py b/plotly/validators/scatterpolar/marker/gradient/_typesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/gradient/_typesrc.py rename to plotly/validators/scatterpolar/marker/gradient/_typesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/__init__.py b/plotly/validators/scatterpolar/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/__init__.py rename to plotly/validators/scatterpolar/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_autocolorscale.py b/plotly/validators/scatterpolar/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_autocolorscale.py rename to plotly/validators/scatterpolar/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cauto.py b/plotly/validators/scatterpolar/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cauto.py rename to plotly/validators/scatterpolar/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cmax.py b/plotly/validators/scatterpolar/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cmax.py rename to plotly/validators/scatterpolar/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cmid.py b/plotly/validators/scatterpolar/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cmid.py rename to plotly/validators/scatterpolar/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cmin.py b/plotly/validators/scatterpolar/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_cmin.py rename to plotly/validators/scatterpolar/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_color.py b/plotly/validators/scatterpolar/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_color.py rename to plotly/validators/scatterpolar/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_coloraxis.py b/plotly/validators/scatterpolar/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_coloraxis.py rename to plotly/validators/scatterpolar/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_colorscale.py b/plotly/validators/scatterpolar/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_colorscale.py rename to plotly/validators/scatterpolar/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_colorsrc.py b/plotly/validators/scatterpolar/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_colorsrc.py rename to plotly/validators/scatterpolar/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_reversescale.py b/plotly/validators/scatterpolar/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_reversescale.py rename to plotly/validators/scatterpolar/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_width.py b/plotly/validators/scatterpolar/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_width.py rename to plotly/validators/scatterpolar/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/marker/line/_widthsrc.py b/plotly/validators/scatterpolar/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/marker/line/_widthsrc.py rename to plotly/validators/scatterpolar/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/__init__.py b/plotly/validators/scatterpolar/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/__init__.py rename to plotly/validators/scatterpolar/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/_marker.py b/plotly/validators/scatterpolar/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/_marker.py rename to plotly/validators/scatterpolar/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/_textfont.py b/plotly/validators/scatterpolar/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/_textfont.py rename to plotly/validators/scatterpolar/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/marker/__init__.py b/plotly/validators/scatterpolar/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/marker/__init__.py rename to plotly/validators/scatterpolar/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/marker/_color.py b/plotly/validators/scatterpolar/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/marker/_color.py rename to plotly/validators/scatterpolar/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/marker/_opacity.py b/plotly/validators/scatterpolar/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/marker/_opacity.py rename to plotly/validators/scatterpolar/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/marker/_size.py b/plotly/validators/scatterpolar/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/marker/_size.py rename to plotly/validators/scatterpolar/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/textfont/__init__.py b/plotly/validators/scatterpolar/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/textfont/__init__.py rename to plotly/validators/scatterpolar/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/selected/textfont/_color.py b/plotly/validators/scatterpolar/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/selected/textfont/_color.py rename to plotly/validators/scatterpolar/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/stream/__init__.py b/plotly/validators/scatterpolar/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/stream/__init__.py rename to plotly/validators/scatterpolar/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/stream/_maxpoints.py b/plotly/validators/scatterpolar/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/stream/_maxpoints.py rename to plotly/validators/scatterpolar/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/stream/_token.py b/plotly/validators/scatterpolar/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/stream/_token.py rename to plotly/validators/scatterpolar/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/__init__.py b/plotly/validators/scatterpolar/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/__init__.py rename to plotly/validators/scatterpolar/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_color.py b/plotly/validators/scatterpolar/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_color.py rename to plotly/validators/scatterpolar/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_colorsrc.py b/plotly/validators/scatterpolar/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_colorsrc.py rename to plotly/validators/scatterpolar/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_family.py b/plotly/validators/scatterpolar/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_family.py rename to plotly/validators/scatterpolar/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_familysrc.py b/plotly/validators/scatterpolar/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_familysrc.py rename to plotly/validators/scatterpolar/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_lineposition.py b/plotly/validators/scatterpolar/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_lineposition.py rename to plotly/validators/scatterpolar/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_linepositionsrc.py b/plotly/validators/scatterpolar/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_linepositionsrc.py rename to plotly/validators/scatterpolar/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_shadow.py b/plotly/validators/scatterpolar/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_shadow.py rename to plotly/validators/scatterpolar/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_shadowsrc.py b/plotly/validators/scatterpolar/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_shadowsrc.py rename to plotly/validators/scatterpolar/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_size.py b/plotly/validators/scatterpolar/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_size.py rename to plotly/validators/scatterpolar/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_sizesrc.py b/plotly/validators/scatterpolar/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_sizesrc.py rename to plotly/validators/scatterpolar/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_style.py b/plotly/validators/scatterpolar/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_style.py rename to plotly/validators/scatterpolar/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_stylesrc.py b/plotly/validators/scatterpolar/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_stylesrc.py rename to plotly/validators/scatterpolar/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_textcase.py b/plotly/validators/scatterpolar/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_textcase.py rename to plotly/validators/scatterpolar/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_textcasesrc.py b/plotly/validators/scatterpolar/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_textcasesrc.py rename to plotly/validators/scatterpolar/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_variant.py b/plotly/validators/scatterpolar/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_variant.py rename to plotly/validators/scatterpolar/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_variantsrc.py b/plotly/validators/scatterpolar/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_variantsrc.py rename to plotly/validators/scatterpolar/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_weight.py b/plotly/validators/scatterpolar/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_weight.py rename to plotly/validators/scatterpolar/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/textfont/_weightsrc.py b/plotly/validators/scatterpolar/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/textfont/_weightsrc.py rename to plotly/validators/scatterpolar/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/__init__.py b/plotly/validators/scatterpolar/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/__init__.py rename to plotly/validators/scatterpolar/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/_marker.py b/plotly/validators/scatterpolar/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/_marker.py rename to plotly/validators/scatterpolar/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/_textfont.py b/plotly/validators/scatterpolar/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/_textfont.py rename to plotly/validators/scatterpolar/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/__init__.py b/plotly/validators/scatterpolar/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/__init__.py rename to plotly/validators/scatterpolar/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/_color.py b/plotly/validators/scatterpolar/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/_color.py rename to plotly/validators/scatterpolar/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/_opacity.py b/plotly/validators/scatterpolar/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/_opacity.py rename to plotly/validators/scatterpolar/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/_size.py b/plotly/validators/scatterpolar/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/marker/_size.py rename to plotly/validators/scatterpolar/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/textfont/__init__.py b/plotly/validators/scatterpolar/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/textfont/__init__.py rename to plotly/validators/scatterpolar/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolar/unselected/textfont/_color.py b/plotly/validators/scatterpolar/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolar/unselected/textfont/_color.py rename to plotly/validators/scatterpolar/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/__init__.py b/plotly/validators/scatterpolargl/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/__init__.py rename to plotly/validators/scatterpolargl/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_connectgaps.py b/plotly/validators/scatterpolargl/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_connectgaps.py rename to plotly/validators/scatterpolargl/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_customdata.py b/plotly/validators/scatterpolargl/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_customdata.py rename to plotly/validators/scatterpolargl/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_customdatasrc.py b/plotly/validators/scatterpolargl/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_customdatasrc.py rename to plotly/validators/scatterpolargl/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_dr.py b/plotly/validators/scatterpolargl/_dr.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_dr.py rename to plotly/validators/scatterpolargl/_dr.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_dtheta.py b/plotly/validators/scatterpolargl/_dtheta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_dtheta.py rename to plotly/validators/scatterpolargl/_dtheta.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_fill.py b/plotly/validators/scatterpolargl/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_fill.py rename to plotly/validators/scatterpolargl/_fill.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_fillcolor.py b/plotly/validators/scatterpolargl/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_fillcolor.py rename to plotly/validators/scatterpolargl/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hoverinfo.py b/plotly/validators/scatterpolargl/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hoverinfo.py rename to plotly/validators/scatterpolargl/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hoverinfosrc.py b/plotly/validators/scatterpolargl/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hoverinfosrc.py rename to plotly/validators/scatterpolargl/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hoverlabel.py b/plotly/validators/scatterpolargl/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hoverlabel.py rename to plotly/validators/scatterpolargl/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hovertemplate.py b/plotly/validators/scatterpolargl/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hovertemplate.py rename to plotly/validators/scatterpolargl/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hovertemplatesrc.py b/plotly/validators/scatterpolargl/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hovertemplatesrc.py rename to plotly/validators/scatterpolargl/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hovertext.py b/plotly/validators/scatterpolargl/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hovertext.py rename to plotly/validators/scatterpolargl/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_hovertextsrc.py b/plotly/validators/scatterpolargl/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_hovertextsrc.py rename to plotly/validators/scatterpolargl/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_ids.py b/plotly/validators/scatterpolargl/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_ids.py rename to plotly/validators/scatterpolargl/_ids.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_idssrc.py b/plotly/validators/scatterpolargl/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_idssrc.py rename to plotly/validators/scatterpolargl/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_legend.py b/plotly/validators/scatterpolargl/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_legend.py rename to plotly/validators/scatterpolargl/_legend.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_legendgroup.py b/plotly/validators/scatterpolargl/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_legendgroup.py rename to plotly/validators/scatterpolargl/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_legendgrouptitle.py b/plotly/validators/scatterpolargl/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_legendgrouptitle.py rename to plotly/validators/scatterpolargl/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_legendrank.py b/plotly/validators/scatterpolargl/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_legendrank.py rename to plotly/validators/scatterpolargl/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_legendwidth.py b/plotly/validators/scatterpolargl/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_legendwidth.py rename to plotly/validators/scatterpolargl/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_line.py b/plotly/validators/scatterpolargl/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_line.py rename to plotly/validators/scatterpolargl/_line.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_marker.py b/plotly/validators/scatterpolargl/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_marker.py rename to plotly/validators/scatterpolargl/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_meta.py b/plotly/validators/scatterpolargl/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_meta.py rename to plotly/validators/scatterpolargl/_meta.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_metasrc.py b/plotly/validators/scatterpolargl/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_metasrc.py rename to plotly/validators/scatterpolargl/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_mode.py b/plotly/validators/scatterpolargl/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_mode.py rename to plotly/validators/scatterpolargl/_mode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_name.py b/plotly/validators/scatterpolargl/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_name.py rename to plotly/validators/scatterpolargl/_name.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_opacity.py b/plotly/validators/scatterpolargl/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_opacity.py rename to plotly/validators/scatterpolargl/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_r.py b/plotly/validators/scatterpolargl/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_r.py rename to plotly/validators/scatterpolargl/_r.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_r0.py b/plotly/validators/scatterpolargl/_r0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_r0.py rename to plotly/validators/scatterpolargl/_r0.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_rsrc.py b/plotly/validators/scatterpolargl/_rsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_rsrc.py rename to plotly/validators/scatterpolargl/_rsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_selected.py b/plotly/validators/scatterpolargl/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_selected.py rename to plotly/validators/scatterpolargl/_selected.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_selectedpoints.py b/plotly/validators/scatterpolargl/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_selectedpoints.py rename to plotly/validators/scatterpolargl/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_showlegend.py b/plotly/validators/scatterpolargl/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_showlegend.py rename to plotly/validators/scatterpolargl/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_stream.py b/plotly/validators/scatterpolargl/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_stream.py rename to plotly/validators/scatterpolargl/_stream.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_subplot.py b/plotly/validators/scatterpolargl/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_subplot.py rename to plotly/validators/scatterpolargl/_subplot.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_text.py b/plotly/validators/scatterpolargl/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_text.py rename to plotly/validators/scatterpolargl/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_textfont.py b/plotly/validators/scatterpolargl/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_textfont.py rename to plotly/validators/scatterpolargl/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_textposition.py b/plotly/validators/scatterpolargl/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_textposition.py rename to plotly/validators/scatterpolargl/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_textpositionsrc.py b/plotly/validators/scatterpolargl/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_textpositionsrc.py rename to plotly/validators/scatterpolargl/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_textsrc.py b/plotly/validators/scatterpolargl/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_textsrc.py rename to plotly/validators/scatterpolargl/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_texttemplate.py b/plotly/validators/scatterpolargl/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_texttemplate.py rename to plotly/validators/scatterpolargl/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_texttemplatesrc.py b/plotly/validators/scatterpolargl/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_texttemplatesrc.py rename to plotly/validators/scatterpolargl/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_theta.py b/plotly/validators/scatterpolargl/_theta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_theta.py rename to plotly/validators/scatterpolargl/_theta.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_theta0.py b/plotly/validators/scatterpolargl/_theta0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_theta0.py rename to plotly/validators/scatterpolargl/_theta0.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_thetasrc.py b/plotly/validators/scatterpolargl/_thetasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_thetasrc.py rename to plotly/validators/scatterpolargl/_thetasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_thetaunit.py b/plotly/validators/scatterpolargl/_thetaunit.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_thetaunit.py rename to plotly/validators/scatterpolargl/_thetaunit.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_uid.py b/plotly/validators/scatterpolargl/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_uid.py rename to plotly/validators/scatterpolargl/_uid.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_uirevision.py b/plotly/validators/scatterpolargl/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_uirevision.py rename to plotly/validators/scatterpolargl/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_unselected.py b/plotly/validators/scatterpolargl/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_unselected.py rename to plotly/validators/scatterpolargl/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/_visible.py b/plotly/validators/scatterpolargl/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/_visible.py rename to plotly/validators/scatterpolargl/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/__init__.py b/plotly/validators/scatterpolargl/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/__init__.py rename to plotly/validators/scatterpolargl/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_align.py b/plotly/validators/scatterpolargl/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_align.py rename to plotly/validators/scatterpolargl/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_alignsrc.py b/plotly/validators/scatterpolargl/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_alignsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bgcolor.py b/plotly/validators/scatterpolargl/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bgcolor.py rename to plotly/validators/scatterpolargl/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bgcolorsrc.py b/plotly/validators/scatterpolargl/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bordercolor.py b/plotly/validators/scatterpolargl/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bordercolor.py rename to plotly/validators/scatterpolargl/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bordercolorsrc.py b/plotly/validators/scatterpolargl/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_font.py b/plotly/validators/scatterpolargl/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_font.py rename to plotly/validators/scatterpolargl/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_namelength.py b/plotly/validators/scatterpolargl/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_namelength.py rename to plotly/validators/scatterpolargl/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_namelengthsrc.py b/plotly/validators/scatterpolargl/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/_namelengthsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/__init__.py b/plotly/validators/scatterpolargl/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/__init__.py rename to plotly/validators/scatterpolargl/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_color.py b/plotly/validators/scatterpolargl/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_color.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_colorsrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_colorsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_family.py b/plotly/validators/scatterpolargl/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_family.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_familysrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_familysrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_lineposition.py b/plotly/validators/scatterpolargl/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_lineposition.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_shadow.py b/plotly/validators/scatterpolargl/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_shadow.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_shadowsrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_size.py b/plotly/validators/scatterpolargl/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_size.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_sizesrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_sizesrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_style.py b/plotly/validators/scatterpolargl/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_style.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_stylesrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_stylesrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_textcase.py b/plotly/validators/scatterpolargl/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_textcase.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_textcasesrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_variant.py b/plotly/validators/scatterpolargl/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_variant.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_variantsrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_variantsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_weight.py b/plotly/validators/scatterpolargl/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_weight.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_weightsrc.py b/plotly/validators/scatterpolargl/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/hoverlabel/font/_weightsrc.py rename to plotly/validators/scatterpolargl/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/__init__.py b/plotly/validators/scatterpolargl/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/__init__.py rename to plotly/validators/scatterpolargl/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/_font.py b/plotly/validators/scatterpolargl/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/_font.py rename to plotly/validators/scatterpolargl/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/_text.py b/plotly/validators/scatterpolargl/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/_text.py rename to plotly/validators/scatterpolargl/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/__init__.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/__init__.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_color.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_color.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_family.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_family.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_lineposition.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_shadow.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_shadow.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_size.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_size.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_style.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_style.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_textcase.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_textcase.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_variant.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_variant.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_weight.py b/plotly/validators/scatterpolargl/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/legendgrouptitle/font/_weight.py rename to plotly/validators/scatterpolargl/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/line/__init__.py b/plotly/validators/scatterpolargl/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/line/__init__.py rename to plotly/validators/scatterpolargl/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/line/_color.py b/plotly/validators/scatterpolargl/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/line/_color.py rename to plotly/validators/scatterpolargl/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/line/_dash.py b/plotly/validators/scatterpolargl/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/line/_dash.py rename to plotly/validators/scatterpolargl/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/line/_width.py b/plotly/validators/scatterpolargl/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/line/_width.py rename to plotly/validators/scatterpolargl/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/__init__.py b/plotly/validators/scatterpolargl/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/__init__.py rename to plotly/validators/scatterpolargl/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_angle.py b/plotly/validators/scatterpolargl/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_angle.py rename to plotly/validators/scatterpolargl/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_anglesrc.py b/plotly/validators/scatterpolargl/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_anglesrc.py rename to plotly/validators/scatterpolargl/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_autocolorscale.py b/plotly/validators/scatterpolargl/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_autocolorscale.py rename to plotly/validators/scatterpolargl/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_cauto.py b/plotly/validators/scatterpolargl/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_cauto.py rename to plotly/validators/scatterpolargl/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_cmax.py b/plotly/validators/scatterpolargl/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_cmax.py rename to plotly/validators/scatterpolargl/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_cmid.py b/plotly/validators/scatterpolargl/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_cmid.py rename to plotly/validators/scatterpolargl/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_cmin.py b/plotly/validators/scatterpolargl/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_cmin.py rename to plotly/validators/scatterpolargl/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_color.py b/plotly/validators/scatterpolargl/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_color.py rename to plotly/validators/scatterpolargl/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_coloraxis.py b/plotly/validators/scatterpolargl/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_coloraxis.py rename to plotly/validators/scatterpolargl/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_colorbar.py b/plotly/validators/scatterpolargl/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_colorbar.py rename to plotly/validators/scatterpolargl/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_colorscale.py b/plotly/validators/scatterpolargl/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_colorscale.py rename to plotly/validators/scatterpolargl/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_colorsrc.py b/plotly/validators/scatterpolargl/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_colorsrc.py rename to plotly/validators/scatterpolargl/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_line.py b/plotly/validators/scatterpolargl/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_line.py rename to plotly/validators/scatterpolargl/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_opacity.py b/plotly/validators/scatterpolargl/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_opacity.py rename to plotly/validators/scatterpolargl/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_opacitysrc.py b/plotly/validators/scatterpolargl/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_opacitysrc.py rename to plotly/validators/scatterpolargl/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_reversescale.py b/plotly/validators/scatterpolargl/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_reversescale.py rename to plotly/validators/scatterpolargl/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_showscale.py b/plotly/validators/scatterpolargl/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_showscale.py rename to plotly/validators/scatterpolargl/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_size.py b/plotly/validators/scatterpolargl/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_size.py rename to plotly/validators/scatterpolargl/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizemin.py b/plotly/validators/scatterpolargl/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizemin.py rename to plotly/validators/scatterpolargl/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizemode.py b/plotly/validators/scatterpolargl/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizemode.py rename to plotly/validators/scatterpolargl/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizeref.py b/plotly/validators/scatterpolargl/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizeref.py rename to plotly/validators/scatterpolargl/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizesrc.py b/plotly/validators/scatterpolargl/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_sizesrc.py rename to plotly/validators/scatterpolargl/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_symbol.py b/plotly/validators/scatterpolargl/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_symbol.py rename to plotly/validators/scatterpolargl/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/_symbolsrc.py b/plotly/validators/scatterpolargl/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/_symbolsrc.py rename to plotly/validators/scatterpolargl/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/__init__.py b/plotly/validators/scatterpolargl/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/__init__.py rename to plotly/validators/scatterpolargl/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_bgcolor.py b/plotly/validators/scatterpolargl/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_bgcolor.py rename to plotly/validators/scatterpolargl/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_bordercolor.py b/plotly/validators/scatterpolargl/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_bordercolor.py rename to plotly/validators/scatterpolargl/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_borderwidth.py b/plotly/validators/scatterpolargl/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_borderwidth.py rename to plotly/validators/scatterpolargl/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_dtick.py b/plotly/validators/scatterpolargl/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_dtick.py rename to plotly/validators/scatterpolargl/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_exponentformat.py b/plotly/validators/scatterpolargl/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_exponentformat.py rename to plotly/validators/scatterpolargl/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_labelalias.py b/plotly/validators/scatterpolargl/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_labelalias.py rename to plotly/validators/scatterpolargl/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_len.py b/plotly/validators/scatterpolargl/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_len.py rename to plotly/validators/scatterpolargl/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_lenmode.py b/plotly/validators/scatterpolargl/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_lenmode.py rename to plotly/validators/scatterpolargl/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_minexponent.py b/plotly/validators/scatterpolargl/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_minexponent.py rename to plotly/validators/scatterpolargl/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_nticks.py b/plotly/validators/scatterpolargl/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_nticks.py rename to plotly/validators/scatterpolargl/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_orientation.py b/plotly/validators/scatterpolargl/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_orientation.py rename to plotly/validators/scatterpolargl/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_outlinecolor.py b/plotly/validators/scatterpolargl/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_outlinecolor.py rename to plotly/validators/scatterpolargl/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_outlinewidth.py b/plotly/validators/scatterpolargl/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_outlinewidth.py rename to plotly/validators/scatterpolargl/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_separatethousands.py b/plotly/validators/scatterpolargl/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_separatethousands.py rename to plotly/validators/scatterpolargl/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showexponent.py b/plotly/validators/scatterpolargl/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showexponent.py rename to plotly/validators/scatterpolargl/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showticklabels.py b/plotly/validators/scatterpolargl/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showticklabels.py rename to plotly/validators/scatterpolargl/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showtickprefix.py b/plotly/validators/scatterpolargl/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showtickprefix.py rename to plotly/validators/scatterpolargl/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showticksuffix.py b/plotly/validators/scatterpolargl/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_showticksuffix.py rename to plotly/validators/scatterpolargl/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_thickness.py b/plotly/validators/scatterpolargl/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_thickness.py rename to plotly/validators/scatterpolargl/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_thicknessmode.py b/plotly/validators/scatterpolargl/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_thicknessmode.py rename to plotly/validators/scatterpolargl/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tick0.py b/plotly/validators/scatterpolargl/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tick0.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickangle.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickangle.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickcolor.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickcolor.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickfont.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickfont.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickformat.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickformat.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstops.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickformatstops.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklabelposition.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklabelstep.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklen.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticklen.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickmode.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickmode.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickprefix.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickprefix.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticks.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticks.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticksuffix.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticksuffix.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticktext.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticktext.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticktextsrc.py b/plotly/validators/scatterpolargl/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickvals.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickvals.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickvalssrc.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickwidth.py b/plotly/validators/scatterpolargl/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_tickwidth.py rename to plotly/validators/scatterpolargl/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_title.py b/plotly/validators/scatterpolargl/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_title.py rename to plotly/validators/scatterpolargl/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_x.py b/plotly/validators/scatterpolargl/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_x.py rename to plotly/validators/scatterpolargl/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_xanchor.py b/plotly/validators/scatterpolargl/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_xanchor.py rename to plotly/validators/scatterpolargl/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_xpad.py b/plotly/validators/scatterpolargl/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_xpad.py rename to plotly/validators/scatterpolargl/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_xref.py b/plotly/validators/scatterpolargl/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_xref.py rename to plotly/validators/scatterpolargl/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_y.py b/plotly/validators/scatterpolargl/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_y.py rename to plotly/validators/scatterpolargl/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_yanchor.py b/plotly/validators/scatterpolargl/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_yanchor.py rename to plotly/validators/scatterpolargl/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ypad.py b/plotly/validators/scatterpolargl/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_ypad.py rename to plotly/validators/scatterpolargl/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_yref.py b/plotly/validators/scatterpolargl/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/_yref.py rename to plotly/validators/scatterpolargl/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/__init__.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_color.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_color.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_family.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_family.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_size.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_size.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_style.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_style.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_variant.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_weight.py b/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scatterpolargl/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/__init__.py b/plotly/validators/scatterpolargl/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/__init__.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/_font.py b/plotly/validators/scatterpolargl/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/_font.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/_side.py b/plotly/validators/scatterpolargl/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/_side.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/_text.py b/plotly/validators/scatterpolargl/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/_text.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/__init__.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/__init__.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_color.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_color.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_family.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_family.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_shadow.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_size.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_size.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_style.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_style.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_textcase.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_variant.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_variant.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_weight.py b/plotly/validators/scatterpolargl/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/colorbar/title/font/_weight.py rename to plotly/validators/scatterpolargl/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/__init__.py b/plotly/validators/scatterpolargl/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/__init__.py rename to plotly/validators/scatterpolargl/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_autocolorscale.py b/plotly/validators/scatterpolargl/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_autocolorscale.py rename to plotly/validators/scatterpolargl/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cauto.py b/plotly/validators/scatterpolargl/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cauto.py rename to plotly/validators/scatterpolargl/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cmax.py b/plotly/validators/scatterpolargl/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cmax.py rename to plotly/validators/scatterpolargl/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cmid.py b/plotly/validators/scatterpolargl/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cmid.py rename to plotly/validators/scatterpolargl/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cmin.py b/plotly/validators/scatterpolargl/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_cmin.py rename to plotly/validators/scatterpolargl/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_color.py b/plotly/validators/scatterpolargl/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_color.py rename to plotly/validators/scatterpolargl/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_coloraxis.py b/plotly/validators/scatterpolargl/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_coloraxis.py rename to plotly/validators/scatterpolargl/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_colorscale.py b/plotly/validators/scatterpolargl/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_colorscale.py rename to plotly/validators/scatterpolargl/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_colorsrc.py b/plotly/validators/scatterpolargl/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_colorsrc.py rename to plotly/validators/scatterpolargl/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_reversescale.py b/plotly/validators/scatterpolargl/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_reversescale.py rename to plotly/validators/scatterpolargl/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_width.py b/plotly/validators/scatterpolargl/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_width.py rename to plotly/validators/scatterpolargl/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_widthsrc.py b/plotly/validators/scatterpolargl/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/marker/line/_widthsrc.py rename to plotly/validators/scatterpolargl/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/__init__.py b/plotly/validators/scatterpolargl/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/__init__.py rename to plotly/validators/scatterpolargl/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/_marker.py b/plotly/validators/scatterpolargl/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/_marker.py rename to plotly/validators/scatterpolargl/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/_textfont.py b/plotly/validators/scatterpolargl/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/_textfont.py rename to plotly/validators/scatterpolargl/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/__init__.py b/plotly/validators/scatterpolargl/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/__init__.py rename to plotly/validators/scatterpolargl/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/_color.py b/plotly/validators/scatterpolargl/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/_color.py rename to plotly/validators/scatterpolargl/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/_opacity.py b/plotly/validators/scatterpolargl/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/_opacity.py rename to plotly/validators/scatterpolargl/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/_size.py b/plotly/validators/scatterpolargl/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/marker/_size.py rename to plotly/validators/scatterpolargl/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/textfont/__init__.py b/plotly/validators/scatterpolargl/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/textfont/__init__.py rename to plotly/validators/scatterpolargl/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/selected/textfont/_color.py b/plotly/validators/scatterpolargl/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/selected/textfont/_color.py rename to plotly/validators/scatterpolargl/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/stream/__init__.py b/plotly/validators/scatterpolargl/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/stream/__init__.py rename to plotly/validators/scatterpolargl/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/stream/_maxpoints.py b/plotly/validators/scatterpolargl/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/stream/_maxpoints.py rename to plotly/validators/scatterpolargl/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/stream/_token.py b/plotly/validators/scatterpolargl/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/stream/_token.py rename to plotly/validators/scatterpolargl/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/__init__.py b/plotly/validators/scatterpolargl/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/__init__.py rename to plotly/validators/scatterpolargl/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_color.py b/plotly/validators/scatterpolargl/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_color.py rename to plotly/validators/scatterpolargl/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_colorsrc.py b/plotly/validators/scatterpolargl/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_colorsrc.py rename to plotly/validators/scatterpolargl/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_family.py b/plotly/validators/scatterpolargl/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_family.py rename to plotly/validators/scatterpolargl/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_familysrc.py b/plotly/validators/scatterpolargl/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_familysrc.py rename to plotly/validators/scatterpolargl/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_size.py b/plotly/validators/scatterpolargl/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_size.py rename to plotly/validators/scatterpolargl/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_sizesrc.py b/plotly/validators/scatterpolargl/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_sizesrc.py rename to plotly/validators/scatterpolargl/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_style.py b/plotly/validators/scatterpolargl/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_style.py rename to plotly/validators/scatterpolargl/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_stylesrc.py b/plotly/validators/scatterpolargl/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_stylesrc.py rename to plotly/validators/scatterpolargl/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_variant.py b/plotly/validators/scatterpolargl/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_variant.py rename to plotly/validators/scatterpolargl/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_variantsrc.py b/plotly/validators/scatterpolargl/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_variantsrc.py rename to plotly/validators/scatterpolargl/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_weight.py b/plotly/validators/scatterpolargl/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_weight.py rename to plotly/validators/scatterpolargl/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/textfont/_weightsrc.py b/plotly/validators/scatterpolargl/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/textfont/_weightsrc.py rename to plotly/validators/scatterpolargl/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/__init__.py b/plotly/validators/scatterpolargl/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/__init__.py rename to plotly/validators/scatterpolargl/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/_marker.py b/plotly/validators/scatterpolargl/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/_marker.py rename to plotly/validators/scatterpolargl/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/_textfont.py b/plotly/validators/scatterpolargl/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/_textfont.py rename to plotly/validators/scatterpolargl/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/__init__.py b/plotly/validators/scatterpolargl/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/__init__.py rename to plotly/validators/scatterpolargl/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/_color.py b/plotly/validators/scatterpolargl/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/_color.py rename to plotly/validators/scatterpolargl/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/_opacity.py b/plotly/validators/scatterpolargl/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/_opacity.py rename to plotly/validators/scatterpolargl/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/_size.py b/plotly/validators/scatterpolargl/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/marker/_size.py rename to plotly/validators/scatterpolargl/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/textfont/__init__.py b/plotly/validators/scatterpolargl/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/textfont/__init__.py rename to plotly/validators/scatterpolargl/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterpolargl/unselected/textfont/_color.py b/plotly/validators/scatterpolargl/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterpolargl/unselected/textfont/_color.py rename to plotly/validators/scatterpolargl/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/__init__.py b/plotly/validators/scattersmith/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/__init__.py rename to plotly/validators/scattersmith/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_cliponaxis.py b/plotly/validators/scattersmith/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_cliponaxis.py rename to plotly/validators/scattersmith/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_connectgaps.py b/plotly/validators/scattersmith/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_connectgaps.py rename to plotly/validators/scattersmith/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_customdata.py b/plotly/validators/scattersmith/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_customdata.py rename to plotly/validators/scattersmith/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_customdatasrc.py b/plotly/validators/scattersmith/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_customdatasrc.py rename to plotly/validators/scattersmith/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_fill.py b/plotly/validators/scattersmith/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_fill.py rename to plotly/validators/scattersmith/_fill.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_fillcolor.py b/plotly/validators/scattersmith/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_fillcolor.py rename to plotly/validators/scattersmith/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hoverinfo.py b/plotly/validators/scattersmith/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hoverinfo.py rename to plotly/validators/scattersmith/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hoverinfosrc.py b/plotly/validators/scattersmith/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hoverinfosrc.py rename to plotly/validators/scattersmith/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hoverlabel.py b/plotly/validators/scattersmith/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hoverlabel.py rename to plotly/validators/scattersmith/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hoveron.py b/plotly/validators/scattersmith/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hoveron.py rename to plotly/validators/scattersmith/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hovertemplate.py b/plotly/validators/scattersmith/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hovertemplate.py rename to plotly/validators/scattersmith/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hovertemplatesrc.py b/plotly/validators/scattersmith/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hovertemplatesrc.py rename to plotly/validators/scattersmith/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hovertext.py b/plotly/validators/scattersmith/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hovertext.py rename to plotly/validators/scattersmith/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_hovertextsrc.py b/plotly/validators/scattersmith/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_hovertextsrc.py rename to plotly/validators/scattersmith/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_ids.py b/plotly/validators/scattersmith/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_ids.py rename to plotly/validators/scattersmith/_ids.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_idssrc.py b/plotly/validators/scattersmith/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_idssrc.py rename to plotly/validators/scattersmith/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_imag.py b/plotly/validators/scattersmith/_imag.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_imag.py rename to plotly/validators/scattersmith/_imag.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_imagsrc.py b/plotly/validators/scattersmith/_imagsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_imagsrc.py rename to plotly/validators/scattersmith/_imagsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_legend.py b/plotly/validators/scattersmith/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_legend.py rename to plotly/validators/scattersmith/_legend.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_legendgroup.py b/plotly/validators/scattersmith/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_legendgroup.py rename to plotly/validators/scattersmith/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_legendgrouptitle.py b/plotly/validators/scattersmith/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_legendgrouptitle.py rename to plotly/validators/scattersmith/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_legendrank.py b/plotly/validators/scattersmith/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_legendrank.py rename to plotly/validators/scattersmith/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_legendwidth.py b/plotly/validators/scattersmith/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_legendwidth.py rename to plotly/validators/scattersmith/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_line.py b/plotly/validators/scattersmith/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_line.py rename to plotly/validators/scattersmith/_line.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_marker.py b/plotly/validators/scattersmith/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_marker.py rename to plotly/validators/scattersmith/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_meta.py b/plotly/validators/scattersmith/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_meta.py rename to plotly/validators/scattersmith/_meta.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_metasrc.py b/plotly/validators/scattersmith/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_metasrc.py rename to plotly/validators/scattersmith/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_mode.py b/plotly/validators/scattersmith/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_mode.py rename to plotly/validators/scattersmith/_mode.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_name.py b/plotly/validators/scattersmith/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_name.py rename to plotly/validators/scattersmith/_name.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_opacity.py b/plotly/validators/scattersmith/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_opacity.py rename to plotly/validators/scattersmith/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_real.py b/plotly/validators/scattersmith/_real.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_real.py rename to plotly/validators/scattersmith/_real.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_realsrc.py b/plotly/validators/scattersmith/_realsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_realsrc.py rename to plotly/validators/scattersmith/_realsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_selected.py b/plotly/validators/scattersmith/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_selected.py rename to plotly/validators/scattersmith/_selected.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_selectedpoints.py b/plotly/validators/scattersmith/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_selectedpoints.py rename to plotly/validators/scattersmith/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_showlegend.py b/plotly/validators/scattersmith/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_showlegend.py rename to plotly/validators/scattersmith/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_stream.py b/plotly/validators/scattersmith/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_stream.py rename to plotly/validators/scattersmith/_stream.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_subplot.py b/plotly/validators/scattersmith/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_subplot.py rename to plotly/validators/scattersmith/_subplot.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_text.py b/plotly/validators/scattersmith/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_text.py rename to plotly/validators/scattersmith/_text.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_textfont.py b/plotly/validators/scattersmith/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_textfont.py rename to plotly/validators/scattersmith/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_textposition.py b/plotly/validators/scattersmith/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_textposition.py rename to plotly/validators/scattersmith/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_textpositionsrc.py b/plotly/validators/scattersmith/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_textpositionsrc.py rename to plotly/validators/scattersmith/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_textsrc.py b/plotly/validators/scattersmith/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_textsrc.py rename to plotly/validators/scattersmith/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_texttemplate.py b/plotly/validators/scattersmith/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_texttemplate.py rename to plotly/validators/scattersmith/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_texttemplatesrc.py b/plotly/validators/scattersmith/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_texttemplatesrc.py rename to plotly/validators/scattersmith/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_uid.py b/plotly/validators/scattersmith/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_uid.py rename to plotly/validators/scattersmith/_uid.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_uirevision.py b/plotly/validators/scattersmith/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_uirevision.py rename to plotly/validators/scattersmith/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_unselected.py b/plotly/validators/scattersmith/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_unselected.py rename to plotly/validators/scattersmith/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/_visible.py b/plotly/validators/scattersmith/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/_visible.py rename to plotly/validators/scattersmith/_visible.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/__init__.py b/plotly/validators/scattersmith/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/__init__.py rename to plotly/validators/scattersmith/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_align.py b/plotly/validators/scattersmith/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_align.py rename to plotly/validators/scattersmith/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_alignsrc.py b/plotly/validators/scattersmith/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_alignsrc.py rename to plotly/validators/scattersmith/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bgcolor.py b/plotly/validators/scattersmith/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bgcolor.py rename to plotly/validators/scattersmith/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bgcolorsrc.py b/plotly/validators/scattersmith/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scattersmith/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bordercolor.py b/plotly/validators/scattersmith/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bordercolor.py rename to plotly/validators/scattersmith/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bordercolorsrc.py b/plotly/validators/scattersmith/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scattersmith/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_font.py b/plotly/validators/scattersmith/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_font.py rename to plotly/validators/scattersmith/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_namelength.py b/plotly/validators/scattersmith/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_namelength.py rename to plotly/validators/scattersmith/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_namelengthsrc.py b/plotly/validators/scattersmith/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/_namelengthsrc.py rename to plotly/validators/scattersmith/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/__init__.py b/plotly/validators/scattersmith/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/__init__.py rename to plotly/validators/scattersmith/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_color.py b/plotly/validators/scattersmith/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_color.py rename to plotly/validators/scattersmith/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_colorsrc.py b/plotly/validators/scattersmith/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_colorsrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_family.py b/plotly/validators/scattersmith/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_family.py rename to plotly/validators/scattersmith/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_familysrc.py b/plotly/validators/scattersmith/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_familysrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_lineposition.py b/plotly/validators/scattersmith/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_lineposition.py rename to plotly/validators/scattersmith/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scattersmith/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_shadow.py b/plotly/validators/scattersmith/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_shadow.py rename to plotly/validators/scattersmith/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_shadowsrc.py b/plotly/validators/scattersmith/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_size.py b/plotly/validators/scattersmith/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_size.py rename to plotly/validators/scattersmith/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_sizesrc.py b/plotly/validators/scattersmith/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_sizesrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_style.py b/plotly/validators/scattersmith/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_style.py rename to plotly/validators/scattersmith/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_stylesrc.py b/plotly/validators/scattersmith/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_stylesrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_textcase.py b/plotly/validators/scattersmith/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_textcase.py rename to plotly/validators/scattersmith/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_textcasesrc.py b/plotly/validators/scattersmith/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_variant.py b/plotly/validators/scattersmith/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_variant.py rename to plotly/validators/scattersmith/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_variantsrc.py b/plotly/validators/scattersmith/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_variantsrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_weight.py b/plotly/validators/scattersmith/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_weight.py rename to plotly/validators/scattersmith/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_weightsrc.py b/plotly/validators/scattersmith/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/hoverlabel/font/_weightsrc.py rename to plotly/validators/scattersmith/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/__init__.py b/plotly/validators/scattersmith/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/__init__.py rename to plotly/validators/scattersmith/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/_font.py b/plotly/validators/scattersmith/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/_font.py rename to plotly/validators/scattersmith/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/_text.py b/plotly/validators/scattersmith/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/_text.py rename to plotly/validators/scattersmith/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/__init__.py b/plotly/validators/scattersmith/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/__init__.py rename to plotly/validators/scattersmith/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_color.py b/plotly/validators/scattersmith/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_color.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_family.py b/plotly/validators/scattersmith/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_family.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_lineposition.py b/plotly/validators/scattersmith/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_shadow.py b/plotly/validators/scattersmith/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_shadow.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_size.py b/plotly/validators/scattersmith/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_size.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_style.py b/plotly/validators/scattersmith/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_style.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_textcase.py b/plotly/validators/scattersmith/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_textcase.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_variant.py b/plotly/validators/scattersmith/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_variant.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_weight.py b/plotly/validators/scattersmith/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/legendgrouptitle/font/_weight.py rename to plotly/validators/scattersmith/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/__init__.py b/plotly/validators/scattersmith/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/__init__.py rename to plotly/validators/scattersmith/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_backoff.py b/plotly/validators/scattersmith/line/_backoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_backoff.py rename to plotly/validators/scattersmith/line/_backoff.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_backoffsrc.py b/plotly/validators/scattersmith/line/_backoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_backoffsrc.py rename to plotly/validators/scattersmith/line/_backoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_color.py b/plotly/validators/scattersmith/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_color.py rename to plotly/validators/scattersmith/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_dash.py b/plotly/validators/scattersmith/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_dash.py rename to plotly/validators/scattersmith/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_shape.py b/plotly/validators/scattersmith/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_shape.py rename to plotly/validators/scattersmith/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_smoothing.py b/plotly/validators/scattersmith/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_smoothing.py rename to plotly/validators/scattersmith/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/line/_width.py b/plotly/validators/scattersmith/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/line/_width.py rename to plotly/validators/scattersmith/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/__init__.py b/plotly/validators/scattersmith/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/__init__.py rename to plotly/validators/scattersmith/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_angle.py b/plotly/validators/scattersmith/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_angle.py rename to plotly/validators/scattersmith/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_angleref.py b/plotly/validators/scattersmith/marker/_angleref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_angleref.py rename to plotly/validators/scattersmith/marker/_angleref.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_anglesrc.py b/plotly/validators/scattersmith/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_anglesrc.py rename to plotly/validators/scattersmith/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_autocolorscale.py b/plotly/validators/scattersmith/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_autocolorscale.py rename to plotly/validators/scattersmith/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_cauto.py b/plotly/validators/scattersmith/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_cauto.py rename to plotly/validators/scattersmith/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_cmax.py b/plotly/validators/scattersmith/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_cmax.py rename to plotly/validators/scattersmith/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_cmid.py b/plotly/validators/scattersmith/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_cmid.py rename to plotly/validators/scattersmith/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_cmin.py b/plotly/validators/scattersmith/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_cmin.py rename to plotly/validators/scattersmith/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_color.py b/plotly/validators/scattersmith/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_color.py rename to plotly/validators/scattersmith/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_coloraxis.py b/plotly/validators/scattersmith/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_coloraxis.py rename to plotly/validators/scattersmith/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_colorbar.py b/plotly/validators/scattersmith/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_colorbar.py rename to plotly/validators/scattersmith/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_colorscale.py b/plotly/validators/scattersmith/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_colorscale.py rename to plotly/validators/scattersmith/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_colorsrc.py b/plotly/validators/scattersmith/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_colorsrc.py rename to plotly/validators/scattersmith/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_gradient.py b/plotly/validators/scattersmith/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_gradient.py rename to plotly/validators/scattersmith/marker/_gradient.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_line.py b/plotly/validators/scattersmith/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_line.py rename to plotly/validators/scattersmith/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_maxdisplayed.py b/plotly/validators/scattersmith/marker/_maxdisplayed.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_maxdisplayed.py rename to plotly/validators/scattersmith/marker/_maxdisplayed.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_opacity.py b/plotly/validators/scattersmith/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_opacity.py rename to plotly/validators/scattersmith/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_opacitysrc.py b/plotly/validators/scattersmith/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_opacitysrc.py rename to plotly/validators/scattersmith/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_reversescale.py b/plotly/validators/scattersmith/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_reversescale.py rename to plotly/validators/scattersmith/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_showscale.py b/plotly/validators/scattersmith/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_showscale.py rename to plotly/validators/scattersmith/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_size.py b/plotly/validators/scattersmith/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_size.py rename to plotly/validators/scattersmith/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_sizemin.py b/plotly/validators/scattersmith/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_sizemin.py rename to plotly/validators/scattersmith/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_sizemode.py b/plotly/validators/scattersmith/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_sizemode.py rename to plotly/validators/scattersmith/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_sizeref.py b/plotly/validators/scattersmith/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_sizeref.py rename to plotly/validators/scattersmith/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_sizesrc.py b/plotly/validators/scattersmith/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_sizesrc.py rename to plotly/validators/scattersmith/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_standoff.py b/plotly/validators/scattersmith/marker/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_standoff.py rename to plotly/validators/scattersmith/marker/_standoff.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_standoffsrc.py b/plotly/validators/scattersmith/marker/_standoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_standoffsrc.py rename to plotly/validators/scattersmith/marker/_standoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_symbol.py b/plotly/validators/scattersmith/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_symbol.py rename to plotly/validators/scattersmith/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/_symbolsrc.py b/plotly/validators/scattersmith/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/_symbolsrc.py rename to plotly/validators/scattersmith/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/__init__.py b/plotly/validators/scattersmith/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/__init__.py rename to plotly/validators/scattersmith/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_bgcolor.py b/plotly/validators/scattersmith/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_bgcolor.py rename to plotly/validators/scattersmith/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_bordercolor.py b/plotly/validators/scattersmith/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_bordercolor.py rename to plotly/validators/scattersmith/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_borderwidth.py b/plotly/validators/scattersmith/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_borderwidth.py rename to plotly/validators/scattersmith/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_dtick.py b/plotly/validators/scattersmith/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_dtick.py rename to plotly/validators/scattersmith/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_exponentformat.py b/plotly/validators/scattersmith/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_exponentformat.py rename to plotly/validators/scattersmith/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_labelalias.py b/plotly/validators/scattersmith/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_labelalias.py rename to plotly/validators/scattersmith/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_len.py b/plotly/validators/scattersmith/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_len.py rename to plotly/validators/scattersmith/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_lenmode.py b/plotly/validators/scattersmith/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_lenmode.py rename to plotly/validators/scattersmith/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_minexponent.py b/plotly/validators/scattersmith/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_minexponent.py rename to plotly/validators/scattersmith/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_nticks.py b/plotly/validators/scattersmith/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_nticks.py rename to plotly/validators/scattersmith/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_orientation.py b/plotly/validators/scattersmith/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_orientation.py rename to plotly/validators/scattersmith/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_outlinecolor.py b/plotly/validators/scattersmith/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_outlinecolor.py rename to plotly/validators/scattersmith/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_outlinewidth.py b/plotly/validators/scattersmith/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_outlinewidth.py rename to plotly/validators/scattersmith/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_separatethousands.py b/plotly/validators/scattersmith/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_separatethousands.py rename to plotly/validators/scattersmith/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showexponent.py b/plotly/validators/scattersmith/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showexponent.py rename to plotly/validators/scattersmith/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showticklabels.py b/plotly/validators/scattersmith/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showticklabels.py rename to plotly/validators/scattersmith/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showtickprefix.py b/plotly/validators/scattersmith/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showtickprefix.py rename to plotly/validators/scattersmith/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showticksuffix.py b/plotly/validators/scattersmith/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_showticksuffix.py rename to plotly/validators/scattersmith/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_thickness.py b/plotly/validators/scattersmith/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_thickness.py rename to plotly/validators/scattersmith/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_thicknessmode.py b/plotly/validators/scattersmith/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_thicknessmode.py rename to plotly/validators/scattersmith/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tick0.py b/plotly/validators/scattersmith/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tick0.py rename to plotly/validators/scattersmith/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickangle.py b/plotly/validators/scattersmith/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickangle.py rename to plotly/validators/scattersmith/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickcolor.py b/plotly/validators/scattersmith/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickcolor.py rename to plotly/validators/scattersmith/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickfont.py b/plotly/validators/scattersmith/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickfont.py rename to plotly/validators/scattersmith/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickformat.py b/plotly/validators/scattersmith/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickformat.py rename to plotly/validators/scattersmith/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scattersmith/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scattersmith/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickformatstops.py b/plotly/validators/scattersmith/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickformatstops.py rename to plotly/validators/scattersmith/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scattersmith/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scattersmith/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklabelposition.py b/plotly/validators/scattersmith/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scattersmith/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklabelstep.py b/plotly/validators/scattersmith/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scattersmith/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklen.py b/plotly/validators/scattersmith/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticklen.py rename to plotly/validators/scattersmith/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickmode.py b/plotly/validators/scattersmith/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickmode.py rename to plotly/validators/scattersmith/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickprefix.py b/plotly/validators/scattersmith/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickprefix.py rename to plotly/validators/scattersmith/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticks.py b/plotly/validators/scattersmith/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticks.py rename to plotly/validators/scattersmith/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticksuffix.py b/plotly/validators/scattersmith/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticksuffix.py rename to plotly/validators/scattersmith/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticktext.py b/plotly/validators/scattersmith/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticktext.py rename to plotly/validators/scattersmith/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticktextsrc.py b/plotly/validators/scattersmith/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scattersmith/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickvals.py b/plotly/validators/scattersmith/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickvals.py rename to plotly/validators/scattersmith/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickvalssrc.py b/plotly/validators/scattersmith/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scattersmith/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickwidth.py b/plotly/validators/scattersmith/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_tickwidth.py rename to plotly/validators/scattersmith/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_title.py b/plotly/validators/scattersmith/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_title.py rename to plotly/validators/scattersmith/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_x.py b/plotly/validators/scattersmith/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_x.py rename to plotly/validators/scattersmith/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_xanchor.py b/plotly/validators/scattersmith/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_xanchor.py rename to plotly/validators/scattersmith/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_xpad.py b/plotly/validators/scattersmith/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_xpad.py rename to plotly/validators/scattersmith/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_xref.py b/plotly/validators/scattersmith/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_xref.py rename to plotly/validators/scattersmith/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_y.py b/plotly/validators/scattersmith/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_y.py rename to plotly/validators/scattersmith/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_yanchor.py b/plotly/validators/scattersmith/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_yanchor.py rename to plotly/validators/scattersmith/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ypad.py b/plotly/validators/scattersmith/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_ypad.py rename to plotly/validators/scattersmith/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_yref.py b/plotly/validators/scattersmith/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/_yref.py rename to plotly/validators/scattersmith/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/__init__.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_color.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_color.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_family.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_family.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_size.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_size.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_style.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_style.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_variant.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_weight.py b/plotly/validators/scattersmith/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scattersmith/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scattersmith/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scattersmith/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scattersmith/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scattersmith/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scattersmith/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scattersmith/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scattersmith/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/__init__.py b/plotly/validators/scattersmith/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/__init__.py rename to plotly/validators/scattersmith/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/_font.py b/plotly/validators/scattersmith/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/_font.py rename to plotly/validators/scattersmith/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/_side.py b/plotly/validators/scattersmith/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/_side.py rename to plotly/validators/scattersmith/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/_text.py b/plotly/validators/scattersmith/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/_text.py rename to plotly/validators/scattersmith/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/__init__.py b/plotly/validators/scattersmith/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/__init__.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_color.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_color.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_family.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_family.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_shadow.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_size.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_size.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_style.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_style.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_textcase.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_variant.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_variant.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_weight.py b/plotly/validators/scattersmith/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/colorbar/title/font/_weight.py rename to plotly/validators/scattersmith/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/gradient/__init__.py b/plotly/validators/scattersmith/marker/gradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/gradient/__init__.py rename to plotly/validators/scattersmith/marker/gradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_color.py b/plotly/validators/scattersmith/marker/gradient/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_color.py rename to plotly/validators/scattersmith/marker/gradient/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_colorsrc.py b/plotly/validators/scattersmith/marker/gradient/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_colorsrc.py rename to plotly/validators/scattersmith/marker/gradient/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_type.py b/plotly/validators/scattersmith/marker/gradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_type.py rename to plotly/validators/scattersmith/marker/gradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_typesrc.py b/plotly/validators/scattersmith/marker/gradient/_typesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/gradient/_typesrc.py rename to plotly/validators/scattersmith/marker/gradient/_typesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/__init__.py b/plotly/validators/scattersmith/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/__init__.py rename to plotly/validators/scattersmith/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_autocolorscale.py b/plotly/validators/scattersmith/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_autocolorscale.py rename to plotly/validators/scattersmith/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_cauto.py b/plotly/validators/scattersmith/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_cauto.py rename to plotly/validators/scattersmith/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_cmax.py b/plotly/validators/scattersmith/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_cmax.py rename to plotly/validators/scattersmith/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_cmid.py b/plotly/validators/scattersmith/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_cmid.py rename to plotly/validators/scattersmith/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_cmin.py b/plotly/validators/scattersmith/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_cmin.py rename to plotly/validators/scattersmith/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_color.py b/plotly/validators/scattersmith/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_color.py rename to plotly/validators/scattersmith/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_coloraxis.py b/plotly/validators/scattersmith/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_coloraxis.py rename to plotly/validators/scattersmith/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_colorscale.py b/plotly/validators/scattersmith/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_colorscale.py rename to plotly/validators/scattersmith/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_colorsrc.py b/plotly/validators/scattersmith/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_colorsrc.py rename to plotly/validators/scattersmith/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_reversescale.py b/plotly/validators/scattersmith/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_reversescale.py rename to plotly/validators/scattersmith/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_width.py b/plotly/validators/scattersmith/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_width.py rename to plotly/validators/scattersmith/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/marker/line/_widthsrc.py b/plotly/validators/scattersmith/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/marker/line/_widthsrc.py rename to plotly/validators/scattersmith/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/__init__.py b/plotly/validators/scattersmith/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/__init__.py rename to plotly/validators/scattersmith/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/_marker.py b/plotly/validators/scattersmith/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/_marker.py rename to plotly/validators/scattersmith/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/_textfont.py b/plotly/validators/scattersmith/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/_textfont.py rename to plotly/validators/scattersmith/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/marker/__init__.py b/plotly/validators/scattersmith/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/marker/__init__.py rename to plotly/validators/scattersmith/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/marker/_color.py b/plotly/validators/scattersmith/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/marker/_color.py rename to plotly/validators/scattersmith/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/marker/_opacity.py b/plotly/validators/scattersmith/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/marker/_opacity.py rename to plotly/validators/scattersmith/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/marker/_size.py b/plotly/validators/scattersmith/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/marker/_size.py rename to plotly/validators/scattersmith/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/textfont/__init__.py b/plotly/validators/scattersmith/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/textfont/__init__.py rename to plotly/validators/scattersmith/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/selected/textfont/_color.py b/plotly/validators/scattersmith/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/selected/textfont/_color.py rename to plotly/validators/scattersmith/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/stream/__init__.py b/plotly/validators/scattersmith/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/stream/__init__.py rename to plotly/validators/scattersmith/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/stream/_maxpoints.py b/plotly/validators/scattersmith/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/stream/_maxpoints.py rename to plotly/validators/scattersmith/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/stream/_token.py b/plotly/validators/scattersmith/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/stream/_token.py rename to plotly/validators/scattersmith/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/__init__.py b/plotly/validators/scattersmith/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/__init__.py rename to plotly/validators/scattersmith/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_color.py b/plotly/validators/scattersmith/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_color.py rename to plotly/validators/scattersmith/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_colorsrc.py b/plotly/validators/scattersmith/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_colorsrc.py rename to plotly/validators/scattersmith/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_family.py b/plotly/validators/scattersmith/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_family.py rename to plotly/validators/scattersmith/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_familysrc.py b/plotly/validators/scattersmith/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_familysrc.py rename to plotly/validators/scattersmith/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_lineposition.py b/plotly/validators/scattersmith/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_lineposition.py rename to plotly/validators/scattersmith/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_linepositionsrc.py b/plotly/validators/scattersmith/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_linepositionsrc.py rename to plotly/validators/scattersmith/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_shadow.py b/plotly/validators/scattersmith/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_shadow.py rename to plotly/validators/scattersmith/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_shadowsrc.py b/plotly/validators/scattersmith/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_shadowsrc.py rename to plotly/validators/scattersmith/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_size.py b/plotly/validators/scattersmith/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_size.py rename to plotly/validators/scattersmith/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_sizesrc.py b/plotly/validators/scattersmith/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_sizesrc.py rename to plotly/validators/scattersmith/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_style.py b/plotly/validators/scattersmith/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_style.py rename to plotly/validators/scattersmith/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_stylesrc.py b/plotly/validators/scattersmith/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_stylesrc.py rename to plotly/validators/scattersmith/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_textcase.py b/plotly/validators/scattersmith/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_textcase.py rename to plotly/validators/scattersmith/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_textcasesrc.py b/plotly/validators/scattersmith/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_textcasesrc.py rename to plotly/validators/scattersmith/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_variant.py b/plotly/validators/scattersmith/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_variant.py rename to plotly/validators/scattersmith/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_variantsrc.py b/plotly/validators/scattersmith/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_variantsrc.py rename to plotly/validators/scattersmith/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_weight.py b/plotly/validators/scattersmith/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_weight.py rename to plotly/validators/scattersmith/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/textfont/_weightsrc.py b/plotly/validators/scattersmith/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/textfont/_weightsrc.py rename to plotly/validators/scattersmith/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/__init__.py b/plotly/validators/scattersmith/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/__init__.py rename to plotly/validators/scattersmith/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/_marker.py b/plotly/validators/scattersmith/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/_marker.py rename to plotly/validators/scattersmith/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/_textfont.py b/plotly/validators/scattersmith/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/_textfont.py rename to plotly/validators/scattersmith/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/marker/__init__.py b/plotly/validators/scattersmith/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/marker/__init__.py rename to plotly/validators/scattersmith/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/marker/_color.py b/plotly/validators/scattersmith/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/marker/_color.py rename to plotly/validators/scattersmith/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/marker/_opacity.py b/plotly/validators/scattersmith/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/marker/_opacity.py rename to plotly/validators/scattersmith/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/marker/_size.py b/plotly/validators/scattersmith/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/marker/_size.py rename to plotly/validators/scattersmith/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/textfont/__init__.py b/plotly/validators/scattersmith/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/textfont/__init__.py rename to plotly/validators/scattersmith/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scattersmith/unselected/textfont/_color.py b/plotly/validators/scattersmith/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scattersmith/unselected/textfont/_color.py rename to plotly/validators/scattersmith/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/__init__.py b/plotly/validators/scatterternary/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/__init__.py rename to plotly/validators/scatterternary/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_a.py b/plotly/validators/scatterternary/_a.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_a.py rename to plotly/validators/scatterternary/_a.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_asrc.py b/plotly/validators/scatterternary/_asrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_asrc.py rename to plotly/validators/scatterternary/_asrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_b.py b/plotly/validators/scatterternary/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_b.py rename to plotly/validators/scatterternary/_b.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_bsrc.py b/plotly/validators/scatterternary/_bsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_bsrc.py rename to plotly/validators/scatterternary/_bsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_c.py b/plotly/validators/scatterternary/_c.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_c.py rename to plotly/validators/scatterternary/_c.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_cliponaxis.py b/plotly/validators/scatterternary/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_cliponaxis.py rename to plotly/validators/scatterternary/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_connectgaps.py b/plotly/validators/scatterternary/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_connectgaps.py rename to plotly/validators/scatterternary/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_csrc.py b/plotly/validators/scatterternary/_csrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_csrc.py rename to plotly/validators/scatterternary/_csrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_customdata.py b/plotly/validators/scatterternary/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_customdata.py rename to plotly/validators/scatterternary/_customdata.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_customdatasrc.py b/plotly/validators/scatterternary/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_customdatasrc.py rename to plotly/validators/scatterternary/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_fill.py b/plotly/validators/scatterternary/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_fill.py rename to plotly/validators/scatterternary/_fill.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_fillcolor.py b/plotly/validators/scatterternary/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_fillcolor.py rename to plotly/validators/scatterternary/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hoverinfo.py b/plotly/validators/scatterternary/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hoverinfo.py rename to plotly/validators/scatterternary/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hoverinfosrc.py b/plotly/validators/scatterternary/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hoverinfosrc.py rename to plotly/validators/scatterternary/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hoverlabel.py b/plotly/validators/scatterternary/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hoverlabel.py rename to plotly/validators/scatterternary/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hoveron.py b/plotly/validators/scatterternary/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hoveron.py rename to plotly/validators/scatterternary/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hovertemplate.py b/plotly/validators/scatterternary/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hovertemplate.py rename to plotly/validators/scatterternary/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hovertemplatesrc.py b/plotly/validators/scatterternary/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hovertemplatesrc.py rename to plotly/validators/scatterternary/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hovertext.py b/plotly/validators/scatterternary/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hovertext.py rename to plotly/validators/scatterternary/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_hovertextsrc.py b/plotly/validators/scatterternary/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_hovertextsrc.py rename to plotly/validators/scatterternary/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_ids.py b/plotly/validators/scatterternary/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_ids.py rename to plotly/validators/scatterternary/_ids.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_idssrc.py b/plotly/validators/scatterternary/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_idssrc.py rename to plotly/validators/scatterternary/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_legend.py b/plotly/validators/scatterternary/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_legend.py rename to plotly/validators/scatterternary/_legend.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_legendgroup.py b/plotly/validators/scatterternary/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_legendgroup.py rename to plotly/validators/scatterternary/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_legendgrouptitle.py b/plotly/validators/scatterternary/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_legendgrouptitle.py rename to plotly/validators/scatterternary/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_legendrank.py b/plotly/validators/scatterternary/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_legendrank.py rename to plotly/validators/scatterternary/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_legendwidth.py b/plotly/validators/scatterternary/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_legendwidth.py rename to plotly/validators/scatterternary/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_line.py b/plotly/validators/scatterternary/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_line.py rename to plotly/validators/scatterternary/_line.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_marker.py b/plotly/validators/scatterternary/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_marker.py rename to plotly/validators/scatterternary/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_meta.py b/plotly/validators/scatterternary/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_meta.py rename to plotly/validators/scatterternary/_meta.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_metasrc.py b/plotly/validators/scatterternary/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_metasrc.py rename to plotly/validators/scatterternary/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_mode.py b/plotly/validators/scatterternary/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_mode.py rename to plotly/validators/scatterternary/_mode.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_name.py b/plotly/validators/scatterternary/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_name.py rename to plotly/validators/scatterternary/_name.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_opacity.py b/plotly/validators/scatterternary/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_opacity.py rename to plotly/validators/scatterternary/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_selected.py b/plotly/validators/scatterternary/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_selected.py rename to plotly/validators/scatterternary/_selected.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_selectedpoints.py b/plotly/validators/scatterternary/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_selectedpoints.py rename to plotly/validators/scatterternary/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_showlegend.py b/plotly/validators/scatterternary/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_showlegend.py rename to plotly/validators/scatterternary/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_stream.py b/plotly/validators/scatterternary/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_stream.py rename to plotly/validators/scatterternary/_stream.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_subplot.py b/plotly/validators/scatterternary/_subplot.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_subplot.py rename to plotly/validators/scatterternary/_subplot.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_sum.py b/plotly/validators/scatterternary/_sum.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_sum.py rename to plotly/validators/scatterternary/_sum.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_text.py b/plotly/validators/scatterternary/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_text.py rename to plotly/validators/scatterternary/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_textfont.py b/plotly/validators/scatterternary/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_textfont.py rename to plotly/validators/scatterternary/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_textposition.py b/plotly/validators/scatterternary/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_textposition.py rename to plotly/validators/scatterternary/_textposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_textpositionsrc.py b/plotly/validators/scatterternary/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_textpositionsrc.py rename to plotly/validators/scatterternary/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_textsrc.py b/plotly/validators/scatterternary/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_textsrc.py rename to plotly/validators/scatterternary/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_texttemplate.py b/plotly/validators/scatterternary/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_texttemplate.py rename to plotly/validators/scatterternary/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_texttemplatesrc.py b/plotly/validators/scatterternary/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_texttemplatesrc.py rename to plotly/validators/scatterternary/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_uid.py b/plotly/validators/scatterternary/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_uid.py rename to plotly/validators/scatterternary/_uid.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_uirevision.py b/plotly/validators/scatterternary/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_uirevision.py rename to plotly/validators/scatterternary/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_unselected.py b/plotly/validators/scatterternary/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_unselected.py rename to plotly/validators/scatterternary/_unselected.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/_visible.py b/plotly/validators/scatterternary/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/_visible.py rename to plotly/validators/scatterternary/_visible.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/__init__.py b/plotly/validators/scatterternary/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/__init__.py rename to plotly/validators/scatterternary/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_align.py b/plotly/validators/scatterternary/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_align.py rename to plotly/validators/scatterternary/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_alignsrc.py b/plotly/validators/scatterternary/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_alignsrc.py rename to plotly/validators/scatterternary/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bgcolor.py b/plotly/validators/scatterternary/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bgcolor.py rename to plotly/validators/scatterternary/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bgcolorsrc.py b/plotly/validators/scatterternary/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bgcolorsrc.py rename to plotly/validators/scatterternary/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bordercolor.py b/plotly/validators/scatterternary/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bordercolor.py rename to plotly/validators/scatterternary/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bordercolorsrc.py b/plotly/validators/scatterternary/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_bordercolorsrc.py rename to plotly/validators/scatterternary/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_font.py b/plotly/validators/scatterternary/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_font.py rename to plotly/validators/scatterternary/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_namelength.py b/plotly/validators/scatterternary/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_namelength.py rename to plotly/validators/scatterternary/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_namelengthsrc.py b/plotly/validators/scatterternary/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/_namelengthsrc.py rename to plotly/validators/scatterternary/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/__init__.py b/plotly/validators/scatterternary/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/__init__.py rename to plotly/validators/scatterternary/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_color.py b/plotly/validators/scatterternary/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_color.py rename to plotly/validators/scatterternary/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_colorsrc.py b/plotly/validators/scatterternary/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_colorsrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_family.py b/plotly/validators/scatterternary/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_family.py rename to plotly/validators/scatterternary/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_familysrc.py b/plotly/validators/scatterternary/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_familysrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_lineposition.py b/plotly/validators/scatterternary/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_lineposition.py rename to plotly/validators/scatterternary/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_linepositionsrc.py b/plotly/validators/scatterternary/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_shadow.py b/plotly/validators/scatterternary/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_shadow.py rename to plotly/validators/scatterternary/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_shadowsrc.py b/plotly/validators/scatterternary/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_shadowsrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_size.py b/plotly/validators/scatterternary/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_size.py rename to plotly/validators/scatterternary/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_sizesrc.py b/plotly/validators/scatterternary/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_sizesrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_style.py b/plotly/validators/scatterternary/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_style.py rename to plotly/validators/scatterternary/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_stylesrc.py b/plotly/validators/scatterternary/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_stylesrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_textcase.py b/plotly/validators/scatterternary/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_textcase.py rename to plotly/validators/scatterternary/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_textcasesrc.py b/plotly/validators/scatterternary/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_textcasesrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_variant.py b/plotly/validators/scatterternary/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_variant.py rename to plotly/validators/scatterternary/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_variantsrc.py b/plotly/validators/scatterternary/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_variantsrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_weight.py b/plotly/validators/scatterternary/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_weight.py rename to plotly/validators/scatterternary/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_weightsrc.py b/plotly/validators/scatterternary/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/hoverlabel/font/_weightsrc.py rename to plotly/validators/scatterternary/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/__init__.py b/plotly/validators/scatterternary/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/__init__.py rename to plotly/validators/scatterternary/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/_font.py b/plotly/validators/scatterternary/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/_font.py rename to plotly/validators/scatterternary/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/_text.py b/plotly/validators/scatterternary/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/_text.py rename to plotly/validators/scatterternary/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/__init__.py b/plotly/validators/scatterternary/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/__init__.py rename to plotly/validators/scatterternary/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_color.py b/plotly/validators/scatterternary/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_color.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_family.py b/plotly/validators/scatterternary/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_family.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_lineposition.py b/plotly/validators/scatterternary/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_lineposition.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_shadow.py b/plotly/validators/scatterternary/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_shadow.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_size.py b/plotly/validators/scatterternary/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_size.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_style.py b/plotly/validators/scatterternary/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_style.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_textcase.py b/plotly/validators/scatterternary/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_textcase.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_variant.py b/plotly/validators/scatterternary/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_variant.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_weight.py b/plotly/validators/scatterternary/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/legendgrouptitle/font/_weight.py rename to plotly/validators/scatterternary/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/__init__.py b/plotly/validators/scatterternary/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/__init__.py rename to plotly/validators/scatterternary/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_backoff.py b/plotly/validators/scatterternary/line/_backoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_backoff.py rename to plotly/validators/scatterternary/line/_backoff.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_backoffsrc.py b/plotly/validators/scatterternary/line/_backoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_backoffsrc.py rename to plotly/validators/scatterternary/line/_backoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_color.py b/plotly/validators/scatterternary/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_color.py rename to plotly/validators/scatterternary/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_dash.py b/plotly/validators/scatterternary/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_dash.py rename to plotly/validators/scatterternary/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_shape.py b/plotly/validators/scatterternary/line/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_shape.py rename to plotly/validators/scatterternary/line/_shape.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_smoothing.py b/plotly/validators/scatterternary/line/_smoothing.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_smoothing.py rename to plotly/validators/scatterternary/line/_smoothing.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/line/_width.py b/plotly/validators/scatterternary/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/line/_width.py rename to plotly/validators/scatterternary/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/__init__.py b/plotly/validators/scatterternary/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/__init__.py rename to plotly/validators/scatterternary/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_angle.py b/plotly/validators/scatterternary/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_angle.py rename to plotly/validators/scatterternary/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_angleref.py b/plotly/validators/scatterternary/marker/_angleref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_angleref.py rename to plotly/validators/scatterternary/marker/_angleref.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_anglesrc.py b/plotly/validators/scatterternary/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_anglesrc.py rename to plotly/validators/scatterternary/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_autocolorscale.py b/plotly/validators/scatterternary/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_autocolorscale.py rename to plotly/validators/scatterternary/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_cauto.py b/plotly/validators/scatterternary/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_cauto.py rename to plotly/validators/scatterternary/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_cmax.py b/plotly/validators/scatterternary/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_cmax.py rename to plotly/validators/scatterternary/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_cmid.py b/plotly/validators/scatterternary/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_cmid.py rename to plotly/validators/scatterternary/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_cmin.py b/plotly/validators/scatterternary/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_cmin.py rename to plotly/validators/scatterternary/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_color.py b/plotly/validators/scatterternary/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_color.py rename to plotly/validators/scatterternary/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_coloraxis.py b/plotly/validators/scatterternary/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_coloraxis.py rename to plotly/validators/scatterternary/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_colorbar.py b/plotly/validators/scatterternary/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_colorbar.py rename to plotly/validators/scatterternary/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_colorscale.py b/plotly/validators/scatterternary/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_colorscale.py rename to plotly/validators/scatterternary/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_colorsrc.py b/plotly/validators/scatterternary/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_colorsrc.py rename to plotly/validators/scatterternary/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_gradient.py b/plotly/validators/scatterternary/marker/_gradient.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_gradient.py rename to plotly/validators/scatterternary/marker/_gradient.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_line.py b/plotly/validators/scatterternary/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_line.py rename to plotly/validators/scatterternary/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_maxdisplayed.py b/plotly/validators/scatterternary/marker/_maxdisplayed.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_maxdisplayed.py rename to plotly/validators/scatterternary/marker/_maxdisplayed.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_opacity.py b/plotly/validators/scatterternary/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_opacity.py rename to plotly/validators/scatterternary/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_opacitysrc.py b/plotly/validators/scatterternary/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_opacitysrc.py rename to plotly/validators/scatterternary/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_reversescale.py b/plotly/validators/scatterternary/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_reversescale.py rename to plotly/validators/scatterternary/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_showscale.py b/plotly/validators/scatterternary/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_showscale.py rename to plotly/validators/scatterternary/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_size.py b/plotly/validators/scatterternary/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_size.py rename to plotly/validators/scatterternary/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_sizemin.py b/plotly/validators/scatterternary/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_sizemin.py rename to plotly/validators/scatterternary/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_sizemode.py b/plotly/validators/scatterternary/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_sizemode.py rename to plotly/validators/scatterternary/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_sizeref.py b/plotly/validators/scatterternary/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_sizeref.py rename to plotly/validators/scatterternary/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_sizesrc.py b/plotly/validators/scatterternary/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_sizesrc.py rename to plotly/validators/scatterternary/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_standoff.py b/plotly/validators/scatterternary/marker/_standoff.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_standoff.py rename to plotly/validators/scatterternary/marker/_standoff.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_standoffsrc.py b/plotly/validators/scatterternary/marker/_standoffsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_standoffsrc.py rename to plotly/validators/scatterternary/marker/_standoffsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_symbol.py b/plotly/validators/scatterternary/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_symbol.py rename to plotly/validators/scatterternary/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/_symbolsrc.py b/plotly/validators/scatterternary/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/_symbolsrc.py rename to plotly/validators/scatterternary/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/__init__.py b/plotly/validators/scatterternary/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/__init__.py rename to plotly/validators/scatterternary/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_bgcolor.py b/plotly/validators/scatterternary/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_bgcolor.py rename to plotly/validators/scatterternary/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_bordercolor.py b/plotly/validators/scatterternary/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_bordercolor.py rename to plotly/validators/scatterternary/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_borderwidth.py b/plotly/validators/scatterternary/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_borderwidth.py rename to plotly/validators/scatterternary/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_dtick.py b/plotly/validators/scatterternary/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_dtick.py rename to plotly/validators/scatterternary/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_exponentformat.py b/plotly/validators/scatterternary/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_exponentformat.py rename to plotly/validators/scatterternary/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_labelalias.py b/plotly/validators/scatterternary/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_labelalias.py rename to plotly/validators/scatterternary/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_len.py b/plotly/validators/scatterternary/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_len.py rename to plotly/validators/scatterternary/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_lenmode.py b/plotly/validators/scatterternary/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_lenmode.py rename to plotly/validators/scatterternary/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_minexponent.py b/plotly/validators/scatterternary/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_minexponent.py rename to plotly/validators/scatterternary/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_nticks.py b/plotly/validators/scatterternary/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_nticks.py rename to plotly/validators/scatterternary/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_orientation.py b/plotly/validators/scatterternary/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_orientation.py rename to plotly/validators/scatterternary/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_outlinecolor.py b/plotly/validators/scatterternary/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_outlinecolor.py rename to plotly/validators/scatterternary/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_outlinewidth.py b/plotly/validators/scatterternary/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_outlinewidth.py rename to plotly/validators/scatterternary/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_separatethousands.py b/plotly/validators/scatterternary/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_separatethousands.py rename to plotly/validators/scatterternary/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showexponent.py b/plotly/validators/scatterternary/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showexponent.py rename to plotly/validators/scatterternary/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showticklabels.py b/plotly/validators/scatterternary/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showticklabels.py rename to plotly/validators/scatterternary/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showtickprefix.py b/plotly/validators/scatterternary/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showtickprefix.py rename to plotly/validators/scatterternary/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showticksuffix.py b/plotly/validators/scatterternary/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_showticksuffix.py rename to plotly/validators/scatterternary/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_thickness.py b/plotly/validators/scatterternary/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_thickness.py rename to plotly/validators/scatterternary/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_thicknessmode.py b/plotly/validators/scatterternary/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_thicknessmode.py rename to plotly/validators/scatterternary/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tick0.py b/plotly/validators/scatterternary/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tick0.py rename to plotly/validators/scatterternary/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickangle.py b/plotly/validators/scatterternary/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickangle.py rename to plotly/validators/scatterternary/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickcolor.py b/plotly/validators/scatterternary/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickcolor.py rename to plotly/validators/scatterternary/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickfont.py b/plotly/validators/scatterternary/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickfont.py rename to plotly/validators/scatterternary/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickformat.py b/plotly/validators/scatterternary/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickformat.py rename to plotly/validators/scatterternary/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/scatterternary/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickformatstops.py b/plotly/validators/scatterternary/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickformatstops.py rename to plotly/validators/scatterternary/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/scatterternary/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/scatterternary/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklabelposition.py b/plotly/validators/scatterternary/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklabelposition.py rename to plotly/validators/scatterternary/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklabelstep.py b/plotly/validators/scatterternary/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklabelstep.py rename to plotly/validators/scatterternary/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklen.py b/plotly/validators/scatterternary/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticklen.py rename to plotly/validators/scatterternary/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickmode.py b/plotly/validators/scatterternary/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickmode.py rename to plotly/validators/scatterternary/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickprefix.py b/plotly/validators/scatterternary/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickprefix.py rename to plotly/validators/scatterternary/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticks.py b/plotly/validators/scatterternary/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticks.py rename to plotly/validators/scatterternary/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticksuffix.py b/plotly/validators/scatterternary/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticksuffix.py rename to plotly/validators/scatterternary/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticktext.py b/plotly/validators/scatterternary/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticktext.py rename to plotly/validators/scatterternary/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticktextsrc.py b/plotly/validators/scatterternary/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ticktextsrc.py rename to plotly/validators/scatterternary/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickvals.py b/plotly/validators/scatterternary/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickvals.py rename to plotly/validators/scatterternary/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickvalssrc.py b/plotly/validators/scatterternary/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickvalssrc.py rename to plotly/validators/scatterternary/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickwidth.py b/plotly/validators/scatterternary/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_tickwidth.py rename to plotly/validators/scatterternary/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_title.py b/plotly/validators/scatterternary/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_title.py rename to plotly/validators/scatterternary/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_x.py b/plotly/validators/scatterternary/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_x.py rename to plotly/validators/scatterternary/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_xanchor.py b/plotly/validators/scatterternary/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_xanchor.py rename to plotly/validators/scatterternary/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_xpad.py b/plotly/validators/scatterternary/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_xpad.py rename to plotly/validators/scatterternary/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_xref.py b/plotly/validators/scatterternary/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_xref.py rename to plotly/validators/scatterternary/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_y.py b/plotly/validators/scatterternary/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_y.py rename to plotly/validators/scatterternary/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_yanchor.py b/plotly/validators/scatterternary/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_yanchor.py rename to plotly/validators/scatterternary/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ypad.py b/plotly/validators/scatterternary/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_ypad.py rename to plotly/validators/scatterternary/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_yref.py b/plotly/validators/scatterternary/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/_yref.py rename to plotly/validators/scatterternary/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/__init__.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/__init__.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_color.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_color.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_family.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_family.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_shadow.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_size.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_size.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_style.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_style.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_textcase.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_variant.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_variant.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_weight.py b/plotly/validators/scatterternary/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickfont/_weight.py rename to plotly/validators/scatterternary/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/scatterternary/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/scatterternary/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/scatterternary/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/scatterternary/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_name.py b/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/scatterternary/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/scatterternary/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_value.py b/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/scatterternary/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/__init__.py b/plotly/validators/scatterternary/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/__init__.py rename to plotly/validators/scatterternary/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/_font.py b/plotly/validators/scatterternary/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/_font.py rename to plotly/validators/scatterternary/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/_side.py b/plotly/validators/scatterternary/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/_side.py rename to plotly/validators/scatterternary/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/_text.py b/plotly/validators/scatterternary/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/_text.py rename to plotly/validators/scatterternary/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/__init__.py b/plotly/validators/scatterternary/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/__init__.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_color.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_color.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_family.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_family.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_lineposition.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_shadow.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_shadow.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_size.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_size.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_style.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_style.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_textcase.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_textcase.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_variant.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_variant.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_weight.py b/plotly/validators/scatterternary/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/colorbar/title/font/_weight.py rename to plotly/validators/scatterternary/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/gradient/__init__.py b/plotly/validators/scatterternary/marker/gradient/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/gradient/__init__.py rename to plotly/validators/scatterternary/marker/gradient/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_color.py b/plotly/validators/scatterternary/marker/gradient/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_color.py rename to plotly/validators/scatterternary/marker/gradient/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_colorsrc.py b/plotly/validators/scatterternary/marker/gradient/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_colorsrc.py rename to plotly/validators/scatterternary/marker/gradient/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_type.py b/plotly/validators/scatterternary/marker/gradient/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_type.py rename to plotly/validators/scatterternary/marker/gradient/_type.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_typesrc.py b/plotly/validators/scatterternary/marker/gradient/_typesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/gradient/_typesrc.py rename to plotly/validators/scatterternary/marker/gradient/_typesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/__init__.py b/plotly/validators/scatterternary/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/__init__.py rename to plotly/validators/scatterternary/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_autocolorscale.py b/plotly/validators/scatterternary/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_autocolorscale.py rename to plotly/validators/scatterternary/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_cauto.py b/plotly/validators/scatterternary/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_cauto.py rename to plotly/validators/scatterternary/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_cmax.py b/plotly/validators/scatterternary/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_cmax.py rename to plotly/validators/scatterternary/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_cmid.py b/plotly/validators/scatterternary/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_cmid.py rename to plotly/validators/scatterternary/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_cmin.py b/plotly/validators/scatterternary/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_cmin.py rename to plotly/validators/scatterternary/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_color.py b/plotly/validators/scatterternary/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_color.py rename to plotly/validators/scatterternary/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_coloraxis.py b/plotly/validators/scatterternary/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_coloraxis.py rename to plotly/validators/scatterternary/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_colorscale.py b/plotly/validators/scatterternary/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_colorscale.py rename to plotly/validators/scatterternary/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_colorsrc.py b/plotly/validators/scatterternary/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_colorsrc.py rename to plotly/validators/scatterternary/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_reversescale.py b/plotly/validators/scatterternary/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_reversescale.py rename to plotly/validators/scatterternary/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_width.py b/plotly/validators/scatterternary/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_width.py rename to plotly/validators/scatterternary/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/marker/line/_widthsrc.py b/plotly/validators/scatterternary/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/marker/line/_widthsrc.py rename to plotly/validators/scatterternary/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/__init__.py b/plotly/validators/scatterternary/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/__init__.py rename to plotly/validators/scatterternary/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/_marker.py b/plotly/validators/scatterternary/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/_marker.py rename to plotly/validators/scatterternary/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/_textfont.py b/plotly/validators/scatterternary/selected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/_textfont.py rename to plotly/validators/scatterternary/selected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/marker/__init__.py b/plotly/validators/scatterternary/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/marker/__init__.py rename to plotly/validators/scatterternary/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/marker/_color.py b/plotly/validators/scatterternary/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/marker/_color.py rename to plotly/validators/scatterternary/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/marker/_opacity.py b/plotly/validators/scatterternary/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/marker/_opacity.py rename to plotly/validators/scatterternary/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/marker/_size.py b/plotly/validators/scatterternary/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/marker/_size.py rename to plotly/validators/scatterternary/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/textfont/__init__.py b/plotly/validators/scatterternary/selected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/textfont/__init__.py rename to plotly/validators/scatterternary/selected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/selected/textfont/_color.py b/plotly/validators/scatterternary/selected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/selected/textfont/_color.py rename to plotly/validators/scatterternary/selected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/stream/__init__.py b/plotly/validators/scatterternary/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/stream/__init__.py rename to plotly/validators/scatterternary/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/stream/_maxpoints.py b/plotly/validators/scatterternary/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/stream/_maxpoints.py rename to plotly/validators/scatterternary/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/stream/_token.py b/plotly/validators/scatterternary/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/stream/_token.py rename to plotly/validators/scatterternary/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/__init__.py b/plotly/validators/scatterternary/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/__init__.py rename to plotly/validators/scatterternary/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_color.py b/plotly/validators/scatterternary/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_color.py rename to plotly/validators/scatterternary/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_colorsrc.py b/plotly/validators/scatterternary/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_colorsrc.py rename to plotly/validators/scatterternary/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_family.py b/plotly/validators/scatterternary/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_family.py rename to plotly/validators/scatterternary/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_familysrc.py b/plotly/validators/scatterternary/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_familysrc.py rename to plotly/validators/scatterternary/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_lineposition.py b/plotly/validators/scatterternary/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_lineposition.py rename to plotly/validators/scatterternary/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_linepositionsrc.py b/plotly/validators/scatterternary/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_linepositionsrc.py rename to plotly/validators/scatterternary/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_shadow.py b/plotly/validators/scatterternary/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_shadow.py rename to plotly/validators/scatterternary/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_shadowsrc.py b/plotly/validators/scatterternary/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_shadowsrc.py rename to plotly/validators/scatterternary/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_size.py b/plotly/validators/scatterternary/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_size.py rename to plotly/validators/scatterternary/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_sizesrc.py b/plotly/validators/scatterternary/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_sizesrc.py rename to plotly/validators/scatterternary/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_style.py b/plotly/validators/scatterternary/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_style.py rename to plotly/validators/scatterternary/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_stylesrc.py b/plotly/validators/scatterternary/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_stylesrc.py rename to plotly/validators/scatterternary/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_textcase.py b/plotly/validators/scatterternary/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_textcase.py rename to plotly/validators/scatterternary/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_textcasesrc.py b/plotly/validators/scatterternary/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_textcasesrc.py rename to plotly/validators/scatterternary/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_variant.py b/plotly/validators/scatterternary/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_variant.py rename to plotly/validators/scatterternary/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_variantsrc.py b/plotly/validators/scatterternary/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_variantsrc.py rename to plotly/validators/scatterternary/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_weight.py b/plotly/validators/scatterternary/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_weight.py rename to plotly/validators/scatterternary/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/textfont/_weightsrc.py b/plotly/validators/scatterternary/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/textfont/_weightsrc.py rename to plotly/validators/scatterternary/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/__init__.py b/plotly/validators/scatterternary/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/__init__.py rename to plotly/validators/scatterternary/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/_marker.py b/plotly/validators/scatterternary/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/_marker.py rename to plotly/validators/scatterternary/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/_textfont.py b/plotly/validators/scatterternary/unselected/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/_textfont.py rename to plotly/validators/scatterternary/unselected/_textfont.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/marker/__init__.py b/plotly/validators/scatterternary/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/marker/__init__.py rename to plotly/validators/scatterternary/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/marker/_color.py b/plotly/validators/scatterternary/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/marker/_color.py rename to plotly/validators/scatterternary/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/marker/_opacity.py b/plotly/validators/scatterternary/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/marker/_opacity.py rename to plotly/validators/scatterternary/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/marker/_size.py b/plotly/validators/scatterternary/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/marker/_size.py rename to plotly/validators/scatterternary/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/textfont/__init__.py b/plotly/validators/scatterternary/unselected/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/textfont/__init__.py rename to plotly/validators/scatterternary/unselected/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/scatterternary/unselected/textfont/_color.py b/plotly/validators/scatterternary/unselected/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/scatterternary/unselected/textfont/_color.py rename to plotly/validators/scatterternary/unselected/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/__init__.py b/plotly/validators/splom/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/__init__.py rename to plotly/validators/splom/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/_customdata.py b/plotly/validators/splom/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_customdata.py rename to plotly/validators/splom/_customdata.py diff --git a/packages/python/plotly/plotly/validators/splom/_customdatasrc.py b/plotly/validators/splom/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_customdatasrc.py rename to plotly/validators/splom/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_diagonal.py b/plotly/validators/splom/_diagonal.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_diagonal.py rename to plotly/validators/splom/_diagonal.py diff --git a/packages/python/plotly/plotly/validators/splom/_dimensiondefaults.py b/plotly/validators/splom/_dimensiondefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_dimensiondefaults.py rename to plotly/validators/splom/_dimensiondefaults.py diff --git a/packages/python/plotly/plotly/validators/splom/_dimensions.py b/plotly/validators/splom/_dimensions.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_dimensions.py rename to plotly/validators/splom/_dimensions.py diff --git a/packages/python/plotly/plotly/validators/splom/_hoverinfo.py b/plotly/validators/splom/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hoverinfo.py rename to plotly/validators/splom/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/splom/_hoverinfosrc.py b/plotly/validators/splom/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hoverinfosrc.py rename to plotly/validators/splom/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_hoverlabel.py b/plotly/validators/splom/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hoverlabel.py rename to plotly/validators/splom/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/splom/_hovertemplate.py b/plotly/validators/splom/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hovertemplate.py rename to plotly/validators/splom/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/splom/_hovertemplatesrc.py b/plotly/validators/splom/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hovertemplatesrc.py rename to plotly/validators/splom/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_hovertext.py b/plotly/validators/splom/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hovertext.py rename to plotly/validators/splom/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/splom/_hovertextsrc.py b/plotly/validators/splom/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_hovertextsrc.py rename to plotly/validators/splom/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_ids.py b/plotly/validators/splom/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_ids.py rename to plotly/validators/splom/_ids.py diff --git a/packages/python/plotly/plotly/validators/splom/_idssrc.py b/plotly/validators/splom/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_idssrc.py rename to plotly/validators/splom/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_legend.py b/plotly/validators/splom/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_legend.py rename to plotly/validators/splom/_legend.py diff --git a/packages/python/plotly/plotly/validators/splom/_legendgroup.py b/plotly/validators/splom/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_legendgroup.py rename to plotly/validators/splom/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/splom/_legendgrouptitle.py b/plotly/validators/splom/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_legendgrouptitle.py rename to plotly/validators/splom/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/splom/_legendrank.py b/plotly/validators/splom/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_legendrank.py rename to plotly/validators/splom/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/splom/_legendwidth.py b/plotly/validators/splom/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_legendwidth.py rename to plotly/validators/splom/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/splom/_marker.py b/plotly/validators/splom/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_marker.py rename to plotly/validators/splom/_marker.py diff --git a/packages/python/plotly/plotly/validators/splom/_meta.py b/plotly/validators/splom/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_meta.py rename to plotly/validators/splom/_meta.py diff --git a/packages/python/plotly/plotly/validators/splom/_metasrc.py b/plotly/validators/splom/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_metasrc.py rename to plotly/validators/splom/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_name.py b/plotly/validators/splom/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_name.py rename to plotly/validators/splom/_name.py diff --git a/packages/python/plotly/plotly/validators/splom/_opacity.py b/plotly/validators/splom/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_opacity.py rename to plotly/validators/splom/_opacity.py diff --git a/packages/python/plotly/plotly/validators/splom/_selected.py b/plotly/validators/splom/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_selected.py rename to plotly/validators/splom/_selected.py diff --git a/packages/python/plotly/plotly/validators/splom/_selectedpoints.py b/plotly/validators/splom/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_selectedpoints.py rename to plotly/validators/splom/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/splom/_showlegend.py b/plotly/validators/splom/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_showlegend.py rename to plotly/validators/splom/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/splom/_showlowerhalf.py b/plotly/validators/splom/_showlowerhalf.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_showlowerhalf.py rename to plotly/validators/splom/_showlowerhalf.py diff --git a/packages/python/plotly/plotly/validators/splom/_showupperhalf.py b/plotly/validators/splom/_showupperhalf.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_showupperhalf.py rename to plotly/validators/splom/_showupperhalf.py diff --git a/packages/python/plotly/plotly/validators/splom/_stream.py b/plotly/validators/splom/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_stream.py rename to plotly/validators/splom/_stream.py diff --git a/packages/python/plotly/plotly/validators/splom/_text.py b/plotly/validators/splom/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_text.py rename to plotly/validators/splom/_text.py diff --git a/packages/python/plotly/plotly/validators/splom/_textsrc.py b/plotly/validators/splom/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_textsrc.py rename to plotly/validators/splom/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/_uid.py b/plotly/validators/splom/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_uid.py rename to plotly/validators/splom/_uid.py diff --git a/packages/python/plotly/plotly/validators/splom/_uirevision.py b/plotly/validators/splom/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_uirevision.py rename to plotly/validators/splom/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/splom/_unselected.py b/plotly/validators/splom/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_unselected.py rename to plotly/validators/splom/_unselected.py diff --git a/packages/python/plotly/plotly/validators/splom/_visible.py b/plotly/validators/splom/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_visible.py rename to plotly/validators/splom/_visible.py diff --git a/packages/python/plotly/plotly/validators/splom/_xaxes.py b/plotly/validators/splom/_xaxes.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_xaxes.py rename to plotly/validators/splom/_xaxes.py diff --git a/packages/python/plotly/plotly/validators/splom/_xhoverformat.py b/plotly/validators/splom/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_xhoverformat.py rename to plotly/validators/splom/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/splom/_yaxes.py b/plotly/validators/splom/_yaxes.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_yaxes.py rename to plotly/validators/splom/_yaxes.py diff --git a/packages/python/plotly/plotly/validators/splom/_yhoverformat.py b/plotly/validators/splom/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/_yhoverformat.py rename to plotly/validators/splom/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/splom/diagonal/__init__.py b/plotly/validators/splom/diagonal/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/diagonal/__init__.py rename to plotly/validators/splom/diagonal/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/diagonal/_visible.py b/plotly/validators/splom/diagonal/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/diagonal/_visible.py rename to plotly/validators/splom/diagonal/_visible.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/__init__.py b/plotly/validators/splom/dimension/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/__init__.py rename to plotly/validators/splom/dimension/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_axis.py b/plotly/validators/splom/dimension/_axis.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_axis.py rename to plotly/validators/splom/dimension/_axis.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_label.py b/plotly/validators/splom/dimension/_label.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_label.py rename to plotly/validators/splom/dimension/_label.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_name.py b/plotly/validators/splom/dimension/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_name.py rename to plotly/validators/splom/dimension/_name.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_templateitemname.py b/plotly/validators/splom/dimension/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_templateitemname.py rename to plotly/validators/splom/dimension/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_values.py b/plotly/validators/splom/dimension/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_values.py rename to plotly/validators/splom/dimension/_values.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_valuessrc.py b/plotly/validators/splom/dimension/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_valuessrc.py rename to plotly/validators/splom/dimension/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/_visible.py b/plotly/validators/splom/dimension/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/_visible.py rename to plotly/validators/splom/dimension/_visible.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/axis/__init__.py b/plotly/validators/splom/dimension/axis/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/axis/__init__.py rename to plotly/validators/splom/dimension/axis/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/axis/_matches.py b/plotly/validators/splom/dimension/axis/_matches.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/axis/_matches.py rename to plotly/validators/splom/dimension/axis/_matches.py diff --git a/packages/python/plotly/plotly/validators/splom/dimension/axis/_type.py b/plotly/validators/splom/dimension/axis/_type.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/dimension/axis/_type.py rename to plotly/validators/splom/dimension/axis/_type.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/__init__.py b/plotly/validators/splom/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/__init__.py rename to plotly/validators/splom/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_align.py b/plotly/validators/splom/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_align.py rename to plotly/validators/splom/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_alignsrc.py b/plotly/validators/splom/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_alignsrc.py rename to plotly/validators/splom/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_bgcolor.py b/plotly/validators/splom/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_bgcolor.py rename to plotly/validators/splom/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_bgcolorsrc.py b/plotly/validators/splom/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_bgcolorsrc.py rename to plotly/validators/splom/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_bordercolor.py b/plotly/validators/splom/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_bordercolor.py rename to plotly/validators/splom/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_bordercolorsrc.py b/plotly/validators/splom/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_bordercolorsrc.py rename to plotly/validators/splom/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_font.py b/plotly/validators/splom/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_font.py rename to plotly/validators/splom/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_namelength.py b/plotly/validators/splom/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_namelength.py rename to plotly/validators/splom/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/_namelengthsrc.py b/plotly/validators/splom/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/_namelengthsrc.py rename to plotly/validators/splom/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/__init__.py b/plotly/validators/splom/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/__init__.py rename to plotly/validators/splom/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_color.py b/plotly/validators/splom/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_color.py rename to plotly/validators/splom/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_colorsrc.py b/plotly/validators/splom/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_colorsrc.py rename to plotly/validators/splom/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_family.py b/plotly/validators/splom/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_family.py rename to plotly/validators/splom/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_familysrc.py b/plotly/validators/splom/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_familysrc.py rename to plotly/validators/splom/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_lineposition.py b/plotly/validators/splom/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_lineposition.py rename to plotly/validators/splom/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_linepositionsrc.py b/plotly/validators/splom/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/splom/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_shadow.py b/plotly/validators/splom/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_shadow.py rename to plotly/validators/splom/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_shadowsrc.py b/plotly/validators/splom/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_shadowsrc.py rename to plotly/validators/splom/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_size.py b/plotly/validators/splom/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_size.py rename to plotly/validators/splom/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_sizesrc.py b/plotly/validators/splom/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_sizesrc.py rename to plotly/validators/splom/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_style.py b/plotly/validators/splom/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_style.py rename to plotly/validators/splom/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_stylesrc.py b/plotly/validators/splom/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_stylesrc.py rename to plotly/validators/splom/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_textcase.py b/plotly/validators/splom/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_textcase.py rename to plotly/validators/splom/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_textcasesrc.py b/plotly/validators/splom/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_textcasesrc.py rename to plotly/validators/splom/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_variant.py b/plotly/validators/splom/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_variant.py rename to plotly/validators/splom/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_variantsrc.py b/plotly/validators/splom/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_variantsrc.py rename to plotly/validators/splom/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_weight.py b/plotly/validators/splom/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_weight.py rename to plotly/validators/splom/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/splom/hoverlabel/font/_weightsrc.py b/plotly/validators/splom/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/hoverlabel/font/_weightsrc.py rename to plotly/validators/splom/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/__init__.py b/plotly/validators/splom/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/__init__.py rename to plotly/validators/splom/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/_font.py b/plotly/validators/splom/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/_font.py rename to plotly/validators/splom/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/_text.py b/plotly/validators/splom/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/_text.py rename to plotly/validators/splom/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/__init__.py b/plotly/validators/splom/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/__init__.py rename to plotly/validators/splom/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_color.py b/plotly/validators/splom/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_color.py rename to plotly/validators/splom/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_family.py b/plotly/validators/splom/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_family.py rename to plotly/validators/splom/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_lineposition.py b/plotly/validators/splom/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_lineposition.py rename to plotly/validators/splom/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_shadow.py b/plotly/validators/splom/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_shadow.py rename to plotly/validators/splom/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_size.py b/plotly/validators/splom/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_size.py rename to plotly/validators/splom/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_style.py b/plotly/validators/splom/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_style.py rename to plotly/validators/splom/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_textcase.py b/plotly/validators/splom/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_textcase.py rename to plotly/validators/splom/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_variant.py b/plotly/validators/splom/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_variant.py rename to plotly/validators/splom/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_weight.py b/plotly/validators/splom/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/legendgrouptitle/font/_weight.py rename to plotly/validators/splom/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/__init__.py b/plotly/validators/splom/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/__init__.py rename to plotly/validators/splom/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_angle.py b/plotly/validators/splom/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_angle.py rename to plotly/validators/splom/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_anglesrc.py b/plotly/validators/splom/marker/_anglesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_anglesrc.py rename to plotly/validators/splom/marker/_anglesrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_autocolorscale.py b/plotly/validators/splom/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_autocolorscale.py rename to plotly/validators/splom/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_cauto.py b/plotly/validators/splom/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_cauto.py rename to plotly/validators/splom/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_cmax.py b/plotly/validators/splom/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_cmax.py rename to plotly/validators/splom/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_cmid.py b/plotly/validators/splom/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_cmid.py rename to plotly/validators/splom/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_cmin.py b/plotly/validators/splom/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_cmin.py rename to plotly/validators/splom/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_color.py b/plotly/validators/splom/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_color.py rename to plotly/validators/splom/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_coloraxis.py b/plotly/validators/splom/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_coloraxis.py rename to plotly/validators/splom/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_colorbar.py b/plotly/validators/splom/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_colorbar.py rename to plotly/validators/splom/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_colorscale.py b/plotly/validators/splom/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_colorscale.py rename to plotly/validators/splom/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_colorsrc.py b/plotly/validators/splom/marker/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_colorsrc.py rename to plotly/validators/splom/marker/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_line.py b/plotly/validators/splom/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_line.py rename to plotly/validators/splom/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_opacity.py b/plotly/validators/splom/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_opacity.py rename to plotly/validators/splom/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_opacitysrc.py b/plotly/validators/splom/marker/_opacitysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_opacitysrc.py rename to plotly/validators/splom/marker/_opacitysrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_reversescale.py b/plotly/validators/splom/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_reversescale.py rename to plotly/validators/splom/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_showscale.py b/plotly/validators/splom/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_showscale.py rename to plotly/validators/splom/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_size.py b/plotly/validators/splom/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_size.py rename to plotly/validators/splom/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_sizemin.py b/plotly/validators/splom/marker/_sizemin.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_sizemin.py rename to plotly/validators/splom/marker/_sizemin.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_sizemode.py b/plotly/validators/splom/marker/_sizemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_sizemode.py rename to plotly/validators/splom/marker/_sizemode.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_sizeref.py b/plotly/validators/splom/marker/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_sizeref.py rename to plotly/validators/splom/marker/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_sizesrc.py b/plotly/validators/splom/marker/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_sizesrc.py rename to plotly/validators/splom/marker/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_symbol.py b/plotly/validators/splom/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_symbol.py rename to plotly/validators/splom/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/_symbolsrc.py b/plotly/validators/splom/marker/_symbolsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/_symbolsrc.py rename to plotly/validators/splom/marker/_symbolsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/__init__.py b/plotly/validators/splom/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/__init__.py rename to plotly/validators/splom/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_bgcolor.py b/plotly/validators/splom/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_bgcolor.py rename to plotly/validators/splom/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_bordercolor.py b/plotly/validators/splom/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_bordercolor.py rename to plotly/validators/splom/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_borderwidth.py b/plotly/validators/splom/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_borderwidth.py rename to plotly/validators/splom/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_dtick.py b/plotly/validators/splom/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_dtick.py rename to plotly/validators/splom/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_exponentformat.py b/plotly/validators/splom/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_exponentformat.py rename to plotly/validators/splom/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_labelalias.py b/plotly/validators/splom/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_labelalias.py rename to plotly/validators/splom/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_len.py b/plotly/validators/splom/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_len.py rename to plotly/validators/splom/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_lenmode.py b/plotly/validators/splom/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_lenmode.py rename to plotly/validators/splom/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_minexponent.py b/plotly/validators/splom/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_minexponent.py rename to plotly/validators/splom/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_nticks.py b/plotly/validators/splom/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_nticks.py rename to plotly/validators/splom/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_orientation.py b/plotly/validators/splom/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_orientation.py rename to plotly/validators/splom/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_outlinecolor.py b/plotly/validators/splom/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_outlinecolor.py rename to plotly/validators/splom/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_outlinewidth.py b/plotly/validators/splom/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_outlinewidth.py rename to plotly/validators/splom/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_separatethousands.py b/plotly/validators/splom/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_separatethousands.py rename to plotly/validators/splom/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_showexponent.py b/plotly/validators/splom/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_showexponent.py rename to plotly/validators/splom/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_showticklabels.py b/plotly/validators/splom/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_showticklabels.py rename to plotly/validators/splom/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_showtickprefix.py b/plotly/validators/splom/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_showtickprefix.py rename to plotly/validators/splom/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_showticksuffix.py b/plotly/validators/splom/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_showticksuffix.py rename to plotly/validators/splom/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_thickness.py b/plotly/validators/splom/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_thickness.py rename to plotly/validators/splom/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_thicknessmode.py b/plotly/validators/splom/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_thicknessmode.py rename to plotly/validators/splom/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tick0.py b/plotly/validators/splom/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tick0.py rename to plotly/validators/splom/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickangle.py b/plotly/validators/splom/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickangle.py rename to plotly/validators/splom/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickcolor.py b/plotly/validators/splom/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickcolor.py rename to plotly/validators/splom/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickfont.py b/plotly/validators/splom/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickfont.py rename to plotly/validators/splom/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickformat.py b/plotly/validators/splom/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickformat.py rename to plotly/validators/splom/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/splom/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickformatstops.py b/plotly/validators/splom/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickformatstops.py rename to plotly/validators/splom/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/splom/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/splom/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklabelposition.py b/plotly/validators/splom/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklabelposition.py rename to plotly/validators/splom/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklabelstep.py b/plotly/validators/splom/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklabelstep.py rename to plotly/validators/splom/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklen.py b/plotly/validators/splom/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticklen.py rename to plotly/validators/splom/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickmode.py b/plotly/validators/splom/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickmode.py rename to plotly/validators/splom/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickprefix.py b/plotly/validators/splom/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickprefix.py rename to plotly/validators/splom/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticks.py b/plotly/validators/splom/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticks.py rename to plotly/validators/splom/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticksuffix.py b/plotly/validators/splom/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticksuffix.py rename to plotly/validators/splom/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticktext.py b/plotly/validators/splom/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticktext.py rename to plotly/validators/splom/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticktextsrc.py b/plotly/validators/splom/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ticktextsrc.py rename to plotly/validators/splom/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickvals.py b/plotly/validators/splom/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickvals.py rename to plotly/validators/splom/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickvalssrc.py b/plotly/validators/splom/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickvalssrc.py rename to plotly/validators/splom/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickwidth.py b/plotly/validators/splom/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_tickwidth.py rename to plotly/validators/splom/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_title.py b/plotly/validators/splom/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_title.py rename to plotly/validators/splom/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_x.py b/plotly/validators/splom/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_x.py rename to plotly/validators/splom/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_xanchor.py b/plotly/validators/splom/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_xanchor.py rename to plotly/validators/splom/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_xpad.py b/plotly/validators/splom/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_xpad.py rename to plotly/validators/splom/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_xref.py b/plotly/validators/splom/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_xref.py rename to plotly/validators/splom/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_y.py b/plotly/validators/splom/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_y.py rename to plotly/validators/splom/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_yanchor.py b/plotly/validators/splom/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_yanchor.py rename to plotly/validators/splom/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_ypad.py b/plotly/validators/splom/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_ypad.py rename to plotly/validators/splom/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/_yref.py b/plotly/validators/splom/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/_yref.py rename to plotly/validators/splom/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/__init__.py b/plotly/validators/splom/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/__init__.py rename to plotly/validators/splom/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_color.py b/plotly/validators/splom/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_color.py rename to plotly/validators/splom/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_family.py b/plotly/validators/splom/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_family.py rename to plotly/validators/splom/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/splom/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/splom/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_shadow.py b/plotly/validators/splom/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/splom/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_size.py b/plotly/validators/splom/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_size.py rename to plotly/validators/splom/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_style.py b/plotly/validators/splom/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_style.py rename to plotly/validators/splom/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_textcase.py b/plotly/validators/splom/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/splom/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_variant.py b/plotly/validators/splom/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_variant.py rename to plotly/validators/splom/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_weight.py b/plotly/validators/splom/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickfont/_weight.py rename to plotly/validators/splom/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/splom/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/splom/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/splom/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/splom/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/splom/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/splom/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_name.py b/plotly/validators/splom/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/splom/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/splom/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/splom/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_value.py b/plotly/validators/splom/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/splom/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/__init__.py b/plotly/validators/splom/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/__init__.py rename to plotly/validators/splom/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/_font.py b/plotly/validators/splom/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/_font.py rename to plotly/validators/splom/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/_side.py b/plotly/validators/splom/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/_side.py rename to plotly/validators/splom/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/_text.py b/plotly/validators/splom/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/_text.py rename to plotly/validators/splom/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/__init__.py b/plotly/validators/splom/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/__init__.py rename to plotly/validators/splom/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_color.py b/plotly/validators/splom/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_color.py rename to plotly/validators/splom/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_family.py b/plotly/validators/splom/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_family.py rename to plotly/validators/splom/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_lineposition.py b/plotly/validators/splom/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/splom/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_shadow.py b/plotly/validators/splom/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_shadow.py rename to plotly/validators/splom/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_size.py b/plotly/validators/splom/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_size.py rename to plotly/validators/splom/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_style.py b/plotly/validators/splom/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_style.py rename to plotly/validators/splom/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_textcase.py b/plotly/validators/splom/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_textcase.py rename to plotly/validators/splom/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_variant.py b/plotly/validators/splom/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_variant.py rename to plotly/validators/splom/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_weight.py b/plotly/validators/splom/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/colorbar/title/font/_weight.py rename to plotly/validators/splom/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/__init__.py b/plotly/validators/splom/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/__init__.py rename to plotly/validators/splom/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_autocolorscale.py b/plotly/validators/splom/marker/line/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_autocolorscale.py rename to plotly/validators/splom/marker/line/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_cauto.py b/plotly/validators/splom/marker/line/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_cauto.py rename to plotly/validators/splom/marker/line/_cauto.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_cmax.py b/plotly/validators/splom/marker/line/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_cmax.py rename to plotly/validators/splom/marker/line/_cmax.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_cmid.py b/plotly/validators/splom/marker/line/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_cmid.py rename to plotly/validators/splom/marker/line/_cmid.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_cmin.py b/plotly/validators/splom/marker/line/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_cmin.py rename to plotly/validators/splom/marker/line/_cmin.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_color.py b/plotly/validators/splom/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_color.py rename to plotly/validators/splom/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_coloraxis.py b/plotly/validators/splom/marker/line/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_coloraxis.py rename to plotly/validators/splom/marker/line/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_colorscale.py b/plotly/validators/splom/marker/line/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_colorscale.py rename to plotly/validators/splom/marker/line/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_colorsrc.py b/plotly/validators/splom/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_colorsrc.py rename to plotly/validators/splom/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_reversescale.py b/plotly/validators/splom/marker/line/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_reversescale.py rename to plotly/validators/splom/marker/line/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_width.py b/plotly/validators/splom/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_width.py rename to plotly/validators/splom/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/splom/marker/line/_widthsrc.py b/plotly/validators/splom/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/marker/line/_widthsrc.py rename to plotly/validators/splom/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/splom/selected/__init__.py b/plotly/validators/splom/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/selected/__init__.py rename to plotly/validators/splom/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/selected/_marker.py b/plotly/validators/splom/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/selected/_marker.py rename to plotly/validators/splom/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/splom/selected/marker/__init__.py b/plotly/validators/splom/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/selected/marker/__init__.py rename to plotly/validators/splom/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/selected/marker/_color.py b/plotly/validators/splom/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/selected/marker/_color.py rename to plotly/validators/splom/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/selected/marker/_opacity.py b/plotly/validators/splom/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/selected/marker/_opacity.py rename to plotly/validators/splom/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/splom/selected/marker/_size.py b/plotly/validators/splom/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/selected/marker/_size.py rename to plotly/validators/splom/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/splom/stream/__init__.py b/plotly/validators/splom/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/stream/__init__.py rename to plotly/validators/splom/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/stream/_maxpoints.py b/plotly/validators/splom/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/stream/_maxpoints.py rename to plotly/validators/splom/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/splom/stream/_token.py b/plotly/validators/splom/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/stream/_token.py rename to plotly/validators/splom/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/splom/unselected/__init__.py b/plotly/validators/splom/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/unselected/__init__.py rename to plotly/validators/splom/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/unselected/_marker.py b/plotly/validators/splom/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/unselected/_marker.py rename to plotly/validators/splom/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/splom/unselected/marker/__init__.py b/plotly/validators/splom/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/unselected/marker/__init__.py rename to plotly/validators/splom/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/splom/unselected/marker/_color.py b/plotly/validators/splom/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/unselected/marker/_color.py rename to plotly/validators/splom/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/splom/unselected/marker/_opacity.py b/plotly/validators/splom/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/unselected/marker/_opacity.py rename to plotly/validators/splom/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/splom/unselected/marker/_size.py b/plotly/validators/splom/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/splom/unselected/marker/_size.py rename to plotly/validators/splom/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/streamtube/__init__.py b/plotly/validators/streamtube/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/__init__.py rename to plotly/validators/streamtube/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_autocolorscale.py b/plotly/validators/streamtube/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_autocolorscale.py rename to plotly/validators/streamtube/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_cauto.py b/plotly/validators/streamtube/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_cauto.py rename to plotly/validators/streamtube/_cauto.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_cmax.py b/plotly/validators/streamtube/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_cmax.py rename to plotly/validators/streamtube/_cmax.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_cmid.py b/plotly/validators/streamtube/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_cmid.py rename to plotly/validators/streamtube/_cmid.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_cmin.py b/plotly/validators/streamtube/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_cmin.py rename to plotly/validators/streamtube/_cmin.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_coloraxis.py b/plotly/validators/streamtube/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_coloraxis.py rename to plotly/validators/streamtube/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_colorbar.py b/plotly/validators/streamtube/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_colorbar.py rename to plotly/validators/streamtube/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_colorscale.py b/plotly/validators/streamtube/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_colorscale.py rename to plotly/validators/streamtube/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_customdata.py b/plotly/validators/streamtube/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_customdata.py rename to plotly/validators/streamtube/_customdata.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_customdatasrc.py b/plotly/validators/streamtube/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_customdatasrc.py rename to plotly/validators/streamtube/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_hoverinfo.py b/plotly/validators/streamtube/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_hoverinfo.py rename to plotly/validators/streamtube/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_hoverinfosrc.py b/plotly/validators/streamtube/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_hoverinfosrc.py rename to plotly/validators/streamtube/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_hoverlabel.py b/plotly/validators/streamtube/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_hoverlabel.py rename to plotly/validators/streamtube/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_hovertemplate.py b/plotly/validators/streamtube/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_hovertemplate.py rename to plotly/validators/streamtube/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_hovertemplatesrc.py b/plotly/validators/streamtube/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_hovertemplatesrc.py rename to plotly/validators/streamtube/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_hovertext.py b/plotly/validators/streamtube/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_hovertext.py rename to plotly/validators/streamtube/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_ids.py b/plotly/validators/streamtube/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_ids.py rename to plotly/validators/streamtube/_ids.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_idssrc.py b/plotly/validators/streamtube/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_idssrc.py rename to plotly/validators/streamtube/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_legend.py b/plotly/validators/streamtube/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_legend.py rename to plotly/validators/streamtube/_legend.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_legendgroup.py b/plotly/validators/streamtube/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_legendgroup.py rename to plotly/validators/streamtube/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_legendgrouptitle.py b/plotly/validators/streamtube/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_legendgrouptitle.py rename to plotly/validators/streamtube/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_legendrank.py b/plotly/validators/streamtube/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_legendrank.py rename to plotly/validators/streamtube/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_legendwidth.py b/plotly/validators/streamtube/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_legendwidth.py rename to plotly/validators/streamtube/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_lighting.py b/plotly/validators/streamtube/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_lighting.py rename to plotly/validators/streamtube/_lighting.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_lightposition.py b/plotly/validators/streamtube/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_lightposition.py rename to plotly/validators/streamtube/_lightposition.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_maxdisplayed.py b/plotly/validators/streamtube/_maxdisplayed.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_maxdisplayed.py rename to plotly/validators/streamtube/_maxdisplayed.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_meta.py b/plotly/validators/streamtube/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_meta.py rename to plotly/validators/streamtube/_meta.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_metasrc.py b/plotly/validators/streamtube/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_metasrc.py rename to plotly/validators/streamtube/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_name.py b/plotly/validators/streamtube/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_name.py rename to plotly/validators/streamtube/_name.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_opacity.py b/plotly/validators/streamtube/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_opacity.py rename to plotly/validators/streamtube/_opacity.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_reversescale.py b/plotly/validators/streamtube/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_reversescale.py rename to plotly/validators/streamtube/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_scene.py b/plotly/validators/streamtube/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_scene.py rename to plotly/validators/streamtube/_scene.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_showlegend.py b/plotly/validators/streamtube/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_showlegend.py rename to plotly/validators/streamtube/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_showscale.py b/plotly/validators/streamtube/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_showscale.py rename to plotly/validators/streamtube/_showscale.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_sizeref.py b/plotly/validators/streamtube/_sizeref.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_sizeref.py rename to plotly/validators/streamtube/_sizeref.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_starts.py b/plotly/validators/streamtube/_starts.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_starts.py rename to plotly/validators/streamtube/_starts.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_stream.py b/plotly/validators/streamtube/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_stream.py rename to plotly/validators/streamtube/_stream.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_text.py b/plotly/validators/streamtube/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_text.py rename to plotly/validators/streamtube/_text.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_u.py b/plotly/validators/streamtube/_u.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_u.py rename to plotly/validators/streamtube/_u.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_uhoverformat.py b/plotly/validators/streamtube/_uhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_uhoverformat.py rename to plotly/validators/streamtube/_uhoverformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_uid.py b/plotly/validators/streamtube/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_uid.py rename to plotly/validators/streamtube/_uid.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_uirevision.py b/plotly/validators/streamtube/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_uirevision.py rename to plotly/validators/streamtube/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_usrc.py b/plotly/validators/streamtube/_usrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_usrc.py rename to plotly/validators/streamtube/_usrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_v.py b/plotly/validators/streamtube/_v.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_v.py rename to plotly/validators/streamtube/_v.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_vhoverformat.py b/plotly/validators/streamtube/_vhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_vhoverformat.py rename to plotly/validators/streamtube/_vhoverformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_visible.py b/plotly/validators/streamtube/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_visible.py rename to plotly/validators/streamtube/_visible.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_vsrc.py b/plotly/validators/streamtube/_vsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_vsrc.py rename to plotly/validators/streamtube/_vsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_w.py b/plotly/validators/streamtube/_w.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_w.py rename to plotly/validators/streamtube/_w.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_whoverformat.py b/plotly/validators/streamtube/_whoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_whoverformat.py rename to plotly/validators/streamtube/_whoverformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_wsrc.py b/plotly/validators/streamtube/_wsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_wsrc.py rename to plotly/validators/streamtube/_wsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_x.py b/plotly/validators/streamtube/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_x.py rename to plotly/validators/streamtube/_x.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_xhoverformat.py b/plotly/validators/streamtube/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_xhoverformat.py rename to plotly/validators/streamtube/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_xsrc.py b/plotly/validators/streamtube/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_xsrc.py rename to plotly/validators/streamtube/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_y.py b/plotly/validators/streamtube/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_y.py rename to plotly/validators/streamtube/_y.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_yhoverformat.py b/plotly/validators/streamtube/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_yhoverformat.py rename to plotly/validators/streamtube/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_ysrc.py b/plotly/validators/streamtube/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_ysrc.py rename to plotly/validators/streamtube/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_z.py b/plotly/validators/streamtube/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_z.py rename to plotly/validators/streamtube/_z.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_zhoverformat.py b/plotly/validators/streamtube/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_zhoverformat.py rename to plotly/validators/streamtube/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/_zsrc.py b/plotly/validators/streamtube/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/_zsrc.py rename to plotly/validators/streamtube/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/__init__.py b/plotly/validators/streamtube/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/__init__.py rename to plotly/validators/streamtube/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_bgcolor.py b/plotly/validators/streamtube/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_bgcolor.py rename to plotly/validators/streamtube/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_bordercolor.py b/plotly/validators/streamtube/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_bordercolor.py rename to plotly/validators/streamtube/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_borderwidth.py b/plotly/validators/streamtube/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_borderwidth.py rename to plotly/validators/streamtube/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_dtick.py b/plotly/validators/streamtube/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_dtick.py rename to plotly/validators/streamtube/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_exponentformat.py b/plotly/validators/streamtube/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_exponentformat.py rename to plotly/validators/streamtube/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_labelalias.py b/plotly/validators/streamtube/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_labelalias.py rename to plotly/validators/streamtube/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_len.py b/plotly/validators/streamtube/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_len.py rename to plotly/validators/streamtube/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_lenmode.py b/plotly/validators/streamtube/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_lenmode.py rename to plotly/validators/streamtube/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_minexponent.py b/plotly/validators/streamtube/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_minexponent.py rename to plotly/validators/streamtube/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_nticks.py b/plotly/validators/streamtube/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_nticks.py rename to plotly/validators/streamtube/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_orientation.py b/plotly/validators/streamtube/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_orientation.py rename to plotly/validators/streamtube/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_outlinecolor.py b/plotly/validators/streamtube/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_outlinecolor.py rename to plotly/validators/streamtube/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_outlinewidth.py b/plotly/validators/streamtube/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_outlinewidth.py rename to plotly/validators/streamtube/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_separatethousands.py b/plotly/validators/streamtube/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_separatethousands.py rename to plotly/validators/streamtube/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_showexponent.py b/plotly/validators/streamtube/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_showexponent.py rename to plotly/validators/streamtube/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_showticklabels.py b/plotly/validators/streamtube/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_showticklabels.py rename to plotly/validators/streamtube/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_showtickprefix.py b/plotly/validators/streamtube/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_showtickprefix.py rename to plotly/validators/streamtube/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_showticksuffix.py b/plotly/validators/streamtube/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_showticksuffix.py rename to plotly/validators/streamtube/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_thickness.py b/plotly/validators/streamtube/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_thickness.py rename to plotly/validators/streamtube/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_thicknessmode.py b/plotly/validators/streamtube/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_thicknessmode.py rename to plotly/validators/streamtube/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tick0.py b/plotly/validators/streamtube/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tick0.py rename to plotly/validators/streamtube/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickangle.py b/plotly/validators/streamtube/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickangle.py rename to plotly/validators/streamtube/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickcolor.py b/plotly/validators/streamtube/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickcolor.py rename to plotly/validators/streamtube/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickfont.py b/plotly/validators/streamtube/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickfont.py rename to plotly/validators/streamtube/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickformat.py b/plotly/validators/streamtube/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickformat.py rename to plotly/validators/streamtube/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py b/plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py rename to plotly/validators/streamtube/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickformatstops.py b/plotly/validators/streamtube/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickformatstops.py rename to plotly/validators/streamtube/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklabeloverflow.py b/plotly/validators/streamtube/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklabeloverflow.py rename to plotly/validators/streamtube/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklabelposition.py b/plotly/validators/streamtube/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklabelposition.py rename to plotly/validators/streamtube/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklabelstep.py b/plotly/validators/streamtube/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklabelstep.py rename to plotly/validators/streamtube/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklen.py b/plotly/validators/streamtube/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticklen.py rename to plotly/validators/streamtube/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickmode.py b/plotly/validators/streamtube/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickmode.py rename to plotly/validators/streamtube/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickprefix.py b/plotly/validators/streamtube/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickprefix.py rename to plotly/validators/streamtube/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticks.py b/plotly/validators/streamtube/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticks.py rename to plotly/validators/streamtube/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticksuffix.py b/plotly/validators/streamtube/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticksuffix.py rename to plotly/validators/streamtube/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticktext.py b/plotly/validators/streamtube/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticktext.py rename to plotly/validators/streamtube/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ticktextsrc.py b/plotly/validators/streamtube/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ticktextsrc.py rename to plotly/validators/streamtube/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickvals.py b/plotly/validators/streamtube/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickvals.py rename to plotly/validators/streamtube/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickvalssrc.py b/plotly/validators/streamtube/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickvalssrc.py rename to plotly/validators/streamtube/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_tickwidth.py b/plotly/validators/streamtube/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_tickwidth.py rename to plotly/validators/streamtube/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_title.py b/plotly/validators/streamtube/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_title.py rename to plotly/validators/streamtube/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_x.py b/plotly/validators/streamtube/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_x.py rename to plotly/validators/streamtube/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_xanchor.py b/plotly/validators/streamtube/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_xanchor.py rename to plotly/validators/streamtube/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_xpad.py b/plotly/validators/streamtube/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_xpad.py rename to plotly/validators/streamtube/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_xref.py b/plotly/validators/streamtube/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_xref.py rename to plotly/validators/streamtube/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_y.py b/plotly/validators/streamtube/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_y.py rename to plotly/validators/streamtube/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_yanchor.py b/plotly/validators/streamtube/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_yanchor.py rename to plotly/validators/streamtube/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_ypad.py b/plotly/validators/streamtube/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_ypad.py rename to plotly/validators/streamtube/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/_yref.py b/plotly/validators/streamtube/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/_yref.py rename to plotly/validators/streamtube/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/__init__.py b/plotly/validators/streamtube/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/__init__.py rename to plotly/validators/streamtube/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_color.py b/plotly/validators/streamtube/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_color.py rename to plotly/validators/streamtube/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_family.py b/plotly/validators/streamtube/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_family.py rename to plotly/validators/streamtube/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_lineposition.py b/plotly/validators/streamtube/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_lineposition.py rename to plotly/validators/streamtube/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_shadow.py b/plotly/validators/streamtube/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_shadow.py rename to plotly/validators/streamtube/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_size.py b/plotly/validators/streamtube/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_size.py rename to plotly/validators/streamtube/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_style.py b/plotly/validators/streamtube/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_style.py rename to plotly/validators/streamtube/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_textcase.py b/plotly/validators/streamtube/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_textcase.py rename to plotly/validators/streamtube/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_variant.py b/plotly/validators/streamtube/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_variant.py rename to plotly/validators/streamtube/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_weight.py b/plotly/validators/streamtube/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickfont/_weight.py rename to plotly/validators/streamtube/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/__init__.py b/plotly/validators/streamtube/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/__init__.py rename to plotly/validators/streamtube/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/streamtube/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/streamtube/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_enabled.py b/plotly/validators/streamtube/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_enabled.py rename to plotly/validators/streamtube/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_name.py b/plotly/validators/streamtube/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_name.py rename to plotly/validators/streamtube/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/streamtube/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/streamtube/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_value.py b/plotly/validators/streamtube/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/tickformatstop/_value.py rename to plotly/validators/streamtube/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/__init__.py b/plotly/validators/streamtube/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/__init__.py rename to plotly/validators/streamtube/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/_font.py b/plotly/validators/streamtube/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/_font.py rename to plotly/validators/streamtube/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/_side.py b/plotly/validators/streamtube/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/_side.py rename to plotly/validators/streamtube/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/_text.py b/plotly/validators/streamtube/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/_text.py rename to plotly/validators/streamtube/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/__init__.py b/plotly/validators/streamtube/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/__init__.py rename to plotly/validators/streamtube/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_color.py b/plotly/validators/streamtube/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_color.py rename to plotly/validators/streamtube/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_family.py b/plotly/validators/streamtube/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_family.py rename to plotly/validators/streamtube/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_lineposition.py b/plotly/validators/streamtube/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_lineposition.py rename to plotly/validators/streamtube/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_shadow.py b/plotly/validators/streamtube/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_shadow.py rename to plotly/validators/streamtube/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_size.py b/plotly/validators/streamtube/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_size.py rename to plotly/validators/streamtube/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_style.py b/plotly/validators/streamtube/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_style.py rename to plotly/validators/streamtube/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_textcase.py b/plotly/validators/streamtube/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_textcase.py rename to plotly/validators/streamtube/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_variant.py b/plotly/validators/streamtube/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_variant.py rename to plotly/validators/streamtube/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_weight.py b/plotly/validators/streamtube/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/colorbar/title/font/_weight.py rename to plotly/validators/streamtube/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/__init__.py b/plotly/validators/streamtube/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/__init__.py rename to plotly/validators/streamtube/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_align.py b/plotly/validators/streamtube/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_align.py rename to plotly/validators/streamtube/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_alignsrc.py b/plotly/validators/streamtube/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_alignsrc.py rename to plotly/validators/streamtube/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bgcolor.py b/plotly/validators/streamtube/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bgcolor.py rename to plotly/validators/streamtube/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bgcolorsrc.py b/plotly/validators/streamtube/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bgcolorsrc.py rename to plotly/validators/streamtube/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bordercolor.py b/plotly/validators/streamtube/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bordercolor.py rename to plotly/validators/streamtube/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bordercolorsrc.py b/plotly/validators/streamtube/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_bordercolorsrc.py rename to plotly/validators/streamtube/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_font.py b/plotly/validators/streamtube/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_font.py rename to plotly/validators/streamtube/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_namelength.py b/plotly/validators/streamtube/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_namelength.py rename to plotly/validators/streamtube/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/_namelengthsrc.py b/plotly/validators/streamtube/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/_namelengthsrc.py rename to plotly/validators/streamtube/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/__init__.py b/plotly/validators/streamtube/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/__init__.py rename to plotly/validators/streamtube/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_color.py b/plotly/validators/streamtube/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_color.py rename to plotly/validators/streamtube/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_colorsrc.py b/plotly/validators/streamtube/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_colorsrc.py rename to plotly/validators/streamtube/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_family.py b/plotly/validators/streamtube/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_family.py rename to plotly/validators/streamtube/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_familysrc.py b/plotly/validators/streamtube/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_familysrc.py rename to plotly/validators/streamtube/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_lineposition.py b/plotly/validators/streamtube/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_lineposition.py rename to plotly/validators/streamtube/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_linepositionsrc.py b/plotly/validators/streamtube/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/streamtube/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_shadow.py b/plotly/validators/streamtube/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_shadow.py rename to plotly/validators/streamtube/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_shadowsrc.py b/plotly/validators/streamtube/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_shadowsrc.py rename to plotly/validators/streamtube/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_size.py b/plotly/validators/streamtube/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_size.py rename to plotly/validators/streamtube/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_sizesrc.py b/plotly/validators/streamtube/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_sizesrc.py rename to plotly/validators/streamtube/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_style.py b/plotly/validators/streamtube/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_style.py rename to plotly/validators/streamtube/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_stylesrc.py b/plotly/validators/streamtube/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_stylesrc.py rename to plotly/validators/streamtube/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_textcase.py b/plotly/validators/streamtube/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_textcase.py rename to plotly/validators/streamtube/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_textcasesrc.py b/plotly/validators/streamtube/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_textcasesrc.py rename to plotly/validators/streamtube/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_variant.py b/plotly/validators/streamtube/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_variant.py rename to plotly/validators/streamtube/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_variantsrc.py b/plotly/validators/streamtube/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_variantsrc.py rename to plotly/validators/streamtube/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_weight.py b/plotly/validators/streamtube/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_weight.py rename to plotly/validators/streamtube/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_weightsrc.py b/plotly/validators/streamtube/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/hoverlabel/font/_weightsrc.py rename to plotly/validators/streamtube/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/__init__.py b/plotly/validators/streamtube/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/__init__.py rename to plotly/validators/streamtube/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/_font.py b/plotly/validators/streamtube/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/_font.py rename to plotly/validators/streamtube/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/_text.py b/plotly/validators/streamtube/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/_text.py rename to plotly/validators/streamtube/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/__init__.py b/plotly/validators/streamtube/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/__init__.py rename to plotly/validators/streamtube/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_color.py b/plotly/validators/streamtube/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_color.py rename to plotly/validators/streamtube/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_family.py b/plotly/validators/streamtube/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_family.py rename to plotly/validators/streamtube/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_lineposition.py b/plotly/validators/streamtube/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_lineposition.py rename to plotly/validators/streamtube/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_shadow.py b/plotly/validators/streamtube/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_shadow.py rename to plotly/validators/streamtube/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_size.py b/plotly/validators/streamtube/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_size.py rename to plotly/validators/streamtube/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_style.py b/plotly/validators/streamtube/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_style.py rename to plotly/validators/streamtube/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_textcase.py b/plotly/validators/streamtube/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_textcase.py rename to plotly/validators/streamtube/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_variant.py b/plotly/validators/streamtube/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_variant.py rename to plotly/validators/streamtube/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_weight.py b/plotly/validators/streamtube/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/legendgrouptitle/font/_weight.py rename to plotly/validators/streamtube/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/__init__.py b/plotly/validators/streamtube/lighting/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/__init__.py rename to plotly/validators/streamtube/lighting/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_ambient.py b/plotly/validators/streamtube/lighting/_ambient.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_ambient.py rename to plotly/validators/streamtube/lighting/_ambient.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_diffuse.py b/plotly/validators/streamtube/lighting/_diffuse.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_diffuse.py rename to plotly/validators/streamtube/lighting/_diffuse.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_facenormalsepsilon.py b/plotly/validators/streamtube/lighting/_facenormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_facenormalsepsilon.py rename to plotly/validators/streamtube/lighting/_facenormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_fresnel.py b/plotly/validators/streamtube/lighting/_fresnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_fresnel.py rename to plotly/validators/streamtube/lighting/_fresnel.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_roughness.py b/plotly/validators/streamtube/lighting/_roughness.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_roughness.py rename to plotly/validators/streamtube/lighting/_roughness.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_specular.py b/plotly/validators/streamtube/lighting/_specular.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_specular.py rename to plotly/validators/streamtube/lighting/_specular.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lighting/_vertexnormalsepsilon.py b/plotly/validators/streamtube/lighting/_vertexnormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lighting/_vertexnormalsepsilon.py rename to plotly/validators/streamtube/lighting/_vertexnormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lightposition/__init__.py b/plotly/validators/streamtube/lightposition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lightposition/__init__.py rename to plotly/validators/streamtube/lightposition/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lightposition/_x.py b/plotly/validators/streamtube/lightposition/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lightposition/_x.py rename to plotly/validators/streamtube/lightposition/_x.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lightposition/_y.py b/plotly/validators/streamtube/lightposition/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lightposition/_y.py rename to plotly/validators/streamtube/lightposition/_y.py diff --git a/packages/python/plotly/plotly/validators/streamtube/lightposition/_z.py b/plotly/validators/streamtube/lightposition/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/lightposition/_z.py rename to plotly/validators/streamtube/lightposition/_z.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/__init__.py b/plotly/validators/streamtube/starts/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/__init__.py rename to plotly/validators/streamtube/starts/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/_x.py b/plotly/validators/streamtube/starts/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/_x.py rename to plotly/validators/streamtube/starts/_x.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/_xsrc.py b/plotly/validators/streamtube/starts/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/_xsrc.py rename to plotly/validators/streamtube/starts/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/_y.py b/plotly/validators/streamtube/starts/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/_y.py rename to plotly/validators/streamtube/starts/_y.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/_ysrc.py b/plotly/validators/streamtube/starts/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/_ysrc.py rename to plotly/validators/streamtube/starts/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/_z.py b/plotly/validators/streamtube/starts/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/_z.py rename to plotly/validators/streamtube/starts/_z.py diff --git a/packages/python/plotly/plotly/validators/streamtube/starts/_zsrc.py b/plotly/validators/streamtube/starts/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/starts/_zsrc.py rename to plotly/validators/streamtube/starts/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/streamtube/stream/__init__.py b/plotly/validators/streamtube/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/stream/__init__.py rename to plotly/validators/streamtube/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/streamtube/stream/_maxpoints.py b/plotly/validators/streamtube/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/stream/_maxpoints.py rename to plotly/validators/streamtube/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/streamtube/stream/_token.py b/plotly/validators/streamtube/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/streamtube/stream/_token.py rename to plotly/validators/streamtube/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/sunburst/__init__.py b/plotly/validators/sunburst/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/__init__.py rename to plotly/validators/sunburst/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_branchvalues.py b/plotly/validators/sunburst/_branchvalues.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_branchvalues.py rename to plotly/validators/sunburst/_branchvalues.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_count.py b/plotly/validators/sunburst/_count.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_count.py rename to plotly/validators/sunburst/_count.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_customdata.py b/plotly/validators/sunburst/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_customdata.py rename to plotly/validators/sunburst/_customdata.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_customdatasrc.py b/plotly/validators/sunburst/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_customdatasrc.py rename to plotly/validators/sunburst/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_domain.py b/plotly/validators/sunburst/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_domain.py rename to plotly/validators/sunburst/_domain.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hoverinfo.py b/plotly/validators/sunburst/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hoverinfo.py rename to plotly/validators/sunburst/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hoverinfosrc.py b/plotly/validators/sunburst/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hoverinfosrc.py rename to plotly/validators/sunburst/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hoverlabel.py b/plotly/validators/sunburst/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hoverlabel.py rename to plotly/validators/sunburst/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hovertemplate.py b/plotly/validators/sunburst/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hovertemplate.py rename to plotly/validators/sunburst/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hovertemplatesrc.py b/plotly/validators/sunburst/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hovertemplatesrc.py rename to plotly/validators/sunburst/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hovertext.py b/plotly/validators/sunburst/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hovertext.py rename to plotly/validators/sunburst/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_hovertextsrc.py b/plotly/validators/sunburst/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_hovertextsrc.py rename to plotly/validators/sunburst/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_ids.py b/plotly/validators/sunburst/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_ids.py rename to plotly/validators/sunburst/_ids.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_idssrc.py b/plotly/validators/sunburst/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_idssrc.py rename to plotly/validators/sunburst/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_insidetextfont.py b/plotly/validators/sunburst/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_insidetextfont.py rename to plotly/validators/sunburst/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_insidetextorientation.py b/plotly/validators/sunburst/_insidetextorientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_insidetextorientation.py rename to plotly/validators/sunburst/_insidetextorientation.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_labels.py b/plotly/validators/sunburst/_labels.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_labels.py rename to plotly/validators/sunburst/_labels.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_labelssrc.py b/plotly/validators/sunburst/_labelssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_labelssrc.py rename to plotly/validators/sunburst/_labelssrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_leaf.py b/plotly/validators/sunburst/_leaf.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_leaf.py rename to plotly/validators/sunburst/_leaf.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_legend.py b/plotly/validators/sunburst/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_legend.py rename to plotly/validators/sunburst/_legend.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_legendgrouptitle.py b/plotly/validators/sunburst/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_legendgrouptitle.py rename to plotly/validators/sunburst/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_legendrank.py b/plotly/validators/sunburst/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_legendrank.py rename to plotly/validators/sunburst/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_legendwidth.py b/plotly/validators/sunburst/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_legendwidth.py rename to plotly/validators/sunburst/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_level.py b/plotly/validators/sunburst/_level.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_level.py rename to plotly/validators/sunburst/_level.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_marker.py b/plotly/validators/sunburst/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_marker.py rename to plotly/validators/sunburst/_marker.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_maxdepth.py b/plotly/validators/sunburst/_maxdepth.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_maxdepth.py rename to plotly/validators/sunburst/_maxdepth.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_meta.py b/plotly/validators/sunburst/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_meta.py rename to plotly/validators/sunburst/_meta.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_metasrc.py b/plotly/validators/sunburst/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_metasrc.py rename to plotly/validators/sunburst/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_name.py b/plotly/validators/sunburst/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_name.py rename to plotly/validators/sunburst/_name.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_opacity.py b/plotly/validators/sunburst/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_opacity.py rename to plotly/validators/sunburst/_opacity.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_outsidetextfont.py b/plotly/validators/sunburst/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_outsidetextfont.py rename to plotly/validators/sunburst/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_parents.py b/plotly/validators/sunburst/_parents.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_parents.py rename to plotly/validators/sunburst/_parents.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_parentssrc.py b/plotly/validators/sunburst/_parentssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_parentssrc.py rename to plotly/validators/sunburst/_parentssrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_root.py b/plotly/validators/sunburst/_root.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_root.py rename to plotly/validators/sunburst/_root.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_rotation.py b/plotly/validators/sunburst/_rotation.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_rotation.py rename to plotly/validators/sunburst/_rotation.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_sort.py b/plotly/validators/sunburst/_sort.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_sort.py rename to plotly/validators/sunburst/_sort.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_stream.py b/plotly/validators/sunburst/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_stream.py rename to plotly/validators/sunburst/_stream.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_text.py b/plotly/validators/sunburst/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_text.py rename to plotly/validators/sunburst/_text.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_textfont.py b/plotly/validators/sunburst/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_textfont.py rename to plotly/validators/sunburst/_textfont.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_textinfo.py b/plotly/validators/sunburst/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_textinfo.py rename to plotly/validators/sunburst/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_textsrc.py b/plotly/validators/sunburst/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_textsrc.py rename to plotly/validators/sunburst/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_texttemplate.py b/plotly/validators/sunburst/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_texttemplate.py rename to plotly/validators/sunburst/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_texttemplatesrc.py b/plotly/validators/sunburst/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_texttemplatesrc.py rename to plotly/validators/sunburst/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_uid.py b/plotly/validators/sunburst/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_uid.py rename to plotly/validators/sunburst/_uid.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_uirevision.py b/plotly/validators/sunburst/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_uirevision.py rename to plotly/validators/sunburst/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_values.py b/plotly/validators/sunburst/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_values.py rename to plotly/validators/sunburst/_values.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_valuessrc.py b/plotly/validators/sunburst/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_valuessrc.py rename to plotly/validators/sunburst/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/_visible.py b/plotly/validators/sunburst/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/_visible.py rename to plotly/validators/sunburst/_visible.py diff --git a/packages/python/plotly/plotly/validators/sunburst/domain/__init__.py b/plotly/validators/sunburst/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/domain/__init__.py rename to plotly/validators/sunburst/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/domain/_column.py b/plotly/validators/sunburst/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/domain/_column.py rename to plotly/validators/sunburst/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/sunburst/domain/_row.py b/plotly/validators/sunburst/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/domain/_row.py rename to plotly/validators/sunburst/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/sunburst/domain/_x.py b/plotly/validators/sunburst/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/domain/_x.py rename to plotly/validators/sunburst/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/sunburst/domain/_y.py b/plotly/validators/sunburst/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/domain/_y.py rename to plotly/validators/sunburst/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/__init__.py b/plotly/validators/sunburst/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/__init__.py rename to plotly/validators/sunburst/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_align.py b/plotly/validators/sunburst/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_align.py rename to plotly/validators/sunburst/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_alignsrc.py b/plotly/validators/sunburst/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_alignsrc.py rename to plotly/validators/sunburst/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bgcolor.py b/plotly/validators/sunburst/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bgcolor.py rename to plotly/validators/sunburst/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bgcolorsrc.py b/plotly/validators/sunburst/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bgcolorsrc.py rename to plotly/validators/sunburst/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bordercolor.py b/plotly/validators/sunburst/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bordercolor.py rename to plotly/validators/sunburst/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bordercolorsrc.py b/plotly/validators/sunburst/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_bordercolorsrc.py rename to plotly/validators/sunburst/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_font.py b/plotly/validators/sunburst/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_font.py rename to plotly/validators/sunburst/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_namelength.py b/plotly/validators/sunburst/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_namelength.py rename to plotly/validators/sunburst/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/_namelengthsrc.py b/plotly/validators/sunburst/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/_namelengthsrc.py rename to plotly/validators/sunburst/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/__init__.py b/plotly/validators/sunburst/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/__init__.py rename to plotly/validators/sunburst/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_color.py b/plotly/validators/sunburst/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_color.py rename to plotly/validators/sunburst/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_colorsrc.py b/plotly/validators/sunburst/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_colorsrc.py rename to plotly/validators/sunburst/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_family.py b/plotly/validators/sunburst/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_family.py rename to plotly/validators/sunburst/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_familysrc.py b/plotly/validators/sunburst/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_familysrc.py rename to plotly/validators/sunburst/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_lineposition.py b/plotly/validators/sunburst/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_lineposition.py rename to plotly/validators/sunburst/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_linepositionsrc.py b/plotly/validators/sunburst/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/sunburst/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_shadow.py b/plotly/validators/sunburst/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_shadow.py rename to plotly/validators/sunburst/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_shadowsrc.py b/plotly/validators/sunburst/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_shadowsrc.py rename to plotly/validators/sunburst/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_size.py b/plotly/validators/sunburst/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_size.py rename to plotly/validators/sunburst/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_sizesrc.py b/plotly/validators/sunburst/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_sizesrc.py rename to plotly/validators/sunburst/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_style.py b/plotly/validators/sunburst/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_style.py rename to plotly/validators/sunburst/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_stylesrc.py b/plotly/validators/sunburst/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_stylesrc.py rename to plotly/validators/sunburst/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_textcase.py b/plotly/validators/sunburst/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_textcase.py rename to plotly/validators/sunburst/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_textcasesrc.py b/plotly/validators/sunburst/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_textcasesrc.py rename to plotly/validators/sunburst/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_variant.py b/plotly/validators/sunburst/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_variant.py rename to plotly/validators/sunburst/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_variantsrc.py b/plotly/validators/sunburst/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_variantsrc.py rename to plotly/validators/sunburst/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_weight.py b/plotly/validators/sunburst/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_weight.py rename to plotly/validators/sunburst/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_weightsrc.py b/plotly/validators/sunburst/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/hoverlabel/font/_weightsrc.py rename to plotly/validators/sunburst/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/__init__.py b/plotly/validators/sunburst/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/__init__.py rename to plotly/validators/sunburst/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_color.py b/plotly/validators/sunburst/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_color.py rename to plotly/validators/sunburst/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_colorsrc.py b/plotly/validators/sunburst/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_colorsrc.py rename to plotly/validators/sunburst/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_family.py b/plotly/validators/sunburst/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_family.py rename to plotly/validators/sunburst/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_familysrc.py b/plotly/validators/sunburst/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_familysrc.py rename to plotly/validators/sunburst/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_lineposition.py b/plotly/validators/sunburst/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_lineposition.py rename to plotly/validators/sunburst/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_linepositionsrc.py b/plotly/validators/sunburst/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_linepositionsrc.py rename to plotly/validators/sunburst/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_shadow.py b/plotly/validators/sunburst/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_shadow.py rename to plotly/validators/sunburst/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_shadowsrc.py b/plotly/validators/sunburst/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_shadowsrc.py rename to plotly/validators/sunburst/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_size.py b/plotly/validators/sunburst/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_size.py rename to plotly/validators/sunburst/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_sizesrc.py b/plotly/validators/sunburst/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_sizesrc.py rename to plotly/validators/sunburst/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_style.py b/plotly/validators/sunburst/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_style.py rename to plotly/validators/sunburst/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_stylesrc.py b/plotly/validators/sunburst/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_stylesrc.py rename to plotly/validators/sunburst/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_textcase.py b/plotly/validators/sunburst/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_textcase.py rename to plotly/validators/sunburst/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_textcasesrc.py b/plotly/validators/sunburst/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_textcasesrc.py rename to plotly/validators/sunburst/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_variant.py b/plotly/validators/sunburst/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_variant.py rename to plotly/validators/sunburst/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_variantsrc.py b/plotly/validators/sunburst/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_variantsrc.py rename to plotly/validators/sunburst/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_weight.py b/plotly/validators/sunburst/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_weight.py rename to plotly/validators/sunburst/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/insidetextfont/_weightsrc.py b/plotly/validators/sunburst/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/insidetextfont/_weightsrc.py rename to plotly/validators/sunburst/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/leaf/__init__.py b/plotly/validators/sunburst/leaf/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/leaf/__init__.py rename to plotly/validators/sunburst/leaf/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/leaf/_opacity.py b/plotly/validators/sunburst/leaf/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/leaf/_opacity.py rename to plotly/validators/sunburst/leaf/_opacity.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/__init__.py b/plotly/validators/sunburst/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/__init__.py rename to plotly/validators/sunburst/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/_font.py b/plotly/validators/sunburst/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/_font.py rename to plotly/validators/sunburst/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/_text.py b/plotly/validators/sunburst/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/_text.py rename to plotly/validators/sunburst/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/__init__.py b/plotly/validators/sunburst/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/__init__.py rename to plotly/validators/sunburst/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_color.py b/plotly/validators/sunburst/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_color.py rename to plotly/validators/sunburst/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_family.py b/plotly/validators/sunburst/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_family.py rename to plotly/validators/sunburst/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_lineposition.py b/plotly/validators/sunburst/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_lineposition.py rename to plotly/validators/sunburst/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_shadow.py b/plotly/validators/sunburst/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_shadow.py rename to plotly/validators/sunburst/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_size.py b/plotly/validators/sunburst/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_size.py rename to plotly/validators/sunburst/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_style.py b/plotly/validators/sunburst/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_style.py rename to plotly/validators/sunburst/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_textcase.py b/plotly/validators/sunburst/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_textcase.py rename to plotly/validators/sunburst/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_variant.py b/plotly/validators/sunburst/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_variant.py rename to plotly/validators/sunburst/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_weight.py b/plotly/validators/sunburst/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/legendgrouptitle/font/_weight.py rename to plotly/validators/sunburst/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/__init__.py b/plotly/validators/sunburst/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/__init__.py rename to plotly/validators/sunburst/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_autocolorscale.py b/plotly/validators/sunburst/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_autocolorscale.py rename to plotly/validators/sunburst/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_cauto.py b/plotly/validators/sunburst/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_cauto.py rename to plotly/validators/sunburst/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_cmax.py b/plotly/validators/sunburst/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_cmax.py rename to plotly/validators/sunburst/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_cmid.py b/plotly/validators/sunburst/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_cmid.py rename to plotly/validators/sunburst/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_cmin.py b/plotly/validators/sunburst/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_cmin.py rename to plotly/validators/sunburst/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_coloraxis.py b/plotly/validators/sunburst/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_coloraxis.py rename to plotly/validators/sunburst/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_colorbar.py b/plotly/validators/sunburst/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_colorbar.py rename to plotly/validators/sunburst/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_colors.py b/plotly/validators/sunburst/marker/_colors.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_colors.py rename to plotly/validators/sunburst/marker/_colors.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_colorscale.py b/plotly/validators/sunburst/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_colorscale.py rename to plotly/validators/sunburst/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_colorssrc.py b/plotly/validators/sunburst/marker/_colorssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_colorssrc.py rename to plotly/validators/sunburst/marker/_colorssrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_line.py b/plotly/validators/sunburst/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_line.py rename to plotly/validators/sunburst/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_pattern.py b/plotly/validators/sunburst/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_pattern.py rename to plotly/validators/sunburst/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_reversescale.py b/plotly/validators/sunburst/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_reversescale.py rename to plotly/validators/sunburst/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/_showscale.py b/plotly/validators/sunburst/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/_showscale.py rename to plotly/validators/sunburst/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/__init__.py b/plotly/validators/sunburst/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/__init__.py rename to plotly/validators/sunburst/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_bgcolor.py b/plotly/validators/sunburst/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_bgcolor.py rename to plotly/validators/sunburst/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_bordercolor.py b/plotly/validators/sunburst/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_bordercolor.py rename to plotly/validators/sunburst/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_borderwidth.py b/plotly/validators/sunburst/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_borderwidth.py rename to plotly/validators/sunburst/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_dtick.py b/plotly/validators/sunburst/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_dtick.py rename to plotly/validators/sunburst/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_exponentformat.py b/plotly/validators/sunburst/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_exponentformat.py rename to plotly/validators/sunburst/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_labelalias.py b/plotly/validators/sunburst/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_labelalias.py rename to plotly/validators/sunburst/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_len.py b/plotly/validators/sunburst/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_len.py rename to plotly/validators/sunburst/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_lenmode.py b/plotly/validators/sunburst/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_lenmode.py rename to plotly/validators/sunburst/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_minexponent.py b/plotly/validators/sunburst/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_minexponent.py rename to plotly/validators/sunburst/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_nticks.py b/plotly/validators/sunburst/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_nticks.py rename to plotly/validators/sunburst/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_orientation.py b/plotly/validators/sunburst/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_orientation.py rename to plotly/validators/sunburst/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_outlinecolor.py b/plotly/validators/sunburst/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_outlinecolor.py rename to plotly/validators/sunburst/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_outlinewidth.py b/plotly/validators/sunburst/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_outlinewidth.py rename to plotly/validators/sunburst/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_separatethousands.py b/plotly/validators/sunburst/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_separatethousands.py rename to plotly/validators/sunburst/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showexponent.py b/plotly/validators/sunburst/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showexponent.py rename to plotly/validators/sunburst/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showticklabels.py b/plotly/validators/sunburst/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showticklabels.py rename to plotly/validators/sunburst/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showtickprefix.py b/plotly/validators/sunburst/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showtickprefix.py rename to plotly/validators/sunburst/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showticksuffix.py b/plotly/validators/sunburst/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_showticksuffix.py rename to plotly/validators/sunburst/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_thickness.py b/plotly/validators/sunburst/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_thickness.py rename to plotly/validators/sunburst/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_thicknessmode.py b/plotly/validators/sunburst/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_thicknessmode.py rename to plotly/validators/sunburst/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tick0.py b/plotly/validators/sunburst/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tick0.py rename to plotly/validators/sunburst/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickangle.py b/plotly/validators/sunburst/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickangle.py rename to plotly/validators/sunburst/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickcolor.py b/plotly/validators/sunburst/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickcolor.py rename to plotly/validators/sunburst/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickfont.py b/plotly/validators/sunburst/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickfont.py rename to plotly/validators/sunburst/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickformat.py b/plotly/validators/sunburst/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickformat.py rename to plotly/validators/sunburst/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/sunburst/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/sunburst/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickformatstops.py b/plotly/validators/sunburst/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickformatstops.py rename to plotly/validators/sunburst/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/sunburst/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/sunburst/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklabelposition.py b/plotly/validators/sunburst/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklabelposition.py rename to plotly/validators/sunburst/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklabelstep.py b/plotly/validators/sunburst/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklabelstep.py rename to plotly/validators/sunburst/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklen.py b/plotly/validators/sunburst/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticklen.py rename to plotly/validators/sunburst/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickmode.py b/plotly/validators/sunburst/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickmode.py rename to plotly/validators/sunburst/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickprefix.py b/plotly/validators/sunburst/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickprefix.py rename to plotly/validators/sunburst/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticks.py b/plotly/validators/sunburst/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticks.py rename to plotly/validators/sunburst/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticksuffix.py b/plotly/validators/sunburst/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticksuffix.py rename to plotly/validators/sunburst/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticktext.py b/plotly/validators/sunburst/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticktext.py rename to plotly/validators/sunburst/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticktextsrc.py b/plotly/validators/sunburst/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ticktextsrc.py rename to plotly/validators/sunburst/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickvals.py b/plotly/validators/sunburst/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickvals.py rename to plotly/validators/sunburst/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickvalssrc.py b/plotly/validators/sunburst/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickvalssrc.py rename to plotly/validators/sunburst/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickwidth.py b/plotly/validators/sunburst/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_tickwidth.py rename to plotly/validators/sunburst/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_title.py b/plotly/validators/sunburst/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_title.py rename to plotly/validators/sunburst/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_x.py b/plotly/validators/sunburst/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_x.py rename to plotly/validators/sunburst/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_xanchor.py b/plotly/validators/sunburst/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_xanchor.py rename to plotly/validators/sunburst/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_xpad.py b/plotly/validators/sunburst/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_xpad.py rename to plotly/validators/sunburst/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_xref.py b/plotly/validators/sunburst/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_xref.py rename to plotly/validators/sunburst/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_y.py b/plotly/validators/sunburst/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_y.py rename to plotly/validators/sunburst/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_yanchor.py b/plotly/validators/sunburst/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_yanchor.py rename to plotly/validators/sunburst/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ypad.py b/plotly/validators/sunburst/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_ypad.py rename to plotly/validators/sunburst/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_yref.py b/plotly/validators/sunburst/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/_yref.py rename to plotly/validators/sunburst/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/__init__.py b/plotly/validators/sunburst/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/__init__.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_color.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_color.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_family.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_family.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_shadow.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_size.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_size.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_style.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_style.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_textcase.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_variant.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_variant.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_weight.py b/plotly/validators/sunburst/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickfont/_weight.py rename to plotly/validators/sunburst/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/sunburst/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/sunburst/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/sunburst/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/sunburst/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/sunburst/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/sunburst/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_name.py b/plotly/validators/sunburst/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/sunburst/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/sunburst/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/sunburst/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_value.py b/plotly/validators/sunburst/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/sunburst/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/__init__.py b/plotly/validators/sunburst/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/__init__.py rename to plotly/validators/sunburst/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/_font.py b/plotly/validators/sunburst/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/_font.py rename to plotly/validators/sunburst/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/_side.py b/plotly/validators/sunburst/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/_side.py rename to plotly/validators/sunburst/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/_text.py b/plotly/validators/sunburst/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/_text.py rename to plotly/validators/sunburst/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/__init__.py b/plotly/validators/sunburst/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/__init__.py rename to plotly/validators/sunburst/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_color.py b/plotly/validators/sunburst/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_color.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_family.py b/plotly/validators/sunburst/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_family.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_lineposition.py b/plotly/validators/sunburst/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_shadow.py b/plotly/validators/sunburst/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_shadow.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_size.py b/plotly/validators/sunburst/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_size.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_style.py b/plotly/validators/sunburst/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_style.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_textcase.py b/plotly/validators/sunburst/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_textcase.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_variant.py b/plotly/validators/sunburst/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_variant.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_weight.py b/plotly/validators/sunburst/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/colorbar/title/font/_weight.py rename to plotly/validators/sunburst/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/line/__init__.py b/plotly/validators/sunburst/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/line/__init__.py rename to plotly/validators/sunburst/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/line/_color.py b/plotly/validators/sunburst/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/line/_color.py rename to plotly/validators/sunburst/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/line/_colorsrc.py b/plotly/validators/sunburst/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/line/_colorsrc.py rename to plotly/validators/sunburst/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/line/_width.py b/plotly/validators/sunburst/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/line/_width.py rename to plotly/validators/sunburst/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/line/_widthsrc.py b/plotly/validators/sunburst/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/line/_widthsrc.py rename to plotly/validators/sunburst/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/__init__.py b/plotly/validators/sunburst/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/__init__.py rename to plotly/validators/sunburst/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_bgcolor.py b/plotly/validators/sunburst/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_bgcolor.py rename to plotly/validators/sunburst/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_bgcolorsrc.py b/plotly/validators/sunburst/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_bgcolorsrc.py rename to plotly/validators/sunburst/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fgcolor.py b/plotly/validators/sunburst/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fgcolor.py rename to plotly/validators/sunburst/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fgcolorsrc.py b/plotly/validators/sunburst/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fgcolorsrc.py rename to plotly/validators/sunburst/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fgopacity.py b/plotly/validators/sunburst/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fgopacity.py rename to plotly/validators/sunburst/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fillmode.py b/plotly/validators/sunburst/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_fillmode.py rename to plotly/validators/sunburst/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_shape.py b/plotly/validators/sunburst/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_shape.py rename to plotly/validators/sunburst/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_shapesrc.py b/plotly/validators/sunburst/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_shapesrc.py rename to plotly/validators/sunburst/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_size.py b/plotly/validators/sunburst/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_size.py rename to plotly/validators/sunburst/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_sizesrc.py b/plotly/validators/sunburst/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_sizesrc.py rename to plotly/validators/sunburst/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_solidity.py b/plotly/validators/sunburst/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_solidity.py rename to plotly/validators/sunburst/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/sunburst/marker/pattern/_soliditysrc.py b/plotly/validators/sunburst/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/marker/pattern/_soliditysrc.py rename to plotly/validators/sunburst/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/__init__.py b/plotly/validators/sunburst/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/__init__.py rename to plotly/validators/sunburst/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_color.py b/plotly/validators/sunburst/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_color.py rename to plotly/validators/sunburst/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_colorsrc.py b/plotly/validators/sunburst/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_colorsrc.py rename to plotly/validators/sunburst/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_family.py b/plotly/validators/sunburst/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_family.py rename to plotly/validators/sunburst/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_familysrc.py b/plotly/validators/sunburst/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_familysrc.py rename to plotly/validators/sunburst/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_lineposition.py b/plotly/validators/sunburst/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_lineposition.py rename to plotly/validators/sunburst/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_linepositionsrc.py b/plotly/validators/sunburst/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_linepositionsrc.py rename to plotly/validators/sunburst/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_shadow.py b/plotly/validators/sunburst/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_shadow.py rename to plotly/validators/sunburst/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_shadowsrc.py b/plotly/validators/sunburst/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_shadowsrc.py rename to plotly/validators/sunburst/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_size.py b/plotly/validators/sunburst/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_size.py rename to plotly/validators/sunburst/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_sizesrc.py b/plotly/validators/sunburst/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_sizesrc.py rename to plotly/validators/sunburst/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_style.py b/plotly/validators/sunburst/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_style.py rename to plotly/validators/sunburst/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_stylesrc.py b/plotly/validators/sunburst/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_stylesrc.py rename to plotly/validators/sunburst/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_textcase.py b/plotly/validators/sunburst/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_textcase.py rename to plotly/validators/sunburst/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_textcasesrc.py b/plotly/validators/sunburst/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_textcasesrc.py rename to plotly/validators/sunburst/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_variant.py b/plotly/validators/sunburst/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_variant.py rename to plotly/validators/sunburst/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_variantsrc.py b/plotly/validators/sunburst/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_variantsrc.py rename to plotly/validators/sunburst/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_weight.py b/plotly/validators/sunburst/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_weight.py rename to plotly/validators/sunburst/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_weightsrc.py b/plotly/validators/sunburst/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/outsidetextfont/_weightsrc.py rename to plotly/validators/sunburst/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/root/__init__.py b/plotly/validators/sunburst/root/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/root/__init__.py rename to plotly/validators/sunburst/root/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/root/_color.py b/plotly/validators/sunburst/root/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/root/_color.py rename to plotly/validators/sunburst/root/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/stream/__init__.py b/plotly/validators/sunburst/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/stream/__init__.py rename to plotly/validators/sunburst/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/stream/_maxpoints.py b/plotly/validators/sunburst/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/stream/_maxpoints.py rename to plotly/validators/sunburst/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/sunburst/stream/_token.py b/plotly/validators/sunburst/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/stream/_token.py rename to plotly/validators/sunburst/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/__init__.py b/plotly/validators/sunburst/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/__init__.py rename to plotly/validators/sunburst/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_color.py b/plotly/validators/sunburst/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_color.py rename to plotly/validators/sunburst/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_colorsrc.py b/plotly/validators/sunburst/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_colorsrc.py rename to plotly/validators/sunburst/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_family.py b/plotly/validators/sunburst/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_family.py rename to plotly/validators/sunburst/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_familysrc.py b/plotly/validators/sunburst/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_familysrc.py rename to plotly/validators/sunburst/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_lineposition.py b/plotly/validators/sunburst/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_lineposition.py rename to plotly/validators/sunburst/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_linepositionsrc.py b/plotly/validators/sunburst/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_linepositionsrc.py rename to plotly/validators/sunburst/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_shadow.py b/plotly/validators/sunburst/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_shadow.py rename to plotly/validators/sunburst/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_shadowsrc.py b/plotly/validators/sunburst/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_shadowsrc.py rename to plotly/validators/sunburst/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_size.py b/plotly/validators/sunburst/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_size.py rename to plotly/validators/sunburst/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_sizesrc.py b/plotly/validators/sunburst/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_sizesrc.py rename to plotly/validators/sunburst/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_style.py b/plotly/validators/sunburst/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_style.py rename to plotly/validators/sunburst/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_stylesrc.py b/plotly/validators/sunburst/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_stylesrc.py rename to plotly/validators/sunburst/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_textcase.py b/plotly/validators/sunburst/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_textcase.py rename to plotly/validators/sunburst/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_textcasesrc.py b/plotly/validators/sunburst/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_textcasesrc.py rename to plotly/validators/sunburst/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_variant.py b/plotly/validators/sunburst/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_variant.py rename to plotly/validators/sunburst/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_variantsrc.py b/plotly/validators/sunburst/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_variantsrc.py rename to plotly/validators/sunburst/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_weight.py b/plotly/validators/sunburst/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_weight.py rename to plotly/validators/sunburst/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/sunburst/textfont/_weightsrc.py b/plotly/validators/sunburst/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/sunburst/textfont/_weightsrc.py rename to plotly/validators/sunburst/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/__init__.py b/plotly/validators/surface/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/__init__.py rename to plotly/validators/surface/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/_autocolorscale.py b/plotly/validators/surface/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_autocolorscale.py rename to plotly/validators/surface/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/surface/_cauto.py b/plotly/validators/surface/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_cauto.py rename to plotly/validators/surface/_cauto.py diff --git a/packages/python/plotly/plotly/validators/surface/_cmax.py b/plotly/validators/surface/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_cmax.py rename to plotly/validators/surface/_cmax.py diff --git a/packages/python/plotly/plotly/validators/surface/_cmid.py b/plotly/validators/surface/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_cmid.py rename to plotly/validators/surface/_cmid.py diff --git a/packages/python/plotly/plotly/validators/surface/_cmin.py b/plotly/validators/surface/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_cmin.py rename to plotly/validators/surface/_cmin.py diff --git a/packages/python/plotly/plotly/validators/surface/_coloraxis.py b/plotly/validators/surface/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_coloraxis.py rename to plotly/validators/surface/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/surface/_colorbar.py b/plotly/validators/surface/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_colorbar.py rename to plotly/validators/surface/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/surface/_colorscale.py b/plotly/validators/surface/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_colorscale.py rename to plotly/validators/surface/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/surface/_connectgaps.py b/plotly/validators/surface/_connectgaps.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_connectgaps.py rename to plotly/validators/surface/_connectgaps.py diff --git a/packages/python/plotly/plotly/validators/surface/_contours.py b/plotly/validators/surface/_contours.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_contours.py rename to plotly/validators/surface/_contours.py diff --git a/packages/python/plotly/plotly/validators/surface/_customdata.py b/plotly/validators/surface/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_customdata.py rename to plotly/validators/surface/_customdata.py diff --git a/packages/python/plotly/plotly/validators/surface/_customdatasrc.py b/plotly/validators/surface/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_customdatasrc.py rename to plotly/validators/surface/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_hidesurface.py b/plotly/validators/surface/_hidesurface.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hidesurface.py rename to plotly/validators/surface/_hidesurface.py diff --git a/packages/python/plotly/plotly/validators/surface/_hoverinfo.py b/plotly/validators/surface/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hoverinfo.py rename to plotly/validators/surface/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/surface/_hoverinfosrc.py b/plotly/validators/surface/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hoverinfosrc.py rename to plotly/validators/surface/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_hoverlabel.py b/plotly/validators/surface/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hoverlabel.py rename to plotly/validators/surface/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/surface/_hovertemplate.py b/plotly/validators/surface/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hovertemplate.py rename to plotly/validators/surface/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/surface/_hovertemplatesrc.py b/plotly/validators/surface/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hovertemplatesrc.py rename to plotly/validators/surface/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_hovertext.py b/plotly/validators/surface/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hovertext.py rename to plotly/validators/surface/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/surface/_hovertextsrc.py b/plotly/validators/surface/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_hovertextsrc.py rename to plotly/validators/surface/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_ids.py b/plotly/validators/surface/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_ids.py rename to plotly/validators/surface/_ids.py diff --git a/packages/python/plotly/plotly/validators/surface/_idssrc.py b/plotly/validators/surface/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_idssrc.py rename to plotly/validators/surface/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_legend.py b/plotly/validators/surface/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_legend.py rename to plotly/validators/surface/_legend.py diff --git a/packages/python/plotly/plotly/validators/surface/_legendgroup.py b/plotly/validators/surface/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_legendgroup.py rename to plotly/validators/surface/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/surface/_legendgrouptitle.py b/plotly/validators/surface/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_legendgrouptitle.py rename to plotly/validators/surface/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/surface/_legendrank.py b/plotly/validators/surface/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_legendrank.py rename to plotly/validators/surface/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/surface/_legendwidth.py b/plotly/validators/surface/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_legendwidth.py rename to plotly/validators/surface/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/surface/_lighting.py b/plotly/validators/surface/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_lighting.py rename to plotly/validators/surface/_lighting.py diff --git a/packages/python/plotly/plotly/validators/surface/_lightposition.py b/plotly/validators/surface/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_lightposition.py rename to plotly/validators/surface/_lightposition.py diff --git a/packages/python/plotly/plotly/validators/surface/_meta.py b/plotly/validators/surface/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_meta.py rename to plotly/validators/surface/_meta.py diff --git a/packages/python/plotly/plotly/validators/surface/_metasrc.py b/plotly/validators/surface/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_metasrc.py rename to plotly/validators/surface/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_name.py b/plotly/validators/surface/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_name.py rename to plotly/validators/surface/_name.py diff --git a/packages/python/plotly/plotly/validators/surface/_opacity.py b/plotly/validators/surface/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_opacity.py rename to plotly/validators/surface/_opacity.py diff --git a/packages/python/plotly/plotly/validators/surface/_opacityscale.py b/plotly/validators/surface/_opacityscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_opacityscale.py rename to plotly/validators/surface/_opacityscale.py diff --git a/packages/python/plotly/plotly/validators/surface/_reversescale.py b/plotly/validators/surface/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_reversescale.py rename to plotly/validators/surface/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/surface/_scene.py b/plotly/validators/surface/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_scene.py rename to plotly/validators/surface/_scene.py diff --git a/packages/python/plotly/plotly/validators/surface/_showlegend.py b/plotly/validators/surface/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_showlegend.py rename to plotly/validators/surface/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/surface/_showscale.py b/plotly/validators/surface/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_showscale.py rename to plotly/validators/surface/_showscale.py diff --git a/packages/python/plotly/plotly/validators/surface/_stream.py b/plotly/validators/surface/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_stream.py rename to plotly/validators/surface/_stream.py diff --git a/packages/python/plotly/plotly/validators/surface/_surfacecolor.py b/plotly/validators/surface/_surfacecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_surfacecolor.py rename to plotly/validators/surface/_surfacecolor.py diff --git a/packages/python/plotly/plotly/validators/surface/_surfacecolorsrc.py b/plotly/validators/surface/_surfacecolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_surfacecolorsrc.py rename to plotly/validators/surface/_surfacecolorsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_text.py b/plotly/validators/surface/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_text.py rename to plotly/validators/surface/_text.py diff --git a/packages/python/plotly/plotly/validators/surface/_textsrc.py b/plotly/validators/surface/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_textsrc.py rename to plotly/validators/surface/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_uid.py b/plotly/validators/surface/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_uid.py rename to plotly/validators/surface/_uid.py diff --git a/packages/python/plotly/plotly/validators/surface/_uirevision.py b/plotly/validators/surface/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_uirevision.py rename to plotly/validators/surface/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/surface/_visible.py b/plotly/validators/surface/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_visible.py rename to plotly/validators/surface/_visible.py diff --git a/packages/python/plotly/plotly/validators/surface/_x.py b/plotly/validators/surface/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_x.py rename to plotly/validators/surface/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/_xcalendar.py b/plotly/validators/surface/_xcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_xcalendar.py rename to plotly/validators/surface/_xcalendar.py diff --git a/packages/python/plotly/plotly/validators/surface/_xhoverformat.py b/plotly/validators/surface/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_xhoverformat.py rename to plotly/validators/surface/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/surface/_xsrc.py b/plotly/validators/surface/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_xsrc.py rename to plotly/validators/surface/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_y.py b/plotly/validators/surface/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_y.py rename to plotly/validators/surface/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/_ycalendar.py b/plotly/validators/surface/_ycalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_ycalendar.py rename to plotly/validators/surface/_ycalendar.py diff --git a/packages/python/plotly/plotly/validators/surface/_yhoverformat.py b/plotly/validators/surface/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_yhoverformat.py rename to plotly/validators/surface/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/surface/_ysrc.py b/plotly/validators/surface/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_ysrc.py rename to plotly/validators/surface/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/surface/_z.py b/plotly/validators/surface/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_z.py rename to plotly/validators/surface/_z.py diff --git a/packages/python/plotly/plotly/validators/surface/_zcalendar.py b/plotly/validators/surface/_zcalendar.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_zcalendar.py rename to plotly/validators/surface/_zcalendar.py diff --git a/packages/python/plotly/plotly/validators/surface/_zhoverformat.py b/plotly/validators/surface/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_zhoverformat.py rename to plotly/validators/surface/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/surface/_zsrc.py b/plotly/validators/surface/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/_zsrc.py rename to plotly/validators/surface/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/__init__.py b/plotly/validators/surface/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/__init__.py rename to plotly/validators/surface/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_bgcolor.py b/plotly/validators/surface/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_bgcolor.py rename to plotly/validators/surface/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_bordercolor.py b/plotly/validators/surface/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_bordercolor.py rename to plotly/validators/surface/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_borderwidth.py b/plotly/validators/surface/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_borderwidth.py rename to plotly/validators/surface/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_dtick.py b/plotly/validators/surface/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_dtick.py rename to plotly/validators/surface/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_exponentformat.py b/plotly/validators/surface/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_exponentformat.py rename to plotly/validators/surface/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_labelalias.py b/plotly/validators/surface/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_labelalias.py rename to plotly/validators/surface/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_len.py b/plotly/validators/surface/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_len.py rename to plotly/validators/surface/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_lenmode.py b/plotly/validators/surface/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_lenmode.py rename to plotly/validators/surface/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_minexponent.py b/plotly/validators/surface/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_minexponent.py rename to plotly/validators/surface/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_nticks.py b/plotly/validators/surface/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_nticks.py rename to plotly/validators/surface/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_orientation.py b/plotly/validators/surface/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_orientation.py rename to plotly/validators/surface/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_outlinecolor.py b/plotly/validators/surface/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_outlinecolor.py rename to plotly/validators/surface/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_outlinewidth.py b/plotly/validators/surface/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_outlinewidth.py rename to plotly/validators/surface/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_separatethousands.py b/plotly/validators/surface/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_separatethousands.py rename to plotly/validators/surface/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_showexponent.py b/plotly/validators/surface/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_showexponent.py rename to plotly/validators/surface/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_showticklabels.py b/plotly/validators/surface/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_showticklabels.py rename to plotly/validators/surface/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_showtickprefix.py b/plotly/validators/surface/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_showtickprefix.py rename to plotly/validators/surface/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_showticksuffix.py b/plotly/validators/surface/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_showticksuffix.py rename to plotly/validators/surface/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_thickness.py b/plotly/validators/surface/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_thickness.py rename to plotly/validators/surface/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_thicknessmode.py b/plotly/validators/surface/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_thicknessmode.py rename to plotly/validators/surface/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tick0.py b/plotly/validators/surface/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tick0.py rename to plotly/validators/surface/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickangle.py b/plotly/validators/surface/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickangle.py rename to plotly/validators/surface/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickcolor.py b/plotly/validators/surface/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickcolor.py rename to plotly/validators/surface/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickfont.py b/plotly/validators/surface/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickfont.py rename to plotly/validators/surface/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickformat.py b/plotly/validators/surface/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickformat.py rename to plotly/validators/surface/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickformatstopdefaults.py b/plotly/validators/surface/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickformatstopdefaults.py rename to plotly/validators/surface/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickformatstops.py b/plotly/validators/surface/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickformatstops.py rename to plotly/validators/surface/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticklabeloverflow.py b/plotly/validators/surface/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticklabeloverflow.py rename to plotly/validators/surface/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticklabelposition.py b/plotly/validators/surface/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticklabelposition.py rename to plotly/validators/surface/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticklabelstep.py b/plotly/validators/surface/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticklabelstep.py rename to plotly/validators/surface/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticklen.py b/plotly/validators/surface/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticklen.py rename to plotly/validators/surface/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickmode.py b/plotly/validators/surface/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickmode.py rename to plotly/validators/surface/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickprefix.py b/plotly/validators/surface/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickprefix.py rename to plotly/validators/surface/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticks.py b/plotly/validators/surface/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticks.py rename to plotly/validators/surface/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticksuffix.py b/plotly/validators/surface/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticksuffix.py rename to plotly/validators/surface/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticktext.py b/plotly/validators/surface/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticktext.py rename to plotly/validators/surface/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ticktextsrc.py b/plotly/validators/surface/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ticktextsrc.py rename to plotly/validators/surface/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickvals.py b/plotly/validators/surface/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickvals.py rename to plotly/validators/surface/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickvalssrc.py b/plotly/validators/surface/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickvalssrc.py rename to plotly/validators/surface/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_tickwidth.py b/plotly/validators/surface/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_tickwidth.py rename to plotly/validators/surface/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_title.py b/plotly/validators/surface/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_title.py rename to plotly/validators/surface/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_x.py b/plotly/validators/surface/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_x.py rename to plotly/validators/surface/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_xanchor.py b/plotly/validators/surface/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_xanchor.py rename to plotly/validators/surface/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_xpad.py b/plotly/validators/surface/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_xpad.py rename to plotly/validators/surface/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_xref.py b/plotly/validators/surface/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_xref.py rename to plotly/validators/surface/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_y.py b/plotly/validators/surface/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_y.py rename to plotly/validators/surface/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_yanchor.py b/plotly/validators/surface/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_yanchor.py rename to plotly/validators/surface/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_ypad.py b/plotly/validators/surface/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_ypad.py rename to plotly/validators/surface/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/_yref.py b/plotly/validators/surface/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/_yref.py rename to plotly/validators/surface/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/__init__.py b/plotly/validators/surface/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/__init__.py rename to plotly/validators/surface/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_color.py b/plotly/validators/surface/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_color.py rename to plotly/validators/surface/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_family.py b/plotly/validators/surface/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_family.py rename to plotly/validators/surface/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_lineposition.py b/plotly/validators/surface/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_lineposition.py rename to plotly/validators/surface/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_shadow.py b/plotly/validators/surface/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_shadow.py rename to plotly/validators/surface/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_size.py b/plotly/validators/surface/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_size.py rename to plotly/validators/surface/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_style.py b/plotly/validators/surface/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_style.py rename to plotly/validators/surface/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_textcase.py b/plotly/validators/surface/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_textcase.py rename to plotly/validators/surface/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_variant.py b/plotly/validators/surface/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_variant.py rename to plotly/validators/surface/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_weight.py b/plotly/validators/surface/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickfont/_weight.py rename to plotly/validators/surface/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/__init__.py b/plotly/validators/surface/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/__init__.py rename to plotly/validators/surface/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/surface/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/surface/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_enabled.py b/plotly/validators/surface/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_enabled.py rename to plotly/validators/surface/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_name.py b/plotly/validators/surface/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_name.py rename to plotly/validators/surface/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/surface/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/surface/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_value.py b/plotly/validators/surface/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/tickformatstop/_value.py rename to plotly/validators/surface/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/__init__.py b/plotly/validators/surface/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/__init__.py rename to plotly/validators/surface/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/_font.py b/plotly/validators/surface/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/_font.py rename to plotly/validators/surface/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/_side.py b/plotly/validators/surface/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/_side.py rename to plotly/validators/surface/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/_text.py b/plotly/validators/surface/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/_text.py rename to plotly/validators/surface/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/__init__.py b/plotly/validators/surface/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/__init__.py rename to plotly/validators/surface/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_color.py b/plotly/validators/surface/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_color.py rename to plotly/validators/surface/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_family.py b/plotly/validators/surface/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_family.py rename to plotly/validators/surface/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_lineposition.py b/plotly/validators/surface/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_lineposition.py rename to plotly/validators/surface/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_shadow.py b/plotly/validators/surface/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_shadow.py rename to plotly/validators/surface/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_size.py b/plotly/validators/surface/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_size.py rename to plotly/validators/surface/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_style.py b/plotly/validators/surface/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_style.py rename to plotly/validators/surface/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_textcase.py b/plotly/validators/surface/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_textcase.py rename to plotly/validators/surface/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_variant.py b/plotly/validators/surface/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_variant.py rename to plotly/validators/surface/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/surface/colorbar/title/font/_weight.py b/plotly/validators/surface/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/colorbar/title/font/_weight.py rename to plotly/validators/surface/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/__init__.py b/plotly/validators/surface/contours/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/__init__.py rename to plotly/validators/surface/contours/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/_x.py b/plotly/validators/surface/contours/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/_x.py rename to plotly/validators/surface/contours/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/_y.py b/plotly/validators/surface/contours/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/_y.py rename to plotly/validators/surface/contours/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/_z.py b/plotly/validators/surface/contours/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/_z.py rename to plotly/validators/surface/contours/_z.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/__init__.py b/plotly/validators/surface/contours/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/__init__.py rename to plotly/validators/surface/contours/x/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_color.py b/plotly/validators/surface/contours/x/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_color.py rename to plotly/validators/surface/contours/x/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_end.py b/plotly/validators/surface/contours/x/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_end.py rename to plotly/validators/surface/contours/x/_end.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_highlight.py b/plotly/validators/surface/contours/x/_highlight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_highlight.py rename to plotly/validators/surface/contours/x/_highlight.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_highlightcolor.py b/plotly/validators/surface/contours/x/_highlightcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_highlightcolor.py rename to plotly/validators/surface/contours/x/_highlightcolor.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_highlightwidth.py b/plotly/validators/surface/contours/x/_highlightwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_highlightwidth.py rename to plotly/validators/surface/contours/x/_highlightwidth.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_project.py b/plotly/validators/surface/contours/x/_project.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_project.py rename to plotly/validators/surface/contours/x/_project.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_show.py b/plotly/validators/surface/contours/x/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_show.py rename to plotly/validators/surface/contours/x/_show.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_size.py b/plotly/validators/surface/contours/x/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_size.py rename to plotly/validators/surface/contours/x/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_start.py b/plotly/validators/surface/contours/x/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_start.py rename to plotly/validators/surface/contours/x/_start.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_usecolormap.py b/plotly/validators/surface/contours/x/_usecolormap.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_usecolormap.py rename to plotly/validators/surface/contours/x/_usecolormap.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/_width.py b/plotly/validators/surface/contours/x/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/_width.py rename to plotly/validators/surface/contours/x/_width.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/project/__init__.py b/plotly/validators/surface/contours/x/project/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/project/__init__.py rename to plotly/validators/surface/contours/x/project/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/project/_x.py b/plotly/validators/surface/contours/x/project/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/project/_x.py rename to plotly/validators/surface/contours/x/project/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/project/_y.py b/plotly/validators/surface/contours/x/project/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/project/_y.py rename to plotly/validators/surface/contours/x/project/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/x/project/_z.py b/plotly/validators/surface/contours/x/project/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/x/project/_z.py rename to plotly/validators/surface/contours/x/project/_z.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/__init__.py b/plotly/validators/surface/contours/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/__init__.py rename to plotly/validators/surface/contours/y/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_color.py b/plotly/validators/surface/contours/y/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_color.py rename to plotly/validators/surface/contours/y/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_end.py b/plotly/validators/surface/contours/y/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_end.py rename to plotly/validators/surface/contours/y/_end.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_highlight.py b/plotly/validators/surface/contours/y/_highlight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_highlight.py rename to plotly/validators/surface/contours/y/_highlight.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_highlightcolor.py b/plotly/validators/surface/contours/y/_highlightcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_highlightcolor.py rename to plotly/validators/surface/contours/y/_highlightcolor.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_highlightwidth.py b/plotly/validators/surface/contours/y/_highlightwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_highlightwidth.py rename to plotly/validators/surface/contours/y/_highlightwidth.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_project.py b/plotly/validators/surface/contours/y/_project.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_project.py rename to plotly/validators/surface/contours/y/_project.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_show.py b/plotly/validators/surface/contours/y/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_show.py rename to plotly/validators/surface/contours/y/_show.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_size.py b/plotly/validators/surface/contours/y/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_size.py rename to plotly/validators/surface/contours/y/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_start.py b/plotly/validators/surface/contours/y/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_start.py rename to plotly/validators/surface/contours/y/_start.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_usecolormap.py b/plotly/validators/surface/contours/y/_usecolormap.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_usecolormap.py rename to plotly/validators/surface/contours/y/_usecolormap.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/_width.py b/plotly/validators/surface/contours/y/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/_width.py rename to plotly/validators/surface/contours/y/_width.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/project/__init__.py b/plotly/validators/surface/contours/y/project/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/project/__init__.py rename to plotly/validators/surface/contours/y/project/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/project/_x.py b/plotly/validators/surface/contours/y/project/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/project/_x.py rename to plotly/validators/surface/contours/y/project/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/project/_y.py b/plotly/validators/surface/contours/y/project/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/project/_y.py rename to plotly/validators/surface/contours/y/project/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/y/project/_z.py b/plotly/validators/surface/contours/y/project/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/y/project/_z.py rename to plotly/validators/surface/contours/y/project/_z.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/__init__.py b/plotly/validators/surface/contours/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/__init__.py rename to plotly/validators/surface/contours/z/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_color.py b/plotly/validators/surface/contours/z/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_color.py rename to plotly/validators/surface/contours/z/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_end.py b/plotly/validators/surface/contours/z/_end.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_end.py rename to plotly/validators/surface/contours/z/_end.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_highlight.py b/plotly/validators/surface/contours/z/_highlight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_highlight.py rename to plotly/validators/surface/contours/z/_highlight.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_highlightcolor.py b/plotly/validators/surface/contours/z/_highlightcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_highlightcolor.py rename to plotly/validators/surface/contours/z/_highlightcolor.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_highlightwidth.py b/plotly/validators/surface/contours/z/_highlightwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_highlightwidth.py rename to plotly/validators/surface/contours/z/_highlightwidth.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_project.py b/plotly/validators/surface/contours/z/_project.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_project.py rename to plotly/validators/surface/contours/z/_project.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_show.py b/plotly/validators/surface/contours/z/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_show.py rename to plotly/validators/surface/contours/z/_show.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_size.py b/plotly/validators/surface/contours/z/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_size.py rename to plotly/validators/surface/contours/z/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_start.py b/plotly/validators/surface/contours/z/_start.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_start.py rename to plotly/validators/surface/contours/z/_start.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_usecolormap.py b/plotly/validators/surface/contours/z/_usecolormap.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_usecolormap.py rename to plotly/validators/surface/contours/z/_usecolormap.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/_width.py b/plotly/validators/surface/contours/z/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/_width.py rename to plotly/validators/surface/contours/z/_width.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/project/__init__.py b/plotly/validators/surface/contours/z/project/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/project/__init__.py rename to plotly/validators/surface/contours/z/project/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/project/_x.py b/plotly/validators/surface/contours/z/project/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/project/_x.py rename to plotly/validators/surface/contours/z/project/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/project/_y.py b/plotly/validators/surface/contours/z/project/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/project/_y.py rename to plotly/validators/surface/contours/z/project/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/contours/z/project/_z.py b/plotly/validators/surface/contours/z/project/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/contours/z/project/_z.py rename to plotly/validators/surface/contours/z/project/_z.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/__init__.py b/plotly/validators/surface/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/__init__.py rename to plotly/validators/surface/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_align.py b/plotly/validators/surface/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_align.py rename to plotly/validators/surface/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_alignsrc.py b/plotly/validators/surface/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_alignsrc.py rename to plotly/validators/surface/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_bgcolor.py b/plotly/validators/surface/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_bgcolor.py rename to plotly/validators/surface/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_bgcolorsrc.py b/plotly/validators/surface/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_bgcolorsrc.py rename to plotly/validators/surface/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_bordercolor.py b/plotly/validators/surface/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_bordercolor.py rename to plotly/validators/surface/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_bordercolorsrc.py b/plotly/validators/surface/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_bordercolorsrc.py rename to plotly/validators/surface/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_font.py b/plotly/validators/surface/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_font.py rename to plotly/validators/surface/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_namelength.py b/plotly/validators/surface/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_namelength.py rename to plotly/validators/surface/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/_namelengthsrc.py b/plotly/validators/surface/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/_namelengthsrc.py rename to plotly/validators/surface/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/__init__.py b/plotly/validators/surface/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/__init__.py rename to plotly/validators/surface/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_color.py b/plotly/validators/surface/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_color.py rename to plotly/validators/surface/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_colorsrc.py b/plotly/validators/surface/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_colorsrc.py rename to plotly/validators/surface/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_family.py b/plotly/validators/surface/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_family.py rename to plotly/validators/surface/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_familysrc.py b/plotly/validators/surface/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_familysrc.py rename to plotly/validators/surface/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_lineposition.py b/plotly/validators/surface/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_lineposition.py rename to plotly/validators/surface/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_linepositionsrc.py b/plotly/validators/surface/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/surface/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_shadow.py b/plotly/validators/surface/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_shadow.py rename to plotly/validators/surface/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_shadowsrc.py b/plotly/validators/surface/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_shadowsrc.py rename to plotly/validators/surface/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_size.py b/plotly/validators/surface/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_size.py rename to plotly/validators/surface/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_sizesrc.py b/plotly/validators/surface/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_sizesrc.py rename to plotly/validators/surface/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_style.py b/plotly/validators/surface/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_style.py rename to plotly/validators/surface/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_stylesrc.py b/plotly/validators/surface/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_stylesrc.py rename to plotly/validators/surface/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_textcase.py b/plotly/validators/surface/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_textcase.py rename to plotly/validators/surface/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_textcasesrc.py b/plotly/validators/surface/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_textcasesrc.py rename to plotly/validators/surface/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_variant.py b/plotly/validators/surface/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_variant.py rename to plotly/validators/surface/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_variantsrc.py b/plotly/validators/surface/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_variantsrc.py rename to plotly/validators/surface/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_weight.py b/plotly/validators/surface/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_weight.py rename to plotly/validators/surface/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/surface/hoverlabel/font/_weightsrc.py b/plotly/validators/surface/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/hoverlabel/font/_weightsrc.py rename to plotly/validators/surface/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/__init__.py b/plotly/validators/surface/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/__init__.py rename to plotly/validators/surface/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/_font.py b/plotly/validators/surface/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/_font.py rename to plotly/validators/surface/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/_text.py b/plotly/validators/surface/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/_text.py rename to plotly/validators/surface/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/__init__.py b/plotly/validators/surface/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/__init__.py rename to plotly/validators/surface/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_color.py b/plotly/validators/surface/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_color.py rename to plotly/validators/surface/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_family.py b/plotly/validators/surface/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_family.py rename to plotly/validators/surface/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_lineposition.py b/plotly/validators/surface/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_lineposition.py rename to plotly/validators/surface/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_shadow.py b/plotly/validators/surface/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_shadow.py rename to plotly/validators/surface/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_size.py b/plotly/validators/surface/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_size.py rename to plotly/validators/surface/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_style.py b/plotly/validators/surface/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_style.py rename to plotly/validators/surface/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_textcase.py b/plotly/validators/surface/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_textcase.py rename to plotly/validators/surface/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_variant.py b/plotly/validators/surface/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_variant.py rename to plotly/validators/surface/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_weight.py b/plotly/validators/surface/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/legendgrouptitle/font/_weight.py rename to plotly/validators/surface/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/surface/lighting/__init__.py b/plotly/validators/surface/lighting/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lighting/__init__.py rename to plotly/validators/surface/lighting/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/lighting/_ambient.py b/plotly/validators/surface/lighting/_ambient.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lighting/_ambient.py rename to plotly/validators/surface/lighting/_ambient.py diff --git a/packages/python/plotly/plotly/validators/surface/lighting/_diffuse.py b/plotly/validators/surface/lighting/_diffuse.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lighting/_diffuse.py rename to plotly/validators/surface/lighting/_diffuse.py diff --git a/packages/python/plotly/plotly/validators/surface/lighting/_fresnel.py b/plotly/validators/surface/lighting/_fresnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lighting/_fresnel.py rename to plotly/validators/surface/lighting/_fresnel.py diff --git a/packages/python/plotly/plotly/validators/surface/lighting/_roughness.py b/plotly/validators/surface/lighting/_roughness.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lighting/_roughness.py rename to plotly/validators/surface/lighting/_roughness.py diff --git a/packages/python/plotly/plotly/validators/surface/lighting/_specular.py b/plotly/validators/surface/lighting/_specular.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lighting/_specular.py rename to plotly/validators/surface/lighting/_specular.py diff --git a/packages/python/plotly/plotly/validators/surface/lightposition/__init__.py b/plotly/validators/surface/lightposition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lightposition/__init__.py rename to plotly/validators/surface/lightposition/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/lightposition/_x.py b/plotly/validators/surface/lightposition/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lightposition/_x.py rename to plotly/validators/surface/lightposition/_x.py diff --git a/packages/python/plotly/plotly/validators/surface/lightposition/_y.py b/plotly/validators/surface/lightposition/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lightposition/_y.py rename to plotly/validators/surface/lightposition/_y.py diff --git a/packages/python/plotly/plotly/validators/surface/lightposition/_z.py b/plotly/validators/surface/lightposition/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/lightposition/_z.py rename to plotly/validators/surface/lightposition/_z.py diff --git a/packages/python/plotly/plotly/validators/surface/stream/__init__.py b/plotly/validators/surface/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/stream/__init__.py rename to plotly/validators/surface/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/surface/stream/_maxpoints.py b/plotly/validators/surface/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/stream/_maxpoints.py rename to plotly/validators/surface/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/surface/stream/_token.py b/plotly/validators/surface/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/surface/stream/_token.py rename to plotly/validators/surface/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/table/__init__.py b/plotly/validators/table/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/__init__.py rename to plotly/validators/table/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/_cells.py b/plotly/validators/table/_cells.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_cells.py rename to plotly/validators/table/_cells.py diff --git a/packages/python/plotly/plotly/validators/table/_columnorder.py b/plotly/validators/table/_columnorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_columnorder.py rename to plotly/validators/table/_columnorder.py diff --git a/packages/python/plotly/plotly/validators/table/_columnordersrc.py b/plotly/validators/table/_columnordersrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_columnordersrc.py rename to plotly/validators/table/_columnordersrc.py diff --git a/packages/python/plotly/plotly/validators/table/_columnwidth.py b/plotly/validators/table/_columnwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_columnwidth.py rename to plotly/validators/table/_columnwidth.py diff --git a/packages/python/plotly/plotly/validators/table/_columnwidthsrc.py b/plotly/validators/table/_columnwidthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_columnwidthsrc.py rename to plotly/validators/table/_columnwidthsrc.py diff --git a/packages/python/plotly/plotly/validators/table/_customdata.py b/plotly/validators/table/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_customdata.py rename to plotly/validators/table/_customdata.py diff --git a/packages/python/plotly/plotly/validators/table/_customdatasrc.py b/plotly/validators/table/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_customdatasrc.py rename to plotly/validators/table/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/table/_domain.py b/plotly/validators/table/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_domain.py rename to plotly/validators/table/_domain.py diff --git a/packages/python/plotly/plotly/validators/table/_header.py b/plotly/validators/table/_header.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_header.py rename to plotly/validators/table/_header.py diff --git a/packages/python/plotly/plotly/validators/table/_hoverinfo.py b/plotly/validators/table/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_hoverinfo.py rename to plotly/validators/table/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/table/_hoverinfosrc.py b/plotly/validators/table/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_hoverinfosrc.py rename to plotly/validators/table/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/table/_hoverlabel.py b/plotly/validators/table/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_hoverlabel.py rename to plotly/validators/table/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/table/_ids.py b/plotly/validators/table/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_ids.py rename to plotly/validators/table/_ids.py diff --git a/packages/python/plotly/plotly/validators/table/_idssrc.py b/plotly/validators/table/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_idssrc.py rename to plotly/validators/table/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/table/_legend.py b/plotly/validators/table/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_legend.py rename to plotly/validators/table/_legend.py diff --git a/packages/python/plotly/plotly/validators/table/_legendgrouptitle.py b/plotly/validators/table/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_legendgrouptitle.py rename to plotly/validators/table/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/table/_legendrank.py b/plotly/validators/table/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_legendrank.py rename to plotly/validators/table/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/table/_legendwidth.py b/plotly/validators/table/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_legendwidth.py rename to plotly/validators/table/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/table/_meta.py b/plotly/validators/table/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_meta.py rename to plotly/validators/table/_meta.py diff --git a/packages/python/plotly/plotly/validators/table/_metasrc.py b/plotly/validators/table/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_metasrc.py rename to plotly/validators/table/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/table/_name.py b/plotly/validators/table/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_name.py rename to plotly/validators/table/_name.py diff --git a/packages/python/plotly/plotly/validators/table/_stream.py b/plotly/validators/table/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_stream.py rename to plotly/validators/table/_stream.py diff --git a/packages/python/plotly/plotly/validators/table/_uid.py b/plotly/validators/table/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_uid.py rename to plotly/validators/table/_uid.py diff --git a/packages/python/plotly/plotly/validators/table/_uirevision.py b/plotly/validators/table/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_uirevision.py rename to plotly/validators/table/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/table/_visible.py b/plotly/validators/table/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/_visible.py rename to plotly/validators/table/_visible.py diff --git a/packages/python/plotly/plotly/validators/table/cells/__init__.py b/plotly/validators/table/cells/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/__init__.py rename to plotly/validators/table/cells/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_align.py b/plotly/validators/table/cells/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_align.py rename to plotly/validators/table/cells/_align.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_alignsrc.py b/plotly/validators/table/cells/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_alignsrc.py rename to plotly/validators/table/cells/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_fill.py b/plotly/validators/table/cells/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_fill.py rename to plotly/validators/table/cells/_fill.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_font.py b/plotly/validators/table/cells/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_font.py rename to plotly/validators/table/cells/_font.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_format.py b/plotly/validators/table/cells/_format.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_format.py rename to plotly/validators/table/cells/_format.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_formatsrc.py b/plotly/validators/table/cells/_formatsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_formatsrc.py rename to plotly/validators/table/cells/_formatsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_height.py b/plotly/validators/table/cells/_height.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_height.py rename to plotly/validators/table/cells/_height.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_line.py b/plotly/validators/table/cells/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_line.py rename to plotly/validators/table/cells/_line.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_prefix.py b/plotly/validators/table/cells/_prefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_prefix.py rename to plotly/validators/table/cells/_prefix.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_prefixsrc.py b/plotly/validators/table/cells/_prefixsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_prefixsrc.py rename to plotly/validators/table/cells/_prefixsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_suffix.py b/plotly/validators/table/cells/_suffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_suffix.py rename to plotly/validators/table/cells/_suffix.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_suffixsrc.py b/plotly/validators/table/cells/_suffixsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_suffixsrc.py rename to plotly/validators/table/cells/_suffixsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_values.py b/plotly/validators/table/cells/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_values.py rename to plotly/validators/table/cells/_values.py diff --git a/packages/python/plotly/plotly/validators/table/cells/_valuessrc.py b/plotly/validators/table/cells/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/_valuessrc.py rename to plotly/validators/table/cells/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/fill/__init__.py b/plotly/validators/table/cells/fill/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/fill/__init__.py rename to plotly/validators/table/cells/fill/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/cells/fill/_color.py b/plotly/validators/table/cells/fill/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/fill/_color.py rename to plotly/validators/table/cells/fill/_color.py diff --git a/packages/python/plotly/plotly/validators/table/cells/fill/_colorsrc.py b/plotly/validators/table/cells/fill/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/fill/_colorsrc.py rename to plotly/validators/table/cells/fill/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/__init__.py b/plotly/validators/table/cells/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/__init__.py rename to plotly/validators/table/cells/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_color.py b/plotly/validators/table/cells/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_color.py rename to plotly/validators/table/cells/font/_color.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_colorsrc.py b/plotly/validators/table/cells/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_colorsrc.py rename to plotly/validators/table/cells/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_family.py b/plotly/validators/table/cells/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_family.py rename to plotly/validators/table/cells/font/_family.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_familysrc.py b/plotly/validators/table/cells/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_familysrc.py rename to plotly/validators/table/cells/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_lineposition.py b/plotly/validators/table/cells/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_lineposition.py rename to plotly/validators/table/cells/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_linepositionsrc.py b/plotly/validators/table/cells/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_linepositionsrc.py rename to plotly/validators/table/cells/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_shadow.py b/plotly/validators/table/cells/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_shadow.py rename to plotly/validators/table/cells/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_shadowsrc.py b/plotly/validators/table/cells/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_shadowsrc.py rename to plotly/validators/table/cells/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_size.py b/plotly/validators/table/cells/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_size.py rename to plotly/validators/table/cells/font/_size.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_sizesrc.py b/plotly/validators/table/cells/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_sizesrc.py rename to plotly/validators/table/cells/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_style.py b/plotly/validators/table/cells/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_style.py rename to plotly/validators/table/cells/font/_style.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_stylesrc.py b/plotly/validators/table/cells/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_stylesrc.py rename to plotly/validators/table/cells/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_textcase.py b/plotly/validators/table/cells/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_textcase.py rename to plotly/validators/table/cells/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_textcasesrc.py b/plotly/validators/table/cells/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_textcasesrc.py rename to plotly/validators/table/cells/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_variant.py b/plotly/validators/table/cells/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_variant.py rename to plotly/validators/table/cells/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_variantsrc.py b/plotly/validators/table/cells/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_variantsrc.py rename to plotly/validators/table/cells/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_weight.py b/plotly/validators/table/cells/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_weight.py rename to plotly/validators/table/cells/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/table/cells/font/_weightsrc.py b/plotly/validators/table/cells/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/font/_weightsrc.py rename to plotly/validators/table/cells/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/line/__init__.py b/plotly/validators/table/cells/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/line/__init__.py rename to plotly/validators/table/cells/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/cells/line/_color.py b/plotly/validators/table/cells/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/line/_color.py rename to plotly/validators/table/cells/line/_color.py diff --git a/packages/python/plotly/plotly/validators/table/cells/line/_colorsrc.py b/plotly/validators/table/cells/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/line/_colorsrc.py rename to plotly/validators/table/cells/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/cells/line/_width.py b/plotly/validators/table/cells/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/line/_width.py rename to plotly/validators/table/cells/line/_width.py diff --git a/packages/python/plotly/plotly/validators/table/cells/line/_widthsrc.py b/plotly/validators/table/cells/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/cells/line/_widthsrc.py rename to plotly/validators/table/cells/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/table/domain/__init__.py b/plotly/validators/table/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/domain/__init__.py rename to plotly/validators/table/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/domain/_column.py b/plotly/validators/table/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/domain/_column.py rename to plotly/validators/table/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/table/domain/_row.py b/plotly/validators/table/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/domain/_row.py rename to plotly/validators/table/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/table/domain/_x.py b/plotly/validators/table/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/domain/_x.py rename to plotly/validators/table/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/table/domain/_y.py b/plotly/validators/table/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/domain/_y.py rename to plotly/validators/table/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/table/header/__init__.py b/plotly/validators/table/header/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/__init__.py rename to plotly/validators/table/header/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/header/_align.py b/plotly/validators/table/header/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_align.py rename to plotly/validators/table/header/_align.py diff --git a/packages/python/plotly/plotly/validators/table/header/_alignsrc.py b/plotly/validators/table/header/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_alignsrc.py rename to plotly/validators/table/header/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/_fill.py b/plotly/validators/table/header/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_fill.py rename to plotly/validators/table/header/_fill.py diff --git a/packages/python/plotly/plotly/validators/table/header/_font.py b/plotly/validators/table/header/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_font.py rename to plotly/validators/table/header/_font.py diff --git a/packages/python/plotly/plotly/validators/table/header/_format.py b/plotly/validators/table/header/_format.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_format.py rename to plotly/validators/table/header/_format.py diff --git a/packages/python/plotly/plotly/validators/table/header/_formatsrc.py b/plotly/validators/table/header/_formatsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_formatsrc.py rename to plotly/validators/table/header/_formatsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/_height.py b/plotly/validators/table/header/_height.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_height.py rename to plotly/validators/table/header/_height.py diff --git a/packages/python/plotly/plotly/validators/table/header/_line.py b/plotly/validators/table/header/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_line.py rename to plotly/validators/table/header/_line.py diff --git a/packages/python/plotly/plotly/validators/table/header/_prefix.py b/plotly/validators/table/header/_prefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_prefix.py rename to plotly/validators/table/header/_prefix.py diff --git a/packages/python/plotly/plotly/validators/table/header/_prefixsrc.py b/plotly/validators/table/header/_prefixsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_prefixsrc.py rename to plotly/validators/table/header/_prefixsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/_suffix.py b/plotly/validators/table/header/_suffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_suffix.py rename to plotly/validators/table/header/_suffix.py diff --git a/packages/python/plotly/plotly/validators/table/header/_suffixsrc.py b/plotly/validators/table/header/_suffixsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_suffixsrc.py rename to plotly/validators/table/header/_suffixsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/_values.py b/plotly/validators/table/header/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_values.py rename to plotly/validators/table/header/_values.py diff --git a/packages/python/plotly/plotly/validators/table/header/_valuessrc.py b/plotly/validators/table/header/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/_valuessrc.py rename to plotly/validators/table/header/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/fill/__init__.py b/plotly/validators/table/header/fill/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/fill/__init__.py rename to plotly/validators/table/header/fill/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/header/fill/_color.py b/plotly/validators/table/header/fill/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/fill/_color.py rename to plotly/validators/table/header/fill/_color.py diff --git a/packages/python/plotly/plotly/validators/table/header/fill/_colorsrc.py b/plotly/validators/table/header/fill/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/fill/_colorsrc.py rename to plotly/validators/table/header/fill/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/__init__.py b/plotly/validators/table/header/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/__init__.py rename to plotly/validators/table/header/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_color.py b/plotly/validators/table/header/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_color.py rename to plotly/validators/table/header/font/_color.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_colorsrc.py b/plotly/validators/table/header/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_colorsrc.py rename to plotly/validators/table/header/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_family.py b/plotly/validators/table/header/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_family.py rename to plotly/validators/table/header/font/_family.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_familysrc.py b/plotly/validators/table/header/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_familysrc.py rename to plotly/validators/table/header/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_lineposition.py b/plotly/validators/table/header/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_lineposition.py rename to plotly/validators/table/header/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_linepositionsrc.py b/plotly/validators/table/header/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_linepositionsrc.py rename to plotly/validators/table/header/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_shadow.py b/plotly/validators/table/header/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_shadow.py rename to plotly/validators/table/header/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_shadowsrc.py b/plotly/validators/table/header/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_shadowsrc.py rename to plotly/validators/table/header/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_size.py b/plotly/validators/table/header/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_size.py rename to plotly/validators/table/header/font/_size.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_sizesrc.py b/plotly/validators/table/header/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_sizesrc.py rename to plotly/validators/table/header/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_style.py b/plotly/validators/table/header/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_style.py rename to plotly/validators/table/header/font/_style.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_stylesrc.py b/plotly/validators/table/header/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_stylesrc.py rename to plotly/validators/table/header/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_textcase.py b/plotly/validators/table/header/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_textcase.py rename to plotly/validators/table/header/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_textcasesrc.py b/plotly/validators/table/header/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_textcasesrc.py rename to plotly/validators/table/header/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_variant.py b/plotly/validators/table/header/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_variant.py rename to plotly/validators/table/header/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_variantsrc.py b/plotly/validators/table/header/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_variantsrc.py rename to plotly/validators/table/header/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_weight.py b/plotly/validators/table/header/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_weight.py rename to plotly/validators/table/header/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/table/header/font/_weightsrc.py b/plotly/validators/table/header/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/font/_weightsrc.py rename to plotly/validators/table/header/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/line/__init__.py b/plotly/validators/table/header/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/line/__init__.py rename to plotly/validators/table/header/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/header/line/_color.py b/plotly/validators/table/header/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/line/_color.py rename to plotly/validators/table/header/line/_color.py diff --git a/packages/python/plotly/plotly/validators/table/header/line/_colorsrc.py b/plotly/validators/table/header/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/line/_colorsrc.py rename to plotly/validators/table/header/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/header/line/_width.py b/plotly/validators/table/header/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/line/_width.py rename to plotly/validators/table/header/line/_width.py diff --git a/packages/python/plotly/plotly/validators/table/header/line/_widthsrc.py b/plotly/validators/table/header/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/header/line/_widthsrc.py rename to plotly/validators/table/header/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/__init__.py b/plotly/validators/table/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/__init__.py rename to plotly/validators/table/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_align.py b/plotly/validators/table/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_align.py rename to plotly/validators/table/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_alignsrc.py b/plotly/validators/table/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_alignsrc.py rename to plotly/validators/table/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_bgcolor.py b/plotly/validators/table/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_bgcolor.py rename to plotly/validators/table/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_bgcolorsrc.py b/plotly/validators/table/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_bgcolorsrc.py rename to plotly/validators/table/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_bordercolor.py b/plotly/validators/table/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_bordercolor.py rename to plotly/validators/table/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_bordercolorsrc.py b/plotly/validators/table/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_bordercolorsrc.py rename to plotly/validators/table/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_font.py b/plotly/validators/table/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_font.py rename to plotly/validators/table/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_namelength.py b/plotly/validators/table/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_namelength.py rename to plotly/validators/table/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/_namelengthsrc.py b/plotly/validators/table/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/_namelengthsrc.py rename to plotly/validators/table/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/__init__.py b/plotly/validators/table/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/__init__.py rename to plotly/validators/table/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_color.py b/plotly/validators/table/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_color.py rename to plotly/validators/table/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_colorsrc.py b/plotly/validators/table/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_colorsrc.py rename to plotly/validators/table/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_family.py b/plotly/validators/table/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_family.py rename to plotly/validators/table/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_familysrc.py b/plotly/validators/table/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_familysrc.py rename to plotly/validators/table/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_lineposition.py b/plotly/validators/table/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_lineposition.py rename to plotly/validators/table/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_linepositionsrc.py b/plotly/validators/table/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/table/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_shadow.py b/plotly/validators/table/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_shadow.py rename to plotly/validators/table/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_shadowsrc.py b/plotly/validators/table/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_shadowsrc.py rename to plotly/validators/table/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_size.py b/plotly/validators/table/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_size.py rename to plotly/validators/table/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_sizesrc.py b/plotly/validators/table/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_sizesrc.py rename to plotly/validators/table/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_style.py b/plotly/validators/table/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_style.py rename to plotly/validators/table/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_stylesrc.py b/plotly/validators/table/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_stylesrc.py rename to plotly/validators/table/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_textcase.py b/plotly/validators/table/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_textcase.py rename to plotly/validators/table/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_textcasesrc.py b/plotly/validators/table/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_textcasesrc.py rename to plotly/validators/table/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_variant.py b/plotly/validators/table/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_variant.py rename to plotly/validators/table/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_variantsrc.py b/plotly/validators/table/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_variantsrc.py rename to plotly/validators/table/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_weight.py b/plotly/validators/table/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_weight.py rename to plotly/validators/table/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/table/hoverlabel/font/_weightsrc.py b/plotly/validators/table/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/hoverlabel/font/_weightsrc.py rename to plotly/validators/table/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/__init__.py b/plotly/validators/table/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/__init__.py rename to plotly/validators/table/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/_font.py b/plotly/validators/table/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/_font.py rename to plotly/validators/table/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/_text.py b/plotly/validators/table/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/_text.py rename to plotly/validators/table/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/__init__.py b/plotly/validators/table/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/__init__.py rename to plotly/validators/table/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_color.py b/plotly/validators/table/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_color.py rename to plotly/validators/table/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_family.py b/plotly/validators/table/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_family.py rename to plotly/validators/table/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_lineposition.py b/plotly/validators/table/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_lineposition.py rename to plotly/validators/table/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_shadow.py b/plotly/validators/table/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_shadow.py rename to plotly/validators/table/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_size.py b/plotly/validators/table/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_size.py rename to plotly/validators/table/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_style.py b/plotly/validators/table/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_style.py rename to plotly/validators/table/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_textcase.py b/plotly/validators/table/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_textcase.py rename to plotly/validators/table/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_variant.py b/plotly/validators/table/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_variant.py rename to plotly/validators/table/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_weight.py b/plotly/validators/table/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/legendgrouptitle/font/_weight.py rename to plotly/validators/table/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/table/stream/__init__.py b/plotly/validators/table/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/stream/__init__.py rename to plotly/validators/table/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/table/stream/_maxpoints.py b/plotly/validators/table/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/stream/_maxpoints.py rename to plotly/validators/table/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/table/stream/_token.py b/plotly/validators/table/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/table/stream/_token.py rename to plotly/validators/table/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/treemap/__init__.py b/plotly/validators/treemap/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/__init__.py rename to plotly/validators/treemap/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/_branchvalues.py b/plotly/validators/treemap/_branchvalues.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_branchvalues.py rename to plotly/validators/treemap/_branchvalues.py diff --git a/packages/python/plotly/plotly/validators/treemap/_count.py b/plotly/validators/treemap/_count.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_count.py rename to plotly/validators/treemap/_count.py diff --git a/packages/python/plotly/plotly/validators/treemap/_customdata.py b/plotly/validators/treemap/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_customdata.py rename to plotly/validators/treemap/_customdata.py diff --git a/packages/python/plotly/plotly/validators/treemap/_customdatasrc.py b/plotly/validators/treemap/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_customdatasrc.py rename to plotly/validators/treemap/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_domain.py b/plotly/validators/treemap/_domain.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_domain.py rename to plotly/validators/treemap/_domain.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hoverinfo.py b/plotly/validators/treemap/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hoverinfo.py rename to plotly/validators/treemap/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hoverinfosrc.py b/plotly/validators/treemap/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hoverinfosrc.py rename to plotly/validators/treemap/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hoverlabel.py b/plotly/validators/treemap/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hoverlabel.py rename to plotly/validators/treemap/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hovertemplate.py b/plotly/validators/treemap/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hovertemplate.py rename to plotly/validators/treemap/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hovertemplatesrc.py b/plotly/validators/treemap/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hovertemplatesrc.py rename to plotly/validators/treemap/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hovertext.py b/plotly/validators/treemap/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hovertext.py rename to plotly/validators/treemap/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/treemap/_hovertextsrc.py b/plotly/validators/treemap/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_hovertextsrc.py rename to plotly/validators/treemap/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_ids.py b/plotly/validators/treemap/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_ids.py rename to plotly/validators/treemap/_ids.py diff --git a/packages/python/plotly/plotly/validators/treemap/_idssrc.py b/plotly/validators/treemap/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_idssrc.py rename to plotly/validators/treemap/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_insidetextfont.py b/plotly/validators/treemap/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_insidetextfont.py rename to plotly/validators/treemap/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/treemap/_labels.py b/plotly/validators/treemap/_labels.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_labels.py rename to plotly/validators/treemap/_labels.py diff --git a/packages/python/plotly/plotly/validators/treemap/_labelssrc.py b/plotly/validators/treemap/_labelssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_labelssrc.py rename to plotly/validators/treemap/_labelssrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_legend.py b/plotly/validators/treemap/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_legend.py rename to plotly/validators/treemap/_legend.py diff --git a/packages/python/plotly/plotly/validators/treemap/_legendgrouptitle.py b/plotly/validators/treemap/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_legendgrouptitle.py rename to plotly/validators/treemap/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/treemap/_legendrank.py b/plotly/validators/treemap/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_legendrank.py rename to plotly/validators/treemap/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/treemap/_legendwidth.py b/plotly/validators/treemap/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_legendwidth.py rename to plotly/validators/treemap/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/treemap/_level.py b/plotly/validators/treemap/_level.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_level.py rename to plotly/validators/treemap/_level.py diff --git a/packages/python/plotly/plotly/validators/treemap/_marker.py b/plotly/validators/treemap/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_marker.py rename to plotly/validators/treemap/_marker.py diff --git a/packages/python/plotly/plotly/validators/treemap/_maxdepth.py b/plotly/validators/treemap/_maxdepth.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_maxdepth.py rename to plotly/validators/treemap/_maxdepth.py diff --git a/packages/python/plotly/plotly/validators/treemap/_meta.py b/plotly/validators/treemap/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_meta.py rename to plotly/validators/treemap/_meta.py diff --git a/packages/python/plotly/plotly/validators/treemap/_metasrc.py b/plotly/validators/treemap/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_metasrc.py rename to plotly/validators/treemap/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_name.py b/plotly/validators/treemap/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_name.py rename to plotly/validators/treemap/_name.py diff --git a/packages/python/plotly/plotly/validators/treemap/_opacity.py b/plotly/validators/treemap/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_opacity.py rename to plotly/validators/treemap/_opacity.py diff --git a/packages/python/plotly/plotly/validators/treemap/_outsidetextfont.py b/plotly/validators/treemap/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_outsidetextfont.py rename to plotly/validators/treemap/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/treemap/_parents.py b/plotly/validators/treemap/_parents.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_parents.py rename to plotly/validators/treemap/_parents.py diff --git a/packages/python/plotly/plotly/validators/treemap/_parentssrc.py b/plotly/validators/treemap/_parentssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_parentssrc.py rename to plotly/validators/treemap/_parentssrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_pathbar.py b/plotly/validators/treemap/_pathbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_pathbar.py rename to plotly/validators/treemap/_pathbar.py diff --git a/packages/python/plotly/plotly/validators/treemap/_root.py b/plotly/validators/treemap/_root.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_root.py rename to plotly/validators/treemap/_root.py diff --git a/packages/python/plotly/plotly/validators/treemap/_sort.py b/plotly/validators/treemap/_sort.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_sort.py rename to plotly/validators/treemap/_sort.py diff --git a/packages/python/plotly/plotly/validators/treemap/_stream.py b/plotly/validators/treemap/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_stream.py rename to plotly/validators/treemap/_stream.py diff --git a/packages/python/plotly/plotly/validators/treemap/_text.py b/plotly/validators/treemap/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_text.py rename to plotly/validators/treemap/_text.py diff --git a/packages/python/plotly/plotly/validators/treemap/_textfont.py b/plotly/validators/treemap/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_textfont.py rename to plotly/validators/treemap/_textfont.py diff --git a/packages/python/plotly/plotly/validators/treemap/_textinfo.py b/plotly/validators/treemap/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_textinfo.py rename to plotly/validators/treemap/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/treemap/_textposition.py b/plotly/validators/treemap/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_textposition.py rename to plotly/validators/treemap/_textposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/_textsrc.py b/plotly/validators/treemap/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_textsrc.py rename to plotly/validators/treemap/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_texttemplate.py b/plotly/validators/treemap/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_texttemplate.py rename to plotly/validators/treemap/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/treemap/_texttemplatesrc.py b/plotly/validators/treemap/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_texttemplatesrc.py rename to plotly/validators/treemap/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_tiling.py b/plotly/validators/treemap/_tiling.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_tiling.py rename to plotly/validators/treemap/_tiling.py diff --git a/packages/python/plotly/plotly/validators/treemap/_uid.py b/plotly/validators/treemap/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_uid.py rename to plotly/validators/treemap/_uid.py diff --git a/packages/python/plotly/plotly/validators/treemap/_uirevision.py b/plotly/validators/treemap/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_uirevision.py rename to plotly/validators/treemap/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/treemap/_values.py b/plotly/validators/treemap/_values.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_values.py rename to plotly/validators/treemap/_values.py diff --git a/packages/python/plotly/plotly/validators/treemap/_valuessrc.py b/plotly/validators/treemap/_valuessrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_valuessrc.py rename to plotly/validators/treemap/_valuessrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/_visible.py b/plotly/validators/treemap/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/_visible.py rename to plotly/validators/treemap/_visible.py diff --git a/packages/python/plotly/plotly/validators/treemap/domain/__init__.py b/plotly/validators/treemap/domain/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/domain/__init__.py rename to plotly/validators/treemap/domain/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/domain/_column.py b/plotly/validators/treemap/domain/_column.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/domain/_column.py rename to plotly/validators/treemap/domain/_column.py diff --git a/packages/python/plotly/plotly/validators/treemap/domain/_row.py b/plotly/validators/treemap/domain/_row.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/domain/_row.py rename to plotly/validators/treemap/domain/_row.py diff --git a/packages/python/plotly/plotly/validators/treemap/domain/_x.py b/plotly/validators/treemap/domain/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/domain/_x.py rename to plotly/validators/treemap/domain/_x.py diff --git a/packages/python/plotly/plotly/validators/treemap/domain/_y.py b/plotly/validators/treemap/domain/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/domain/_y.py rename to plotly/validators/treemap/domain/_y.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/__init__.py b/plotly/validators/treemap/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/__init__.py rename to plotly/validators/treemap/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_align.py b/plotly/validators/treemap/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_align.py rename to plotly/validators/treemap/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_alignsrc.py b/plotly/validators/treemap/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_alignsrc.py rename to plotly/validators/treemap/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_bgcolor.py b/plotly/validators/treemap/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_bgcolor.py rename to plotly/validators/treemap/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_bgcolorsrc.py b/plotly/validators/treemap/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_bgcolorsrc.py rename to plotly/validators/treemap/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_bordercolor.py b/plotly/validators/treemap/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_bordercolor.py rename to plotly/validators/treemap/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_bordercolorsrc.py b/plotly/validators/treemap/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_bordercolorsrc.py rename to plotly/validators/treemap/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_font.py b/plotly/validators/treemap/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_font.py rename to plotly/validators/treemap/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_namelength.py b/plotly/validators/treemap/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_namelength.py rename to plotly/validators/treemap/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/_namelengthsrc.py b/plotly/validators/treemap/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/_namelengthsrc.py rename to plotly/validators/treemap/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/__init__.py b/plotly/validators/treemap/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/__init__.py rename to plotly/validators/treemap/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_color.py b/plotly/validators/treemap/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_color.py rename to plotly/validators/treemap/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_colorsrc.py b/plotly/validators/treemap/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_colorsrc.py rename to plotly/validators/treemap/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_family.py b/plotly/validators/treemap/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_family.py rename to plotly/validators/treemap/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_familysrc.py b/plotly/validators/treemap/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_familysrc.py rename to plotly/validators/treemap/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_lineposition.py b/plotly/validators/treemap/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_lineposition.py rename to plotly/validators/treemap/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_linepositionsrc.py b/plotly/validators/treemap/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/treemap/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_shadow.py b/plotly/validators/treemap/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_shadow.py rename to plotly/validators/treemap/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_shadowsrc.py b/plotly/validators/treemap/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_shadowsrc.py rename to plotly/validators/treemap/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_size.py b/plotly/validators/treemap/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_size.py rename to plotly/validators/treemap/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_sizesrc.py b/plotly/validators/treemap/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_sizesrc.py rename to plotly/validators/treemap/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_style.py b/plotly/validators/treemap/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_style.py rename to plotly/validators/treemap/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_stylesrc.py b/plotly/validators/treemap/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_stylesrc.py rename to plotly/validators/treemap/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_textcase.py b/plotly/validators/treemap/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_textcase.py rename to plotly/validators/treemap/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_textcasesrc.py b/plotly/validators/treemap/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_textcasesrc.py rename to plotly/validators/treemap/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_variant.py b/plotly/validators/treemap/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_variant.py rename to plotly/validators/treemap/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_variantsrc.py b/plotly/validators/treemap/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_variantsrc.py rename to plotly/validators/treemap/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_weight.py b/plotly/validators/treemap/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_weight.py rename to plotly/validators/treemap/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_weightsrc.py b/plotly/validators/treemap/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/hoverlabel/font/_weightsrc.py rename to plotly/validators/treemap/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/__init__.py b/plotly/validators/treemap/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/__init__.py rename to plotly/validators/treemap/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_color.py b/plotly/validators/treemap/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_color.py rename to plotly/validators/treemap/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_colorsrc.py b/plotly/validators/treemap/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_colorsrc.py rename to plotly/validators/treemap/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_family.py b/plotly/validators/treemap/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_family.py rename to plotly/validators/treemap/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_familysrc.py b/plotly/validators/treemap/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_familysrc.py rename to plotly/validators/treemap/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_lineposition.py b/plotly/validators/treemap/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_lineposition.py rename to plotly/validators/treemap/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_linepositionsrc.py b/plotly/validators/treemap/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_linepositionsrc.py rename to plotly/validators/treemap/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_shadow.py b/plotly/validators/treemap/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_shadow.py rename to plotly/validators/treemap/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_shadowsrc.py b/plotly/validators/treemap/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_shadowsrc.py rename to plotly/validators/treemap/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_size.py b/plotly/validators/treemap/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_size.py rename to plotly/validators/treemap/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_sizesrc.py b/plotly/validators/treemap/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_sizesrc.py rename to plotly/validators/treemap/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_style.py b/plotly/validators/treemap/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_style.py rename to plotly/validators/treemap/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_stylesrc.py b/plotly/validators/treemap/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_stylesrc.py rename to plotly/validators/treemap/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_textcase.py b/plotly/validators/treemap/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_textcase.py rename to plotly/validators/treemap/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_textcasesrc.py b/plotly/validators/treemap/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_textcasesrc.py rename to plotly/validators/treemap/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_variant.py b/plotly/validators/treemap/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_variant.py rename to plotly/validators/treemap/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_variantsrc.py b/plotly/validators/treemap/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_variantsrc.py rename to plotly/validators/treemap/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_weight.py b/plotly/validators/treemap/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_weight.py rename to plotly/validators/treemap/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/insidetextfont/_weightsrc.py b/plotly/validators/treemap/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/insidetextfont/_weightsrc.py rename to plotly/validators/treemap/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/__init__.py b/plotly/validators/treemap/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/__init__.py rename to plotly/validators/treemap/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/_font.py b/plotly/validators/treemap/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/_font.py rename to plotly/validators/treemap/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/_text.py b/plotly/validators/treemap/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/_text.py rename to plotly/validators/treemap/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/__init__.py b/plotly/validators/treemap/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/__init__.py rename to plotly/validators/treemap/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_color.py b/plotly/validators/treemap/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_color.py rename to plotly/validators/treemap/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_family.py b/plotly/validators/treemap/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_family.py rename to plotly/validators/treemap/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_lineposition.py b/plotly/validators/treemap/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_lineposition.py rename to plotly/validators/treemap/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_shadow.py b/plotly/validators/treemap/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_shadow.py rename to plotly/validators/treemap/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_size.py b/plotly/validators/treemap/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_size.py rename to plotly/validators/treemap/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_style.py b/plotly/validators/treemap/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_style.py rename to plotly/validators/treemap/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_textcase.py b/plotly/validators/treemap/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_textcase.py rename to plotly/validators/treemap/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_variant.py b/plotly/validators/treemap/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_variant.py rename to plotly/validators/treemap/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_weight.py b/plotly/validators/treemap/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/legendgrouptitle/font/_weight.py rename to plotly/validators/treemap/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/__init__.py b/plotly/validators/treemap/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/__init__.py rename to plotly/validators/treemap/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_autocolorscale.py b/plotly/validators/treemap/marker/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_autocolorscale.py rename to plotly/validators/treemap/marker/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_cauto.py b/plotly/validators/treemap/marker/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_cauto.py rename to plotly/validators/treemap/marker/_cauto.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_cmax.py b/plotly/validators/treemap/marker/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_cmax.py rename to plotly/validators/treemap/marker/_cmax.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_cmid.py b/plotly/validators/treemap/marker/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_cmid.py rename to plotly/validators/treemap/marker/_cmid.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_cmin.py b/plotly/validators/treemap/marker/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_cmin.py rename to plotly/validators/treemap/marker/_cmin.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_coloraxis.py b/plotly/validators/treemap/marker/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_coloraxis.py rename to plotly/validators/treemap/marker/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_colorbar.py b/plotly/validators/treemap/marker/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_colorbar.py rename to plotly/validators/treemap/marker/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_colors.py b/plotly/validators/treemap/marker/_colors.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_colors.py rename to plotly/validators/treemap/marker/_colors.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_colorscale.py b/plotly/validators/treemap/marker/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_colorscale.py rename to plotly/validators/treemap/marker/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_colorssrc.py b/plotly/validators/treemap/marker/_colorssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_colorssrc.py rename to plotly/validators/treemap/marker/_colorssrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_cornerradius.py b/plotly/validators/treemap/marker/_cornerradius.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_cornerradius.py rename to plotly/validators/treemap/marker/_cornerradius.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_depthfade.py b/plotly/validators/treemap/marker/_depthfade.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_depthfade.py rename to plotly/validators/treemap/marker/_depthfade.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_line.py b/plotly/validators/treemap/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_line.py rename to plotly/validators/treemap/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_pad.py b/plotly/validators/treemap/marker/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_pad.py rename to plotly/validators/treemap/marker/_pad.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_pattern.py b/plotly/validators/treemap/marker/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_pattern.py rename to plotly/validators/treemap/marker/_pattern.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_reversescale.py b/plotly/validators/treemap/marker/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_reversescale.py rename to plotly/validators/treemap/marker/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/_showscale.py b/plotly/validators/treemap/marker/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/_showscale.py rename to plotly/validators/treemap/marker/_showscale.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/__init__.py b/plotly/validators/treemap/marker/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/__init__.py rename to plotly/validators/treemap/marker/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_bgcolor.py b/plotly/validators/treemap/marker/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_bgcolor.py rename to plotly/validators/treemap/marker/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_bordercolor.py b/plotly/validators/treemap/marker/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_bordercolor.py rename to plotly/validators/treemap/marker/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_borderwidth.py b/plotly/validators/treemap/marker/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_borderwidth.py rename to plotly/validators/treemap/marker/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_dtick.py b/plotly/validators/treemap/marker/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_dtick.py rename to plotly/validators/treemap/marker/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_exponentformat.py b/plotly/validators/treemap/marker/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_exponentformat.py rename to plotly/validators/treemap/marker/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_labelalias.py b/plotly/validators/treemap/marker/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_labelalias.py rename to plotly/validators/treemap/marker/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_len.py b/plotly/validators/treemap/marker/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_len.py rename to plotly/validators/treemap/marker/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_lenmode.py b/plotly/validators/treemap/marker/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_lenmode.py rename to plotly/validators/treemap/marker/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_minexponent.py b/plotly/validators/treemap/marker/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_minexponent.py rename to plotly/validators/treemap/marker/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_nticks.py b/plotly/validators/treemap/marker/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_nticks.py rename to plotly/validators/treemap/marker/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_orientation.py b/plotly/validators/treemap/marker/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_orientation.py rename to plotly/validators/treemap/marker/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_outlinecolor.py b/plotly/validators/treemap/marker/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_outlinecolor.py rename to plotly/validators/treemap/marker/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_outlinewidth.py b/plotly/validators/treemap/marker/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_outlinewidth.py rename to plotly/validators/treemap/marker/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_separatethousands.py b/plotly/validators/treemap/marker/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_separatethousands.py rename to plotly/validators/treemap/marker/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showexponent.py b/plotly/validators/treemap/marker/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showexponent.py rename to plotly/validators/treemap/marker/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showticklabels.py b/plotly/validators/treemap/marker/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showticklabels.py rename to plotly/validators/treemap/marker/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showtickprefix.py b/plotly/validators/treemap/marker/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showtickprefix.py rename to plotly/validators/treemap/marker/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showticksuffix.py b/plotly/validators/treemap/marker/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_showticksuffix.py rename to plotly/validators/treemap/marker/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_thickness.py b/plotly/validators/treemap/marker/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_thickness.py rename to plotly/validators/treemap/marker/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_thicknessmode.py b/plotly/validators/treemap/marker/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_thicknessmode.py rename to plotly/validators/treemap/marker/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tick0.py b/plotly/validators/treemap/marker/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tick0.py rename to plotly/validators/treemap/marker/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickangle.py b/plotly/validators/treemap/marker/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickangle.py rename to plotly/validators/treemap/marker/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickcolor.py b/plotly/validators/treemap/marker/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickcolor.py rename to plotly/validators/treemap/marker/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickfont.py b/plotly/validators/treemap/marker/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickfont.py rename to plotly/validators/treemap/marker/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickformat.py b/plotly/validators/treemap/marker/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickformat.py rename to plotly/validators/treemap/marker/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickformatstopdefaults.py b/plotly/validators/treemap/marker/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickformatstopdefaults.py rename to plotly/validators/treemap/marker/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickformatstops.py b/plotly/validators/treemap/marker/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickformatstops.py rename to plotly/validators/treemap/marker/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklabeloverflow.py b/plotly/validators/treemap/marker/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklabeloverflow.py rename to plotly/validators/treemap/marker/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklabelposition.py b/plotly/validators/treemap/marker/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklabelposition.py rename to plotly/validators/treemap/marker/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklabelstep.py b/plotly/validators/treemap/marker/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklabelstep.py rename to plotly/validators/treemap/marker/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklen.py b/plotly/validators/treemap/marker/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticklen.py rename to plotly/validators/treemap/marker/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickmode.py b/plotly/validators/treemap/marker/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickmode.py rename to plotly/validators/treemap/marker/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickprefix.py b/plotly/validators/treemap/marker/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickprefix.py rename to plotly/validators/treemap/marker/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticks.py b/plotly/validators/treemap/marker/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticks.py rename to plotly/validators/treemap/marker/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticksuffix.py b/plotly/validators/treemap/marker/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticksuffix.py rename to plotly/validators/treemap/marker/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticktext.py b/plotly/validators/treemap/marker/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticktext.py rename to plotly/validators/treemap/marker/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticktextsrc.py b/plotly/validators/treemap/marker/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ticktextsrc.py rename to plotly/validators/treemap/marker/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickvals.py b/plotly/validators/treemap/marker/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickvals.py rename to plotly/validators/treemap/marker/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickvalssrc.py b/plotly/validators/treemap/marker/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickvalssrc.py rename to plotly/validators/treemap/marker/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickwidth.py b/plotly/validators/treemap/marker/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_tickwidth.py rename to plotly/validators/treemap/marker/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_title.py b/plotly/validators/treemap/marker/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_title.py rename to plotly/validators/treemap/marker/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_x.py b/plotly/validators/treemap/marker/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_x.py rename to plotly/validators/treemap/marker/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_xanchor.py b/plotly/validators/treemap/marker/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_xanchor.py rename to plotly/validators/treemap/marker/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_xpad.py b/plotly/validators/treemap/marker/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_xpad.py rename to plotly/validators/treemap/marker/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_xref.py b/plotly/validators/treemap/marker/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_xref.py rename to plotly/validators/treemap/marker/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_y.py b/plotly/validators/treemap/marker/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_y.py rename to plotly/validators/treemap/marker/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_yanchor.py b/plotly/validators/treemap/marker/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_yanchor.py rename to plotly/validators/treemap/marker/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ypad.py b/plotly/validators/treemap/marker/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_ypad.py rename to plotly/validators/treemap/marker/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/_yref.py b/plotly/validators/treemap/marker/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/_yref.py rename to plotly/validators/treemap/marker/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/__init__.py b/plotly/validators/treemap/marker/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/__init__.py rename to plotly/validators/treemap/marker/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_color.py b/plotly/validators/treemap/marker/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_color.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_family.py b/plotly/validators/treemap/marker/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_family.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_lineposition.py b/plotly/validators/treemap/marker/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_lineposition.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_shadow.py b/plotly/validators/treemap/marker/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_shadow.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_size.py b/plotly/validators/treemap/marker/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_size.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_style.py b/plotly/validators/treemap/marker/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_style.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_textcase.py b/plotly/validators/treemap/marker/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_textcase.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_variant.py b/plotly/validators/treemap/marker/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_variant.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_weight.py b/plotly/validators/treemap/marker/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickfont/_weight.py rename to plotly/validators/treemap/marker/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/__init__.py b/plotly/validators/treemap/marker/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/__init__.py rename to plotly/validators/treemap/marker/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/treemap/marker/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/treemap/marker/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_enabled.py b/plotly/validators/treemap/marker/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_enabled.py rename to plotly/validators/treemap/marker/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_name.py b/plotly/validators/treemap/marker/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_name.py rename to plotly/validators/treemap/marker/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/treemap/marker/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/treemap/marker/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_value.py b/plotly/validators/treemap/marker/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/tickformatstop/_value.py rename to plotly/validators/treemap/marker/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/__init__.py b/plotly/validators/treemap/marker/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/__init__.py rename to plotly/validators/treemap/marker/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/_font.py b/plotly/validators/treemap/marker/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/_font.py rename to plotly/validators/treemap/marker/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/_side.py b/plotly/validators/treemap/marker/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/_side.py rename to plotly/validators/treemap/marker/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/_text.py b/plotly/validators/treemap/marker/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/_text.py rename to plotly/validators/treemap/marker/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/__init__.py b/plotly/validators/treemap/marker/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/__init__.py rename to plotly/validators/treemap/marker/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_color.py b/plotly/validators/treemap/marker/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_color.py rename to plotly/validators/treemap/marker/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_family.py b/plotly/validators/treemap/marker/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_family.py rename to plotly/validators/treemap/marker/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_lineposition.py b/plotly/validators/treemap/marker/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_lineposition.py rename to plotly/validators/treemap/marker/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_shadow.py b/plotly/validators/treemap/marker/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_shadow.py rename to plotly/validators/treemap/marker/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_size.py b/plotly/validators/treemap/marker/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_size.py rename to plotly/validators/treemap/marker/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_style.py b/plotly/validators/treemap/marker/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_style.py rename to plotly/validators/treemap/marker/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_textcase.py b/plotly/validators/treemap/marker/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_textcase.py rename to plotly/validators/treemap/marker/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_variant.py b/plotly/validators/treemap/marker/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_variant.py rename to plotly/validators/treemap/marker/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_weight.py b/plotly/validators/treemap/marker/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/colorbar/title/font/_weight.py rename to plotly/validators/treemap/marker/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/line/__init__.py b/plotly/validators/treemap/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/line/__init__.py rename to plotly/validators/treemap/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/line/_color.py b/plotly/validators/treemap/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/line/_color.py rename to plotly/validators/treemap/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/line/_colorsrc.py b/plotly/validators/treemap/marker/line/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/line/_colorsrc.py rename to plotly/validators/treemap/marker/line/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/line/_width.py b/plotly/validators/treemap/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/line/_width.py rename to plotly/validators/treemap/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/line/_widthsrc.py b/plotly/validators/treemap/marker/line/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/line/_widthsrc.py rename to plotly/validators/treemap/marker/line/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pad/__init__.py b/plotly/validators/treemap/marker/pad/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pad/__init__.py rename to plotly/validators/treemap/marker/pad/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pad/_b.py b/plotly/validators/treemap/marker/pad/_b.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pad/_b.py rename to plotly/validators/treemap/marker/pad/_b.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pad/_l.py b/plotly/validators/treemap/marker/pad/_l.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pad/_l.py rename to plotly/validators/treemap/marker/pad/_l.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pad/_r.py b/plotly/validators/treemap/marker/pad/_r.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pad/_r.py rename to plotly/validators/treemap/marker/pad/_r.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pad/_t.py b/plotly/validators/treemap/marker/pad/_t.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pad/_t.py rename to plotly/validators/treemap/marker/pad/_t.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/__init__.py b/plotly/validators/treemap/marker/pattern/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/__init__.py rename to plotly/validators/treemap/marker/pattern/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_bgcolor.py b/plotly/validators/treemap/marker/pattern/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_bgcolor.py rename to plotly/validators/treemap/marker/pattern/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_bgcolorsrc.py b/plotly/validators/treemap/marker/pattern/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_bgcolorsrc.py rename to plotly/validators/treemap/marker/pattern/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_fgcolor.py b/plotly/validators/treemap/marker/pattern/_fgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_fgcolor.py rename to plotly/validators/treemap/marker/pattern/_fgcolor.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_fgcolorsrc.py b/plotly/validators/treemap/marker/pattern/_fgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_fgcolorsrc.py rename to plotly/validators/treemap/marker/pattern/_fgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_fgopacity.py b/plotly/validators/treemap/marker/pattern/_fgopacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_fgopacity.py rename to plotly/validators/treemap/marker/pattern/_fgopacity.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_fillmode.py b/plotly/validators/treemap/marker/pattern/_fillmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_fillmode.py rename to plotly/validators/treemap/marker/pattern/_fillmode.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_shape.py b/plotly/validators/treemap/marker/pattern/_shape.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_shape.py rename to plotly/validators/treemap/marker/pattern/_shape.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_shapesrc.py b/plotly/validators/treemap/marker/pattern/_shapesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_shapesrc.py rename to plotly/validators/treemap/marker/pattern/_shapesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_size.py b/plotly/validators/treemap/marker/pattern/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_size.py rename to plotly/validators/treemap/marker/pattern/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_sizesrc.py b/plotly/validators/treemap/marker/pattern/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_sizesrc.py rename to plotly/validators/treemap/marker/pattern/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_solidity.py b/plotly/validators/treemap/marker/pattern/_solidity.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_solidity.py rename to plotly/validators/treemap/marker/pattern/_solidity.py diff --git a/packages/python/plotly/plotly/validators/treemap/marker/pattern/_soliditysrc.py b/plotly/validators/treemap/marker/pattern/_soliditysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/marker/pattern/_soliditysrc.py rename to plotly/validators/treemap/marker/pattern/_soliditysrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/__init__.py b/plotly/validators/treemap/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/__init__.py rename to plotly/validators/treemap/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_color.py b/plotly/validators/treemap/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_color.py rename to plotly/validators/treemap/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_colorsrc.py b/plotly/validators/treemap/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_colorsrc.py rename to plotly/validators/treemap/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_family.py b/plotly/validators/treemap/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_family.py rename to plotly/validators/treemap/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_familysrc.py b/plotly/validators/treemap/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_familysrc.py rename to plotly/validators/treemap/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_lineposition.py b/plotly/validators/treemap/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_lineposition.py rename to plotly/validators/treemap/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_linepositionsrc.py b/plotly/validators/treemap/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_linepositionsrc.py rename to plotly/validators/treemap/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_shadow.py b/plotly/validators/treemap/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_shadow.py rename to plotly/validators/treemap/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_shadowsrc.py b/plotly/validators/treemap/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_shadowsrc.py rename to plotly/validators/treemap/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_size.py b/plotly/validators/treemap/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_size.py rename to plotly/validators/treemap/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_sizesrc.py b/plotly/validators/treemap/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_sizesrc.py rename to plotly/validators/treemap/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_style.py b/plotly/validators/treemap/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_style.py rename to plotly/validators/treemap/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_stylesrc.py b/plotly/validators/treemap/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_stylesrc.py rename to plotly/validators/treemap/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_textcase.py b/plotly/validators/treemap/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_textcase.py rename to plotly/validators/treemap/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_textcasesrc.py b/plotly/validators/treemap/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_textcasesrc.py rename to plotly/validators/treemap/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_variant.py b/plotly/validators/treemap/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_variant.py rename to plotly/validators/treemap/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_variantsrc.py b/plotly/validators/treemap/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_variantsrc.py rename to plotly/validators/treemap/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_weight.py b/plotly/validators/treemap/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_weight.py rename to plotly/validators/treemap/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/outsidetextfont/_weightsrc.py b/plotly/validators/treemap/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/outsidetextfont/_weightsrc.py rename to plotly/validators/treemap/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/__init__.py b/plotly/validators/treemap/pathbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/__init__.py rename to plotly/validators/treemap/pathbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/_edgeshape.py b/plotly/validators/treemap/pathbar/_edgeshape.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/_edgeshape.py rename to plotly/validators/treemap/pathbar/_edgeshape.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/_side.py b/plotly/validators/treemap/pathbar/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/_side.py rename to plotly/validators/treemap/pathbar/_side.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/_textfont.py b/plotly/validators/treemap/pathbar/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/_textfont.py rename to plotly/validators/treemap/pathbar/_textfont.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/_thickness.py b/plotly/validators/treemap/pathbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/_thickness.py rename to plotly/validators/treemap/pathbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/_visible.py b/plotly/validators/treemap/pathbar/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/_visible.py rename to plotly/validators/treemap/pathbar/_visible.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/__init__.py b/plotly/validators/treemap/pathbar/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/__init__.py rename to plotly/validators/treemap/pathbar/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_color.py b/plotly/validators/treemap/pathbar/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_color.py rename to plotly/validators/treemap/pathbar/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_colorsrc.py b/plotly/validators/treemap/pathbar/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_colorsrc.py rename to plotly/validators/treemap/pathbar/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_family.py b/plotly/validators/treemap/pathbar/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_family.py rename to plotly/validators/treemap/pathbar/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_familysrc.py b/plotly/validators/treemap/pathbar/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_familysrc.py rename to plotly/validators/treemap/pathbar/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_lineposition.py b/plotly/validators/treemap/pathbar/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_lineposition.py rename to plotly/validators/treemap/pathbar/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_linepositionsrc.py b/plotly/validators/treemap/pathbar/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_linepositionsrc.py rename to plotly/validators/treemap/pathbar/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_shadow.py b/plotly/validators/treemap/pathbar/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_shadow.py rename to plotly/validators/treemap/pathbar/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_shadowsrc.py b/plotly/validators/treemap/pathbar/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_shadowsrc.py rename to plotly/validators/treemap/pathbar/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_size.py b/plotly/validators/treemap/pathbar/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_size.py rename to plotly/validators/treemap/pathbar/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_sizesrc.py b/plotly/validators/treemap/pathbar/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_sizesrc.py rename to plotly/validators/treemap/pathbar/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_style.py b/plotly/validators/treemap/pathbar/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_style.py rename to plotly/validators/treemap/pathbar/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_stylesrc.py b/plotly/validators/treemap/pathbar/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_stylesrc.py rename to plotly/validators/treemap/pathbar/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_textcase.py b/plotly/validators/treemap/pathbar/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_textcase.py rename to plotly/validators/treemap/pathbar/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_textcasesrc.py b/plotly/validators/treemap/pathbar/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_textcasesrc.py rename to plotly/validators/treemap/pathbar/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_variant.py b/plotly/validators/treemap/pathbar/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_variant.py rename to plotly/validators/treemap/pathbar/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_variantsrc.py b/plotly/validators/treemap/pathbar/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_variantsrc.py rename to plotly/validators/treemap/pathbar/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_weight.py b/plotly/validators/treemap/pathbar/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_weight.py rename to plotly/validators/treemap/pathbar/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_weightsrc.py b/plotly/validators/treemap/pathbar/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/pathbar/textfont/_weightsrc.py rename to plotly/validators/treemap/pathbar/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/root/__init__.py b/plotly/validators/treemap/root/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/root/__init__.py rename to plotly/validators/treemap/root/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/root/_color.py b/plotly/validators/treemap/root/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/root/_color.py rename to plotly/validators/treemap/root/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/stream/__init__.py b/plotly/validators/treemap/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/stream/__init__.py rename to plotly/validators/treemap/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/stream/_maxpoints.py b/plotly/validators/treemap/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/stream/_maxpoints.py rename to plotly/validators/treemap/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/treemap/stream/_token.py b/plotly/validators/treemap/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/stream/_token.py rename to plotly/validators/treemap/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/__init__.py b/plotly/validators/treemap/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/__init__.py rename to plotly/validators/treemap/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_color.py b/plotly/validators/treemap/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_color.py rename to plotly/validators/treemap/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_colorsrc.py b/plotly/validators/treemap/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_colorsrc.py rename to plotly/validators/treemap/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_family.py b/plotly/validators/treemap/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_family.py rename to plotly/validators/treemap/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_familysrc.py b/plotly/validators/treemap/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_familysrc.py rename to plotly/validators/treemap/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_lineposition.py b/plotly/validators/treemap/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_lineposition.py rename to plotly/validators/treemap/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_linepositionsrc.py b/plotly/validators/treemap/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_linepositionsrc.py rename to plotly/validators/treemap/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_shadow.py b/plotly/validators/treemap/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_shadow.py rename to plotly/validators/treemap/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_shadowsrc.py b/plotly/validators/treemap/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_shadowsrc.py rename to plotly/validators/treemap/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_size.py b/plotly/validators/treemap/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_size.py rename to plotly/validators/treemap/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_sizesrc.py b/plotly/validators/treemap/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_sizesrc.py rename to plotly/validators/treemap/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_style.py b/plotly/validators/treemap/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_style.py rename to plotly/validators/treemap/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_stylesrc.py b/plotly/validators/treemap/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_stylesrc.py rename to plotly/validators/treemap/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_textcase.py b/plotly/validators/treemap/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_textcase.py rename to plotly/validators/treemap/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_textcasesrc.py b/plotly/validators/treemap/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_textcasesrc.py rename to plotly/validators/treemap/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_variant.py b/plotly/validators/treemap/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_variant.py rename to plotly/validators/treemap/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_variantsrc.py b/plotly/validators/treemap/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_variantsrc.py rename to plotly/validators/treemap/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_weight.py b/plotly/validators/treemap/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_weight.py rename to plotly/validators/treemap/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/treemap/textfont/_weightsrc.py b/plotly/validators/treemap/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/textfont/_weightsrc.py rename to plotly/validators/treemap/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/treemap/tiling/__init__.py b/plotly/validators/treemap/tiling/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/tiling/__init__.py rename to plotly/validators/treemap/tiling/__init__.py diff --git a/packages/python/plotly/plotly/validators/treemap/tiling/_flip.py b/plotly/validators/treemap/tiling/_flip.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/tiling/_flip.py rename to plotly/validators/treemap/tiling/_flip.py diff --git a/packages/python/plotly/plotly/validators/treemap/tiling/_packing.py b/plotly/validators/treemap/tiling/_packing.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/tiling/_packing.py rename to plotly/validators/treemap/tiling/_packing.py diff --git a/packages/python/plotly/plotly/validators/treemap/tiling/_pad.py b/plotly/validators/treemap/tiling/_pad.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/tiling/_pad.py rename to plotly/validators/treemap/tiling/_pad.py diff --git a/packages/python/plotly/plotly/validators/treemap/tiling/_squarifyratio.py b/plotly/validators/treemap/tiling/_squarifyratio.py similarity index 100% rename from packages/python/plotly/plotly/validators/treemap/tiling/_squarifyratio.py rename to plotly/validators/treemap/tiling/_squarifyratio.py diff --git a/packages/python/plotly/plotly/validators/violin/__init__.py b/plotly/validators/violin/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/__init__.py rename to plotly/validators/violin/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/_alignmentgroup.py b/plotly/validators/violin/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_alignmentgroup.py rename to plotly/validators/violin/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/violin/_bandwidth.py b/plotly/validators/violin/_bandwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_bandwidth.py rename to plotly/validators/violin/_bandwidth.py diff --git a/packages/python/plotly/plotly/validators/violin/_box.py b/plotly/validators/violin/_box.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_box.py rename to plotly/validators/violin/_box.py diff --git a/packages/python/plotly/plotly/validators/violin/_customdata.py b/plotly/validators/violin/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_customdata.py rename to plotly/validators/violin/_customdata.py diff --git a/packages/python/plotly/plotly/validators/violin/_customdatasrc.py b/plotly/validators/violin/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_customdatasrc.py rename to plotly/validators/violin/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_fillcolor.py b/plotly/validators/violin/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_fillcolor.py rename to plotly/validators/violin/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/violin/_hoverinfo.py b/plotly/validators/violin/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hoverinfo.py rename to plotly/validators/violin/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/violin/_hoverinfosrc.py b/plotly/validators/violin/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hoverinfosrc.py rename to plotly/validators/violin/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_hoverlabel.py b/plotly/validators/violin/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hoverlabel.py rename to plotly/validators/violin/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/violin/_hoveron.py b/plotly/validators/violin/_hoveron.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hoveron.py rename to plotly/validators/violin/_hoveron.py diff --git a/packages/python/plotly/plotly/validators/violin/_hovertemplate.py b/plotly/validators/violin/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hovertemplate.py rename to plotly/validators/violin/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/violin/_hovertemplatesrc.py b/plotly/validators/violin/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hovertemplatesrc.py rename to plotly/validators/violin/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_hovertext.py b/plotly/validators/violin/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hovertext.py rename to plotly/validators/violin/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/violin/_hovertextsrc.py b/plotly/validators/violin/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_hovertextsrc.py rename to plotly/validators/violin/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_ids.py b/plotly/validators/violin/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_ids.py rename to plotly/validators/violin/_ids.py diff --git a/packages/python/plotly/plotly/validators/violin/_idssrc.py b/plotly/validators/violin/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_idssrc.py rename to plotly/validators/violin/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_jitter.py b/plotly/validators/violin/_jitter.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_jitter.py rename to plotly/validators/violin/_jitter.py diff --git a/packages/python/plotly/plotly/validators/violin/_legend.py b/plotly/validators/violin/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_legend.py rename to plotly/validators/violin/_legend.py diff --git a/packages/python/plotly/plotly/validators/violin/_legendgroup.py b/plotly/validators/violin/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_legendgroup.py rename to plotly/validators/violin/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/violin/_legendgrouptitle.py b/plotly/validators/violin/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_legendgrouptitle.py rename to plotly/validators/violin/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/violin/_legendrank.py b/plotly/validators/violin/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_legendrank.py rename to plotly/validators/violin/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/violin/_legendwidth.py b/plotly/validators/violin/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_legendwidth.py rename to plotly/validators/violin/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/violin/_line.py b/plotly/validators/violin/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_line.py rename to plotly/validators/violin/_line.py diff --git a/packages/python/plotly/plotly/validators/violin/_marker.py b/plotly/validators/violin/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_marker.py rename to plotly/validators/violin/_marker.py diff --git a/packages/python/plotly/plotly/validators/violin/_meanline.py b/plotly/validators/violin/_meanline.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_meanline.py rename to plotly/validators/violin/_meanline.py diff --git a/packages/python/plotly/plotly/validators/violin/_meta.py b/plotly/validators/violin/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_meta.py rename to plotly/validators/violin/_meta.py diff --git a/packages/python/plotly/plotly/validators/violin/_metasrc.py b/plotly/validators/violin/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_metasrc.py rename to plotly/validators/violin/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_name.py b/plotly/validators/violin/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_name.py rename to plotly/validators/violin/_name.py diff --git a/packages/python/plotly/plotly/validators/violin/_offsetgroup.py b/plotly/validators/violin/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_offsetgroup.py rename to plotly/validators/violin/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/violin/_opacity.py b/plotly/validators/violin/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_opacity.py rename to plotly/validators/violin/_opacity.py diff --git a/packages/python/plotly/plotly/validators/violin/_orientation.py b/plotly/validators/violin/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_orientation.py rename to plotly/validators/violin/_orientation.py diff --git a/packages/python/plotly/plotly/validators/violin/_pointpos.py b/plotly/validators/violin/_pointpos.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_pointpos.py rename to plotly/validators/violin/_pointpos.py diff --git a/packages/python/plotly/plotly/validators/violin/_points.py b/plotly/validators/violin/_points.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_points.py rename to plotly/validators/violin/_points.py diff --git a/packages/python/plotly/plotly/validators/violin/_quartilemethod.py b/plotly/validators/violin/_quartilemethod.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_quartilemethod.py rename to plotly/validators/violin/_quartilemethod.py diff --git a/packages/python/plotly/plotly/validators/violin/_scalegroup.py b/plotly/validators/violin/_scalegroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_scalegroup.py rename to plotly/validators/violin/_scalegroup.py diff --git a/packages/python/plotly/plotly/validators/violin/_scalemode.py b/plotly/validators/violin/_scalemode.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_scalemode.py rename to plotly/validators/violin/_scalemode.py diff --git a/packages/python/plotly/plotly/validators/violin/_selected.py b/plotly/validators/violin/_selected.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_selected.py rename to plotly/validators/violin/_selected.py diff --git a/packages/python/plotly/plotly/validators/violin/_selectedpoints.py b/plotly/validators/violin/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_selectedpoints.py rename to plotly/validators/violin/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/violin/_showlegend.py b/plotly/validators/violin/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_showlegend.py rename to plotly/validators/violin/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/violin/_side.py b/plotly/validators/violin/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_side.py rename to plotly/validators/violin/_side.py diff --git a/packages/python/plotly/plotly/validators/violin/_span.py b/plotly/validators/violin/_span.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_span.py rename to plotly/validators/violin/_span.py diff --git a/packages/python/plotly/plotly/validators/violin/_spanmode.py b/plotly/validators/violin/_spanmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_spanmode.py rename to plotly/validators/violin/_spanmode.py diff --git a/packages/python/plotly/plotly/validators/violin/_stream.py b/plotly/validators/violin/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_stream.py rename to plotly/validators/violin/_stream.py diff --git a/packages/python/plotly/plotly/validators/violin/_text.py b/plotly/validators/violin/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_text.py rename to plotly/validators/violin/_text.py diff --git a/packages/python/plotly/plotly/validators/violin/_textsrc.py b/plotly/validators/violin/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_textsrc.py rename to plotly/validators/violin/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_uid.py b/plotly/validators/violin/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_uid.py rename to plotly/validators/violin/_uid.py diff --git a/packages/python/plotly/plotly/validators/violin/_uirevision.py b/plotly/validators/violin/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_uirevision.py rename to plotly/validators/violin/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/violin/_unselected.py b/plotly/validators/violin/_unselected.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_unselected.py rename to plotly/validators/violin/_unselected.py diff --git a/packages/python/plotly/plotly/validators/violin/_visible.py b/plotly/validators/violin/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_visible.py rename to plotly/validators/violin/_visible.py diff --git a/packages/python/plotly/plotly/validators/violin/_width.py b/plotly/validators/violin/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_width.py rename to plotly/validators/violin/_width.py diff --git a/packages/python/plotly/plotly/validators/violin/_x.py b/plotly/validators/violin/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_x.py rename to plotly/validators/violin/_x.py diff --git a/packages/python/plotly/plotly/validators/violin/_x0.py b/plotly/validators/violin/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_x0.py rename to plotly/validators/violin/_x0.py diff --git a/packages/python/plotly/plotly/validators/violin/_xaxis.py b/plotly/validators/violin/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_xaxis.py rename to plotly/validators/violin/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/violin/_xhoverformat.py b/plotly/validators/violin/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_xhoverformat.py rename to plotly/validators/violin/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/violin/_xsrc.py b/plotly/validators/violin/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_xsrc.py rename to plotly/validators/violin/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_y.py b/plotly/validators/violin/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_y.py rename to plotly/validators/violin/_y.py diff --git a/packages/python/plotly/plotly/validators/violin/_y0.py b/plotly/validators/violin/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_y0.py rename to plotly/validators/violin/_y0.py diff --git a/packages/python/plotly/plotly/validators/violin/_yaxis.py b/plotly/validators/violin/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_yaxis.py rename to plotly/validators/violin/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/violin/_yhoverformat.py b/plotly/validators/violin/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_yhoverformat.py rename to plotly/validators/violin/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/violin/_ysrc.py b/plotly/validators/violin/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_ysrc.py rename to plotly/validators/violin/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/violin/_zorder.py b/plotly/validators/violin/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/_zorder.py rename to plotly/validators/violin/_zorder.py diff --git a/packages/python/plotly/plotly/validators/violin/box/__init__.py b/plotly/validators/violin/box/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/__init__.py rename to plotly/validators/violin/box/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/box/_fillcolor.py b/plotly/validators/violin/box/_fillcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/_fillcolor.py rename to plotly/validators/violin/box/_fillcolor.py diff --git a/packages/python/plotly/plotly/validators/violin/box/_line.py b/plotly/validators/violin/box/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/_line.py rename to plotly/validators/violin/box/_line.py diff --git a/packages/python/plotly/plotly/validators/violin/box/_visible.py b/plotly/validators/violin/box/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/_visible.py rename to plotly/validators/violin/box/_visible.py diff --git a/packages/python/plotly/plotly/validators/violin/box/_width.py b/plotly/validators/violin/box/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/_width.py rename to plotly/validators/violin/box/_width.py diff --git a/packages/python/plotly/plotly/validators/violin/box/line/__init__.py b/plotly/validators/violin/box/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/line/__init__.py rename to plotly/validators/violin/box/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/box/line/_color.py b/plotly/validators/violin/box/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/line/_color.py rename to plotly/validators/violin/box/line/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/box/line/_width.py b/plotly/validators/violin/box/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/box/line/_width.py rename to plotly/validators/violin/box/line/_width.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/__init__.py b/plotly/validators/violin/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/__init__.py rename to plotly/validators/violin/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_align.py b/plotly/validators/violin/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_align.py rename to plotly/validators/violin/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_alignsrc.py b/plotly/validators/violin/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_alignsrc.py rename to plotly/validators/violin/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_bgcolor.py b/plotly/validators/violin/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_bgcolor.py rename to plotly/validators/violin/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_bgcolorsrc.py b/plotly/validators/violin/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_bgcolorsrc.py rename to plotly/validators/violin/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_bordercolor.py b/plotly/validators/violin/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_bordercolor.py rename to plotly/validators/violin/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_bordercolorsrc.py b/plotly/validators/violin/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_bordercolorsrc.py rename to plotly/validators/violin/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_font.py b/plotly/validators/violin/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_font.py rename to plotly/validators/violin/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_namelength.py b/plotly/validators/violin/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_namelength.py rename to plotly/validators/violin/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/_namelengthsrc.py b/plotly/validators/violin/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/_namelengthsrc.py rename to plotly/validators/violin/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/__init__.py b/plotly/validators/violin/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/__init__.py rename to plotly/validators/violin/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_color.py b/plotly/validators/violin/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_color.py rename to plotly/validators/violin/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_colorsrc.py b/plotly/validators/violin/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_colorsrc.py rename to plotly/validators/violin/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_family.py b/plotly/validators/violin/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_family.py rename to plotly/validators/violin/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_familysrc.py b/plotly/validators/violin/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_familysrc.py rename to plotly/validators/violin/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_lineposition.py b/plotly/validators/violin/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_lineposition.py rename to plotly/validators/violin/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_linepositionsrc.py b/plotly/validators/violin/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/violin/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_shadow.py b/plotly/validators/violin/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_shadow.py rename to plotly/validators/violin/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_shadowsrc.py b/plotly/validators/violin/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_shadowsrc.py rename to plotly/validators/violin/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_size.py b/plotly/validators/violin/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_size.py rename to plotly/validators/violin/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_sizesrc.py b/plotly/validators/violin/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_sizesrc.py rename to plotly/validators/violin/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_style.py b/plotly/validators/violin/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_style.py rename to plotly/validators/violin/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_stylesrc.py b/plotly/validators/violin/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_stylesrc.py rename to plotly/validators/violin/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_textcase.py b/plotly/validators/violin/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_textcase.py rename to plotly/validators/violin/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_textcasesrc.py b/plotly/validators/violin/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_textcasesrc.py rename to plotly/validators/violin/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_variant.py b/plotly/validators/violin/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_variant.py rename to plotly/validators/violin/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_variantsrc.py b/plotly/validators/violin/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_variantsrc.py rename to plotly/validators/violin/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_weight.py b/plotly/validators/violin/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_weight.py rename to plotly/validators/violin/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/violin/hoverlabel/font/_weightsrc.py b/plotly/validators/violin/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/hoverlabel/font/_weightsrc.py rename to plotly/validators/violin/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/__init__.py b/plotly/validators/violin/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/__init__.py rename to plotly/validators/violin/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/_font.py b/plotly/validators/violin/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/_font.py rename to plotly/validators/violin/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/_text.py b/plotly/validators/violin/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/_text.py rename to plotly/validators/violin/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/__init__.py b/plotly/validators/violin/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/__init__.py rename to plotly/validators/violin/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_color.py b/plotly/validators/violin/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_color.py rename to plotly/validators/violin/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_family.py b/plotly/validators/violin/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_family.py rename to plotly/validators/violin/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_lineposition.py b/plotly/validators/violin/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_lineposition.py rename to plotly/validators/violin/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_shadow.py b/plotly/validators/violin/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_shadow.py rename to plotly/validators/violin/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_size.py b/plotly/validators/violin/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_size.py rename to plotly/validators/violin/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_style.py b/plotly/validators/violin/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_style.py rename to plotly/validators/violin/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_textcase.py b/plotly/validators/violin/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_textcase.py rename to plotly/validators/violin/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_variant.py b/plotly/validators/violin/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_variant.py rename to plotly/validators/violin/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_weight.py b/plotly/validators/violin/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/legendgrouptitle/font/_weight.py rename to plotly/validators/violin/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/violin/line/__init__.py b/plotly/validators/violin/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/line/__init__.py rename to plotly/validators/violin/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/line/_color.py b/plotly/validators/violin/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/line/_color.py rename to plotly/validators/violin/line/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/line/_width.py b/plotly/validators/violin/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/line/_width.py rename to plotly/validators/violin/line/_width.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/__init__.py b/plotly/validators/violin/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/__init__.py rename to plotly/validators/violin/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_angle.py b/plotly/validators/violin/marker/_angle.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_angle.py rename to plotly/validators/violin/marker/_angle.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_color.py b/plotly/validators/violin/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_color.py rename to plotly/validators/violin/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_line.py b/plotly/validators/violin/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_line.py rename to plotly/validators/violin/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_opacity.py b/plotly/validators/violin/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_opacity.py rename to plotly/validators/violin/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_outliercolor.py b/plotly/validators/violin/marker/_outliercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_outliercolor.py rename to plotly/validators/violin/marker/_outliercolor.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_size.py b/plotly/validators/violin/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_size.py rename to plotly/validators/violin/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/_symbol.py b/plotly/validators/violin/marker/_symbol.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/_symbol.py rename to plotly/validators/violin/marker/_symbol.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/line/__init__.py b/plotly/validators/violin/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/line/__init__.py rename to plotly/validators/violin/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/line/_color.py b/plotly/validators/violin/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/line/_color.py rename to plotly/validators/violin/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/line/_outliercolor.py b/plotly/validators/violin/marker/line/_outliercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/line/_outliercolor.py rename to plotly/validators/violin/marker/line/_outliercolor.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/line/_outlierwidth.py b/plotly/validators/violin/marker/line/_outlierwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/line/_outlierwidth.py rename to plotly/validators/violin/marker/line/_outlierwidth.py diff --git a/packages/python/plotly/plotly/validators/violin/marker/line/_width.py b/plotly/validators/violin/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/marker/line/_width.py rename to plotly/validators/violin/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/violin/meanline/__init__.py b/plotly/validators/violin/meanline/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/meanline/__init__.py rename to plotly/validators/violin/meanline/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/meanline/_color.py b/plotly/validators/violin/meanline/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/meanline/_color.py rename to plotly/validators/violin/meanline/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/meanline/_visible.py b/plotly/validators/violin/meanline/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/meanline/_visible.py rename to plotly/validators/violin/meanline/_visible.py diff --git a/packages/python/plotly/plotly/validators/violin/meanline/_width.py b/plotly/validators/violin/meanline/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/meanline/_width.py rename to plotly/validators/violin/meanline/_width.py diff --git a/packages/python/plotly/plotly/validators/violin/selected/__init__.py b/plotly/validators/violin/selected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/selected/__init__.py rename to plotly/validators/violin/selected/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/selected/_marker.py b/plotly/validators/violin/selected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/selected/_marker.py rename to plotly/validators/violin/selected/_marker.py diff --git a/packages/python/plotly/plotly/validators/violin/selected/marker/__init__.py b/plotly/validators/violin/selected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/selected/marker/__init__.py rename to plotly/validators/violin/selected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/selected/marker/_color.py b/plotly/validators/violin/selected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/selected/marker/_color.py rename to plotly/validators/violin/selected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/selected/marker/_opacity.py b/plotly/validators/violin/selected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/selected/marker/_opacity.py rename to plotly/validators/violin/selected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/violin/selected/marker/_size.py b/plotly/validators/violin/selected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/selected/marker/_size.py rename to plotly/validators/violin/selected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/violin/stream/__init__.py b/plotly/validators/violin/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/stream/__init__.py rename to plotly/validators/violin/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/stream/_maxpoints.py b/plotly/validators/violin/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/stream/_maxpoints.py rename to plotly/validators/violin/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/violin/stream/_token.py b/plotly/validators/violin/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/stream/_token.py rename to plotly/validators/violin/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/violin/unselected/__init__.py b/plotly/validators/violin/unselected/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/unselected/__init__.py rename to plotly/validators/violin/unselected/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/unselected/_marker.py b/plotly/validators/violin/unselected/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/unselected/_marker.py rename to plotly/validators/violin/unselected/_marker.py diff --git a/packages/python/plotly/plotly/validators/violin/unselected/marker/__init__.py b/plotly/validators/violin/unselected/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/unselected/marker/__init__.py rename to plotly/validators/violin/unselected/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/violin/unselected/marker/_color.py b/plotly/validators/violin/unselected/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/unselected/marker/_color.py rename to plotly/validators/violin/unselected/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/violin/unselected/marker/_opacity.py b/plotly/validators/violin/unselected/marker/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/unselected/marker/_opacity.py rename to plotly/validators/violin/unselected/marker/_opacity.py diff --git a/packages/python/plotly/plotly/validators/violin/unselected/marker/_size.py b/plotly/validators/violin/unselected/marker/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/violin/unselected/marker/_size.py rename to plotly/validators/violin/unselected/marker/_size.py diff --git a/packages/python/plotly/plotly/validators/volume/__init__.py b/plotly/validators/volume/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/__init__.py rename to plotly/validators/volume/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/_autocolorscale.py b/plotly/validators/volume/_autocolorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_autocolorscale.py rename to plotly/validators/volume/_autocolorscale.py diff --git a/packages/python/plotly/plotly/validators/volume/_caps.py b/plotly/validators/volume/_caps.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_caps.py rename to plotly/validators/volume/_caps.py diff --git a/packages/python/plotly/plotly/validators/volume/_cauto.py b/plotly/validators/volume/_cauto.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_cauto.py rename to plotly/validators/volume/_cauto.py diff --git a/packages/python/plotly/plotly/validators/volume/_cmax.py b/plotly/validators/volume/_cmax.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_cmax.py rename to plotly/validators/volume/_cmax.py diff --git a/packages/python/plotly/plotly/validators/volume/_cmid.py b/plotly/validators/volume/_cmid.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_cmid.py rename to plotly/validators/volume/_cmid.py diff --git a/packages/python/plotly/plotly/validators/volume/_cmin.py b/plotly/validators/volume/_cmin.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_cmin.py rename to plotly/validators/volume/_cmin.py diff --git a/packages/python/plotly/plotly/validators/volume/_coloraxis.py b/plotly/validators/volume/_coloraxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_coloraxis.py rename to plotly/validators/volume/_coloraxis.py diff --git a/packages/python/plotly/plotly/validators/volume/_colorbar.py b/plotly/validators/volume/_colorbar.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_colorbar.py rename to plotly/validators/volume/_colorbar.py diff --git a/packages/python/plotly/plotly/validators/volume/_colorscale.py b/plotly/validators/volume/_colorscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_colorscale.py rename to plotly/validators/volume/_colorscale.py diff --git a/packages/python/plotly/plotly/validators/volume/_contour.py b/plotly/validators/volume/_contour.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_contour.py rename to plotly/validators/volume/_contour.py diff --git a/packages/python/plotly/plotly/validators/volume/_customdata.py b/plotly/validators/volume/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_customdata.py rename to plotly/validators/volume/_customdata.py diff --git a/packages/python/plotly/plotly/validators/volume/_customdatasrc.py b/plotly/validators/volume/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_customdatasrc.py rename to plotly/validators/volume/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_flatshading.py b/plotly/validators/volume/_flatshading.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_flatshading.py rename to plotly/validators/volume/_flatshading.py diff --git a/packages/python/plotly/plotly/validators/volume/_hoverinfo.py b/plotly/validators/volume/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hoverinfo.py rename to plotly/validators/volume/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/volume/_hoverinfosrc.py b/plotly/validators/volume/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hoverinfosrc.py rename to plotly/validators/volume/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_hoverlabel.py b/plotly/validators/volume/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hoverlabel.py rename to plotly/validators/volume/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/volume/_hovertemplate.py b/plotly/validators/volume/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hovertemplate.py rename to plotly/validators/volume/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/volume/_hovertemplatesrc.py b/plotly/validators/volume/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hovertemplatesrc.py rename to plotly/validators/volume/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_hovertext.py b/plotly/validators/volume/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hovertext.py rename to plotly/validators/volume/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/volume/_hovertextsrc.py b/plotly/validators/volume/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_hovertextsrc.py rename to plotly/validators/volume/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_ids.py b/plotly/validators/volume/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_ids.py rename to plotly/validators/volume/_ids.py diff --git a/packages/python/plotly/plotly/validators/volume/_idssrc.py b/plotly/validators/volume/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_idssrc.py rename to plotly/validators/volume/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_isomax.py b/plotly/validators/volume/_isomax.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_isomax.py rename to plotly/validators/volume/_isomax.py diff --git a/packages/python/plotly/plotly/validators/volume/_isomin.py b/plotly/validators/volume/_isomin.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_isomin.py rename to plotly/validators/volume/_isomin.py diff --git a/packages/python/plotly/plotly/validators/volume/_legend.py b/plotly/validators/volume/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_legend.py rename to plotly/validators/volume/_legend.py diff --git a/packages/python/plotly/plotly/validators/volume/_legendgroup.py b/plotly/validators/volume/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_legendgroup.py rename to plotly/validators/volume/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/volume/_legendgrouptitle.py b/plotly/validators/volume/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_legendgrouptitle.py rename to plotly/validators/volume/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/volume/_legendrank.py b/plotly/validators/volume/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_legendrank.py rename to plotly/validators/volume/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/volume/_legendwidth.py b/plotly/validators/volume/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_legendwidth.py rename to plotly/validators/volume/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/volume/_lighting.py b/plotly/validators/volume/_lighting.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_lighting.py rename to plotly/validators/volume/_lighting.py diff --git a/packages/python/plotly/plotly/validators/volume/_lightposition.py b/plotly/validators/volume/_lightposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_lightposition.py rename to plotly/validators/volume/_lightposition.py diff --git a/packages/python/plotly/plotly/validators/volume/_meta.py b/plotly/validators/volume/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_meta.py rename to plotly/validators/volume/_meta.py diff --git a/packages/python/plotly/plotly/validators/volume/_metasrc.py b/plotly/validators/volume/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_metasrc.py rename to plotly/validators/volume/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_name.py b/plotly/validators/volume/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_name.py rename to plotly/validators/volume/_name.py diff --git a/packages/python/plotly/plotly/validators/volume/_opacity.py b/plotly/validators/volume/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_opacity.py rename to plotly/validators/volume/_opacity.py diff --git a/packages/python/plotly/plotly/validators/volume/_opacityscale.py b/plotly/validators/volume/_opacityscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_opacityscale.py rename to plotly/validators/volume/_opacityscale.py diff --git a/packages/python/plotly/plotly/validators/volume/_reversescale.py b/plotly/validators/volume/_reversescale.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_reversescale.py rename to plotly/validators/volume/_reversescale.py diff --git a/packages/python/plotly/plotly/validators/volume/_scene.py b/plotly/validators/volume/_scene.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_scene.py rename to plotly/validators/volume/_scene.py diff --git a/packages/python/plotly/plotly/validators/volume/_showlegend.py b/plotly/validators/volume/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_showlegend.py rename to plotly/validators/volume/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/volume/_showscale.py b/plotly/validators/volume/_showscale.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_showscale.py rename to plotly/validators/volume/_showscale.py diff --git a/packages/python/plotly/plotly/validators/volume/_slices.py b/plotly/validators/volume/_slices.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_slices.py rename to plotly/validators/volume/_slices.py diff --git a/packages/python/plotly/plotly/validators/volume/_spaceframe.py b/plotly/validators/volume/_spaceframe.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_spaceframe.py rename to plotly/validators/volume/_spaceframe.py diff --git a/packages/python/plotly/plotly/validators/volume/_stream.py b/plotly/validators/volume/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_stream.py rename to plotly/validators/volume/_stream.py diff --git a/packages/python/plotly/plotly/validators/volume/_surface.py b/plotly/validators/volume/_surface.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_surface.py rename to plotly/validators/volume/_surface.py diff --git a/packages/python/plotly/plotly/validators/volume/_text.py b/plotly/validators/volume/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_text.py rename to plotly/validators/volume/_text.py diff --git a/packages/python/plotly/plotly/validators/volume/_textsrc.py b/plotly/validators/volume/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_textsrc.py rename to plotly/validators/volume/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_uid.py b/plotly/validators/volume/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_uid.py rename to plotly/validators/volume/_uid.py diff --git a/packages/python/plotly/plotly/validators/volume/_uirevision.py b/plotly/validators/volume/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_uirevision.py rename to plotly/validators/volume/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/volume/_value.py b/plotly/validators/volume/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_value.py rename to plotly/validators/volume/_value.py diff --git a/packages/python/plotly/plotly/validators/volume/_valuehoverformat.py b/plotly/validators/volume/_valuehoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_valuehoverformat.py rename to plotly/validators/volume/_valuehoverformat.py diff --git a/packages/python/plotly/plotly/validators/volume/_valuesrc.py b/plotly/validators/volume/_valuesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_valuesrc.py rename to plotly/validators/volume/_valuesrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_visible.py b/plotly/validators/volume/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_visible.py rename to plotly/validators/volume/_visible.py diff --git a/packages/python/plotly/plotly/validators/volume/_x.py b/plotly/validators/volume/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_x.py rename to plotly/validators/volume/_x.py diff --git a/packages/python/plotly/plotly/validators/volume/_xhoverformat.py b/plotly/validators/volume/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_xhoverformat.py rename to plotly/validators/volume/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/volume/_xsrc.py b/plotly/validators/volume/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_xsrc.py rename to plotly/validators/volume/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_y.py b/plotly/validators/volume/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_y.py rename to plotly/validators/volume/_y.py diff --git a/packages/python/plotly/plotly/validators/volume/_yhoverformat.py b/plotly/validators/volume/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_yhoverformat.py rename to plotly/validators/volume/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/volume/_ysrc.py b/plotly/validators/volume/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_ysrc.py rename to plotly/validators/volume/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/volume/_z.py b/plotly/validators/volume/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_z.py rename to plotly/validators/volume/_z.py diff --git a/packages/python/plotly/plotly/validators/volume/_zhoverformat.py b/plotly/validators/volume/_zhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_zhoverformat.py rename to plotly/validators/volume/_zhoverformat.py diff --git a/packages/python/plotly/plotly/validators/volume/_zsrc.py b/plotly/validators/volume/_zsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/_zsrc.py rename to plotly/validators/volume/_zsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/__init__.py b/plotly/validators/volume/caps/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/__init__.py rename to plotly/validators/volume/caps/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/_x.py b/plotly/validators/volume/caps/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/_x.py rename to plotly/validators/volume/caps/_x.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/_y.py b/plotly/validators/volume/caps/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/_y.py rename to plotly/validators/volume/caps/_y.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/_z.py b/plotly/validators/volume/caps/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/_z.py rename to plotly/validators/volume/caps/_z.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/x/__init__.py b/plotly/validators/volume/caps/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/x/__init__.py rename to plotly/validators/volume/caps/x/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/x/_fill.py b/plotly/validators/volume/caps/x/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/x/_fill.py rename to plotly/validators/volume/caps/x/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/x/_show.py b/plotly/validators/volume/caps/x/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/x/_show.py rename to plotly/validators/volume/caps/x/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/y/__init__.py b/plotly/validators/volume/caps/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/y/__init__.py rename to plotly/validators/volume/caps/y/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/y/_fill.py b/plotly/validators/volume/caps/y/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/y/_fill.py rename to plotly/validators/volume/caps/y/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/y/_show.py b/plotly/validators/volume/caps/y/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/y/_show.py rename to plotly/validators/volume/caps/y/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/z/__init__.py b/plotly/validators/volume/caps/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/z/__init__.py rename to plotly/validators/volume/caps/z/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/z/_fill.py b/plotly/validators/volume/caps/z/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/z/_fill.py rename to plotly/validators/volume/caps/z/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/caps/z/_show.py b/plotly/validators/volume/caps/z/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/caps/z/_show.py rename to plotly/validators/volume/caps/z/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/__init__.py b/plotly/validators/volume/colorbar/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/__init__.py rename to plotly/validators/volume/colorbar/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_bgcolor.py b/plotly/validators/volume/colorbar/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_bgcolor.py rename to plotly/validators/volume/colorbar/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_bordercolor.py b/plotly/validators/volume/colorbar/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_bordercolor.py rename to plotly/validators/volume/colorbar/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_borderwidth.py b/plotly/validators/volume/colorbar/_borderwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_borderwidth.py rename to plotly/validators/volume/colorbar/_borderwidth.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_dtick.py b/plotly/validators/volume/colorbar/_dtick.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_dtick.py rename to plotly/validators/volume/colorbar/_dtick.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_exponentformat.py b/plotly/validators/volume/colorbar/_exponentformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_exponentformat.py rename to plotly/validators/volume/colorbar/_exponentformat.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_labelalias.py b/plotly/validators/volume/colorbar/_labelalias.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_labelalias.py rename to plotly/validators/volume/colorbar/_labelalias.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_len.py b/plotly/validators/volume/colorbar/_len.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_len.py rename to plotly/validators/volume/colorbar/_len.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_lenmode.py b/plotly/validators/volume/colorbar/_lenmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_lenmode.py rename to plotly/validators/volume/colorbar/_lenmode.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_minexponent.py b/plotly/validators/volume/colorbar/_minexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_minexponent.py rename to plotly/validators/volume/colorbar/_minexponent.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_nticks.py b/plotly/validators/volume/colorbar/_nticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_nticks.py rename to plotly/validators/volume/colorbar/_nticks.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_orientation.py b/plotly/validators/volume/colorbar/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_orientation.py rename to plotly/validators/volume/colorbar/_orientation.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_outlinecolor.py b/plotly/validators/volume/colorbar/_outlinecolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_outlinecolor.py rename to plotly/validators/volume/colorbar/_outlinecolor.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_outlinewidth.py b/plotly/validators/volume/colorbar/_outlinewidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_outlinewidth.py rename to plotly/validators/volume/colorbar/_outlinewidth.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_separatethousands.py b/plotly/validators/volume/colorbar/_separatethousands.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_separatethousands.py rename to plotly/validators/volume/colorbar/_separatethousands.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_showexponent.py b/plotly/validators/volume/colorbar/_showexponent.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_showexponent.py rename to plotly/validators/volume/colorbar/_showexponent.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_showticklabels.py b/plotly/validators/volume/colorbar/_showticklabels.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_showticklabels.py rename to plotly/validators/volume/colorbar/_showticklabels.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_showtickprefix.py b/plotly/validators/volume/colorbar/_showtickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_showtickprefix.py rename to plotly/validators/volume/colorbar/_showtickprefix.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_showticksuffix.py b/plotly/validators/volume/colorbar/_showticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_showticksuffix.py rename to plotly/validators/volume/colorbar/_showticksuffix.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_thickness.py b/plotly/validators/volume/colorbar/_thickness.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_thickness.py rename to plotly/validators/volume/colorbar/_thickness.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_thicknessmode.py b/plotly/validators/volume/colorbar/_thicknessmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_thicknessmode.py rename to plotly/validators/volume/colorbar/_thicknessmode.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tick0.py b/plotly/validators/volume/colorbar/_tick0.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tick0.py rename to plotly/validators/volume/colorbar/_tick0.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickangle.py b/plotly/validators/volume/colorbar/_tickangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickangle.py rename to plotly/validators/volume/colorbar/_tickangle.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickcolor.py b/plotly/validators/volume/colorbar/_tickcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickcolor.py rename to plotly/validators/volume/colorbar/_tickcolor.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickfont.py b/plotly/validators/volume/colorbar/_tickfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickfont.py rename to plotly/validators/volume/colorbar/_tickfont.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickformat.py b/plotly/validators/volume/colorbar/_tickformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickformat.py rename to plotly/validators/volume/colorbar/_tickformat.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickformatstopdefaults.py b/plotly/validators/volume/colorbar/_tickformatstopdefaults.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickformatstopdefaults.py rename to plotly/validators/volume/colorbar/_tickformatstopdefaults.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickformatstops.py b/plotly/validators/volume/colorbar/_tickformatstops.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickformatstops.py rename to plotly/validators/volume/colorbar/_tickformatstops.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticklabeloverflow.py b/plotly/validators/volume/colorbar/_ticklabeloverflow.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticklabeloverflow.py rename to plotly/validators/volume/colorbar/_ticklabeloverflow.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticklabelposition.py b/plotly/validators/volume/colorbar/_ticklabelposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticklabelposition.py rename to plotly/validators/volume/colorbar/_ticklabelposition.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticklabelstep.py b/plotly/validators/volume/colorbar/_ticklabelstep.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticklabelstep.py rename to plotly/validators/volume/colorbar/_ticklabelstep.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticklen.py b/plotly/validators/volume/colorbar/_ticklen.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticklen.py rename to plotly/validators/volume/colorbar/_ticklen.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickmode.py b/plotly/validators/volume/colorbar/_tickmode.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickmode.py rename to plotly/validators/volume/colorbar/_tickmode.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickprefix.py b/plotly/validators/volume/colorbar/_tickprefix.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickprefix.py rename to plotly/validators/volume/colorbar/_tickprefix.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticks.py b/plotly/validators/volume/colorbar/_ticks.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticks.py rename to plotly/validators/volume/colorbar/_ticks.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticksuffix.py b/plotly/validators/volume/colorbar/_ticksuffix.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticksuffix.py rename to plotly/validators/volume/colorbar/_ticksuffix.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticktext.py b/plotly/validators/volume/colorbar/_ticktext.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticktext.py rename to plotly/validators/volume/colorbar/_ticktext.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ticktextsrc.py b/plotly/validators/volume/colorbar/_ticktextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ticktextsrc.py rename to plotly/validators/volume/colorbar/_ticktextsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickvals.py b/plotly/validators/volume/colorbar/_tickvals.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickvals.py rename to plotly/validators/volume/colorbar/_tickvals.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickvalssrc.py b/plotly/validators/volume/colorbar/_tickvalssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickvalssrc.py rename to plotly/validators/volume/colorbar/_tickvalssrc.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_tickwidth.py b/plotly/validators/volume/colorbar/_tickwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_tickwidth.py rename to plotly/validators/volume/colorbar/_tickwidth.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_title.py b/plotly/validators/volume/colorbar/_title.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_title.py rename to plotly/validators/volume/colorbar/_title.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_x.py b/plotly/validators/volume/colorbar/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_x.py rename to plotly/validators/volume/colorbar/_x.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_xanchor.py b/plotly/validators/volume/colorbar/_xanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_xanchor.py rename to plotly/validators/volume/colorbar/_xanchor.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_xpad.py b/plotly/validators/volume/colorbar/_xpad.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_xpad.py rename to plotly/validators/volume/colorbar/_xpad.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_xref.py b/plotly/validators/volume/colorbar/_xref.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_xref.py rename to plotly/validators/volume/colorbar/_xref.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_y.py b/plotly/validators/volume/colorbar/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_y.py rename to plotly/validators/volume/colorbar/_y.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_yanchor.py b/plotly/validators/volume/colorbar/_yanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_yanchor.py rename to plotly/validators/volume/colorbar/_yanchor.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_ypad.py b/plotly/validators/volume/colorbar/_ypad.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_ypad.py rename to plotly/validators/volume/colorbar/_ypad.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/_yref.py b/plotly/validators/volume/colorbar/_yref.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/_yref.py rename to plotly/validators/volume/colorbar/_yref.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/__init__.py b/plotly/validators/volume/colorbar/tickfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/__init__.py rename to plotly/validators/volume/colorbar/tickfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_color.py b/plotly/validators/volume/colorbar/tickfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_color.py rename to plotly/validators/volume/colorbar/tickfont/_color.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_family.py b/plotly/validators/volume/colorbar/tickfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_family.py rename to plotly/validators/volume/colorbar/tickfont/_family.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_lineposition.py b/plotly/validators/volume/colorbar/tickfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_lineposition.py rename to plotly/validators/volume/colorbar/tickfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_shadow.py b/plotly/validators/volume/colorbar/tickfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_shadow.py rename to plotly/validators/volume/colorbar/tickfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_size.py b/plotly/validators/volume/colorbar/tickfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_size.py rename to plotly/validators/volume/colorbar/tickfont/_size.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_style.py b/plotly/validators/volume/colorbar/tickfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_style.py rename to plotly/validators/volume/colorbar/tickfont/_style.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_textcase.py b/plotly/validators/volume/colorbar/tickfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_textcase.py rename to plotly/validators/volume/colorbar/tickfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_variant.py b/plotly/validators/volume/colorbar/tickfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_variant.py rename to plotly/validators/volume/colorbar/tickfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_weight.py b/plotly/validators/volume/colorbar/tickfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickfont/_weight.py rename to plotly/validators/volume/colorbar/tickfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/__init__.py b/plotly/validators/volume/colorbar/tickformatstop/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/__init__.py rename to plotly/validators/volume/colorbar/tickformatstop/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_dtickrange.py b/plotly/validators/volume/colorbar/tickformatstop/_dtickrange.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_dtickrange.py rename to plotly/validators/volume/colorbar/tickformatstop/_dtickrange.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_enabled.py b/plotly/validators/volume/colorbar/tickformatstop/_enabled.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_enabled.py rename to plotly/validators/volume/colorbar/tickformatstop/_enabled.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_name.py b/plotly/validators/volume/colorbar/tickformatstop/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_name.py rename to plotly/validators/volume/colorbar/tickformatstop/_name.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_templateitemname.py b/plotly/validators/volume/colorbar/tickformatstop/_templateitemname.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_templateitemname.py rename to plotly/validators/volume/colorbar/tickformatstop/_templateitemname.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_value.py b/plotly/validators/volume/colorbar/tickformatstop/_value.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/tickformatstop/_value.py rename to plotly/validators/volume/colorbar/tickformatstop/_value.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/__init__.py b/plotly/validators/volume/colorbar/title/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/__init__.py rename to plotly/validators/volume/colorbar/title/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/_font.py b/plotly/validators/volume/colorbar/title/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/_font.py rename to plotly/validators/volume/colorbar/title/_font.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/_side.py b/plotly/validators/volume/colorbar/title/_side.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/_side.py rename to plotly/validators/volume/colorbar/title/_side.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/_text.py b/plotly/validators/volume/colorbar/title/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/_text.py rename to plotly/validators/volume/colorbar/title/_text.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/__init__.py b/plotly/validators/volume/colorbar/title/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/__init__.py rename to plotly/validators/volume/colorbar/title/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_color.py b/plotly/validators/volume/colorbar/title/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_color.py rename to plotly/validators/volume/colorbar/title/font/_color.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_family.py b/plotly/validators/volume/colorbar/title/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_family.py rename to plotly/validators/volume/colorbar/title/font/_family.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_lineposition.py b/plotly/validators/volume/colorbar/title/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_lineposition.py rename to plotly/validators/volume/colorbar/title/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_shadow.py b/plotly/validators/volume/colorbar/title/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_shadow.py rename to plotly/validators/volume/colorbar/title/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_size.py b/plotly/validators/volume/colorbar/title/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_size.py rename to plotly/validators/volume/colorbar/title/font/_size.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_style.py b/plotly/validators/volume/colorbar/title/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_style.py rename to plotly/validators/volume/colorbar/title/font/_style.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_textcase.py b/plotly/validators/volume/colorbar/title/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_textcase.py rename to plotly/validators/volume/colorbar/title/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_variant.py b/plotly/validators/volume/colorbar/title/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_variant.py rename to plotly/validators/volume/colorbar/title/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/volume/colorbar/title/font/_weight.py b/plotly/validators/volume/colorbar/title/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/colorbar/title/font/_weight.py rename to plotly/validators/volume/colorbar/title/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/volume/contour/__init__.py b/plotly/validators/volume/contour/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/contour/__init__.py rename to plotly/validators/volume/contour/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/contour/_color.py b/plotly/validators/volume/contour/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/contour/_color.py rename to plotly/validators/volume/contour/_color.py diff --git a/packages/python/plotly/plotly/validators/volume/contour/_show.py b/plotly/validators/volume/contour/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/contour/_show.py rename to plotly/validators/volume/contour/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/contour/_width.py b/plotly/validators/volume/contour/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/contour/_width.py rename to plotly/validators/volume/contour/_width.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/__init__.py b/plotly/validators/volume/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/__init__.py rename to plotly/validators/volume/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_align.py b/plotly/validators/volume/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_align.py rename to plotly/validators/volume/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_alignsrc.py b/plotly/validators/volume/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_alignsrc.py rename to plotly/validators/volume/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_bgcolor.py b/plotly/validators/volume/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_bgcolor.py rename to plotly/validators/volume/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_bgcolorsrc.py b/plotly/validators/volume/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_bgcolorsrc.py rename to plotly/validators/volume/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_bordercolor.py b/plotly/validators/volume/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_bordercolor.py rename to plotly/validators/volume/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_bordercolorsrc.py b/plotly/validators/volume/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_bordercolorsrc.py rename to plotly/validators/volume/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_font.py b/plotly/validators/volume/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_font.py rename to plotly/validators/volume/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_namelength.py b/plotly/validators/volume/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_namelength.py rename to plotly/validators/volume/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/_namelengthsrc.py b/plotly/validators/volume/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/_namelengthsrc.py rename to plotly/validators/volume/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/__init__.py b/plotly/validators/volume/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/__init__.py rename to plotly/validators/volume/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_color.py b/plotly/validators/volume/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_color.py rename to plotly/validators/volume/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_colorsrc.py b/plotly/validators/volume/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_colorsrc.py rename to plotly/validators/volume/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_family.py b/plotly/validators/volume/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_family.py rename to plotly/validators/volume/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_familysrc.py b/plotly/validators/volume/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_familysrc.py rename to plotly/validators/volume/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_lineposition.py b/plotly/validators/volume/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_lineposition.py rename to plotly/validators/volume/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_linepositionsrc.py b/plotly/validators/volume/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/volume/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_shadow.py b/plotly/validators/volume/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_shadow.py rename to plotly/validators/volume/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_shadowsrc.py b/plotly/validators/volume/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_shadowsrc.py rename to plotly/validators/volume/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_size.py b/plotly/validators/volume/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_size.py rename to plotly/validators/volume/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_sizesrc.py b/plotly/validators/volume/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_sizesrc.py rename to plotly/validators/volume/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_style.py b/plotly/validators/volume/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_style.py rename to plotly/validators/volume/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_stylesrc.py b/plotly/validators/volume/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_stylesrc.py rename to plotly/validators/volume/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_textcase.py b/plotly/validators/volume/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_textcase.py rename to plotly/validators/volume/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_textcasesrc.py b/plotly/validators/volume/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_textcasesrc.py rename to plotly/validators/volume/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_variant.py b/plotly/validators/volume/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_variant.py rename to plotly/validators/volume/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_variantsrc.py b/plotly/validators/volume/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_variantsrc.py rename to plotly/validators/volume/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_weight.py b/plotly/validators/volume/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_weight.py rename to plotly/validators/volume/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/volume/hoverlabel/font/_weightsrc.py b/plotly/validators/volume/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/hoverlabel/font/_weightsrc.py rename to plotly/validators/volume/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/__init__.py b/plotly/validators/volume/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/__init__.py rename to plotly/validators/volume/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/_font.py b/plotly/validators/volume/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/_font.py rename to plotly/validators/volume/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/_text.py b/plotly/validators/volume/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/_text.py rename to plotly/validators/volume/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/__init__.py b/plotly/validators/volume/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/__init__.py rename to plotly/validators/volume/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_color.py b/plotly/validators/volume/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_color.py rename to plotly/validators/volume/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_family.py b/plotly/validators/volume/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_family.py rename to plotly/validators/volume/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_lineposition.py b/plotly/validators/volume/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_lineposition.py rename to plotly/validators/volume/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_shadow.py b/plotly/validators/volume/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_shadow.py rename to plotly/validators/volume/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_size.py b/plotly/validators/volume/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_size.py rename to plotly/validators/volume/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_style.py b/plotly/validators/volume/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_style.py rename to plotly/validators/volume/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_textcase.py b/plotly/validators/volume/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_textcase.py rename to plotly/validators/volume/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_variant.py b/plotly/validators/volume/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_variant.py rename to plotly/validators/volume/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_weight.py b/plotly/validators/volume/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/legendgrouptitle/font/_weight.py rename to plotly/validators/volume/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/__init__.py b/plotly/validators/volume/lighting/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/__init__.py rename to plotly/validators/volume/lighting/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_ambient.py b/plotly/validators/volume/lighting/_ambient.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_ambient.py rename to plotly/validators/volume/lighting/_ambient.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_diffuse.py b/plotly/validators/volume/lighting/_diffuse.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_diffuse.py rename to plotly/validators/volume/lighting/_diffuse.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_facenormalsepsilon.py b/plotly/validators/volume/lighting/_facenormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_facenormalsepsilon.py rename to plotly/validators/volume/lighting/_facenormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_fresnel.py b/plotly/validators/volume/lighting/_fresnel.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_fresnel.py rename to plotly/validators/volume/lighting/_fresnel.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_roughness.py b/plotly/validators/volume/lighting/_roughness.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_roughness.py rename to plotly/validators/volume/lighting/_roughness.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_specular.py b/plotly/validators/volume/lighting/_specular.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_specular.py rename to plotly/validators/volume/lighting/_specular.py diff --git a/packages/python/plotly/plotly/validators/volume/lighting/_vertexnormalsepsilon.py b/plotly/validators/volume/lighting/_vertexnormalsepsilon.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lighting/_vertexnormalsepsilon.py rename to plotly/validators/volume/lighting/_vertexnormalsepsilon.py diff --git a/packages/python/plotly/plotly/validators/volume/lightposition/__init__.py b/plotly/validators/volume/lightposition/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lightposition/__init__.py rename to plotly/validators/volume/lightposition/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/lightposition/_x.py b/plotly/validators/volume/lightposition/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lightposition/_x.py rename to plotly/validators/volume/lightposition/_x.py diff --git a/packages/python/plotly/plotly/validators/volume/lightposition/_y.py b/plotly/validators/volume/lightposition/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lightposition/_y.py rename to plotly/validators/volume/lightposition/_y.py diff --git a/packages/python/plotly/plotly/validators/volume/lightposition/_z.py b/plotly/validators/volume/lightposition/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/lightposition/_z.py rename to plotly/validators/volume/lightposition/_z.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/__init__.py b/plotly/validators/volume/slices/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/__init__.py rename to plotly/validators/volume/slices/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/_x.py b/plotly/validators/volume/slices/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/_x.py rename to plotly/validators/volume/slices/_x.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/_y.py b/plotly/validators/volume/slices/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/_y.py rename to plotly/validators/volume/slices/_y.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/_z.py b/plotly/validators/volume/slices/_z.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/_z.py rename to plotly/validators/volume/slices/_z.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/x/__init__.py b/plotly/validators/volume/slices/x/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/x/__init__.py rename to plotly/validators/volume/slices/x/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/x/_fill.py b/plotly/validators/volume/slices/x/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/x/_fill.py rename to plotly/validators/volume/slices/x/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/x/_locations.py b/plotly/validators/volume/slices/x/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/x/_locations.py rename to plotly/validators/volume/slices/x/_locations.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/x/_locationssrc.py b/plotly/validators/volume/slices/x/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/x/_locationssrc.py rename to plotly/validators/volume/slices/x/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/x/_show.py b/plotly/validators/volume/slices/x/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/x/_show.py rename to plotly/validators/volume/slices/x/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/y/__init__.py b/plotly/validators/volume/slices/y/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/y/__init__.py rename to plotly/validators/volume/slices/y/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/y/_fill.py b/plotly/validators/volume/slices/y/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/y/_fill.py rename to plotly/validators/volume/slices/y/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/y/_locations.py b/plotly/validators/volume/slices/y/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/y/_locations.py rename to plotly/validators/volume/slices/y/_locations.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/y/_locationssrc.py b/plotly/validators/volume/slices/y/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/y/_locationssrc.py rename to plotly/validators/volume/slices/y/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/y/_show.py b/plotly/validators/volume/slices/y/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/y/_show.py rename to plotly/validators/volume/slices/y/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/z/__init__.py b/plotly/validators/volume/slices/z/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/z/__init__.py rename to plotly/validators/volume/slices/z/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/z/_fill.py b/plotly/validators/volume/slices/z/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/z/_fill.py rename to plotly/validators/volume/slices/z/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/z/_locations.py b/plotly/validators/volume/slices/z/_locations.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/z/_locations.py rename to plotly/validators/volume/slices/z/_locations.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/z/_locationssrc.py b/plotly/validators/volume/slices/z/_locationssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/z/_locationssrc.py rename to plotly/validators/volume/slices/z/_locationssrc.py diff --git a/packages/python/plotly/plotly/validators/volume/slices/z/_show.py b/plotly/validators/volume/slices/z/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/slices/z/_show.py rename to plotly/validators/volume/slices/z/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/spaceframe/__init__.py b/plotly/validators/volume/spaceframe/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/spaceframe/__init__.py rename to plotly/validators/volume/spaceframe/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/spaceframe/_fill.py b/plotly/validators/volume/spaceframe/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/spaceframe/_fill.py rename to plotly/validators/volume/spaceframe/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/spaceframe/_show.py b/plotly/validators/volume/spaceframe/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/spaceframe/_show.py rename to plotly/validators/volume/spaceframe/_show.py diff --git a/packages/python/plotly/plotly/validators/volume/stream/__init__.py b/plotly/validators/volume/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/stream/__init__.py rename to plotly/validators/volume/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/stream/_maxpoints.py b/plotly/validators/volume/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/stream/_maxpoints.py rename to plotly/validators/volume/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/volume/stream/_token.py b/plotly/validators/volume/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/stream/_token.py rename to plotly/validators/volume/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/volume/surface/__init__.py b/plotly/validators/volume/surface/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/surface/__init__.py rename to plotly/validators/volume/surface/__init__.py diff --git a/packages/python/plotly/plotly/validators/volume/surface/_count.py b/plotly/validators/volume/surface/_count.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/surface/_count.py rename to plotly/validators/volume/surface/_count.py diff --git a/packages/python/plotly/plotly/validators/volume/surface/_fill.py b/plotly/validators/volume/surface/_fill.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/surface/_fill.py rename to plotly/validators/volume/surface/_fill.py diff --git a/packages/python/plotly/plotly/validators/volume/surface/_pattern.py b/plotly/validators/volume/surface/_pattern.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/surface/_pattern.py rename to plotly/validators/volume/surface/_pattern.py diff --git a/packages/python/plotly/plotly/validators/volume/surface/_show.py b/plotly/validators/volume/surface/_show.py similarity index 100% rename from packages/python/plotly/plotly/validators/volume/surface/_show.py rename to plotly/validators/volume/surface/_show.py diff --git a/packages/python/plotly/plotly/validators/waterfall/__init__.py b/plotly/validators/waterfall/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/__init__.py rename to plotly/validators/waterfall/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_alignmentgroup.py b/plotly/validators/waterfall/_alignmentgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_alignmentgroup.py rename to plotly/validators/waterfall/_alignmentgroup.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_base.py b/plotly/validators/waterfall/_base.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_base.py rename to plotly/validators/waterfall/_base.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_cliponaxis.py b/plotly/validators/waterfall/_cliponaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_cliponaxis.py rename to plotly/validators/waterfall/_cliponaxis.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_connector.py b/plotly/validators/waterfall/_connector.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_connector.py rename to plotly/validators/waterfall/_connector.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_constraintext.py b/plotly/validators/waterfall/_constraintext.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_constraintext.py rename to plotly/validators/waterfall/_constraintext.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_customdata.py b/plotly/validators/waterfall/_customdata.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_customdata.py rename to plotly/validators/waterfall/_customdata.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_customdatasrc.py b/plotly/validators/waterfall/_customdatasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_customdatasrc.py rename to plotly/validators/waterfall/_customdatasrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_decreasing.py b/plotly/validators/waterfall/_decreasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_decreasing.py rename to plotly/validators/waterfall/_decreasing.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_dx.py b/plotly/validators/waterfall/_dx.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_dx.py rename to plotly/validators/waterfall/_dx.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_dy.py b/plotly/validators/waterfall/_dy.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_dy.py rename to plotly/validators/waterfall/_dy.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hoverinfo.py b/plotly/validators/waterfall/_hoverinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hoverinfo.py rename to plotly/validators/waterfall/_hoverinfo.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hoverinfosrc.py b/plotly/validators/waterfall/_hoverinfosrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hoverinfosrc.py rename to plotly/validators/waterfall/_hoverinfosrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hoverlabel.py b/plotly/validators/waterfall/_hoverlabel.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hoverlabel.py rename to plotly/validators/waterfall/_hoverlabel.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hovertemplate.py b/plotly/validators/waterfall/_hovertemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hovertemplate.py rename to plotly/validators/waterfall/_hovertemplate.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hovertemplatesrc.py b/plotly/validators/waterfall/_hovertemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hovertemplatesrc.py rename to plotly/validators/waterfall/_hovertemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hovertext.py b/plotly/validators/waterfall/_hovertext.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hovertext.py rename to plotly/validators/waterfall/_hovertext.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_hovertextsrc.py b/plotly/validators/waterfall/_hovertextsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_hovertextsrc.py rename to plotly/validators/waterfall/_hovertextsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_ids.py b/plotly/validators/waterfall/_ids.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_ids.py rename to plotly/validators/waterfall/_ids.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_idssrc.py b/plotly/validators/waterfall/_idssrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_idssrc.py rename to plotly/validators/waterfall/_idssrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_increasing.py b/plotly/validators/waterfall/_increasing.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_increasing.py rename to plotly/validators/waterfall/_increasing.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_insidetextanchor.py b/plotly/validators/waterfall/_insidetextanchor.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_insidetextanchor.py rename to plotly/validators/waterfall/_insidetextanchor.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_insidetextfont.py b/plotly/validators/waterfall/_insidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_insidetextfont.py rename to plotly/validators/waterfall/_insidetextfont.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_legend.py b/plotly/validators/waterfall/_legend.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_legend.py rename to plotly/validators/waterfall/_legend.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_legendgroup.py b/plotly/validators/waterfall/_legendgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_legendgroup.py rename to plotly/validators/waterfall/_legendgroup.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_legendgrouptitle.py b/plotly/validators/waterfall/_legendgrouptitle.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_legendgrouptitle.py rename to plotly/validators/waterfall/_legendgrouptitle.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_legendrank.py b/plotly/validators/waterfall/_legendrank.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_legendrank.py rename to plotly/validators/waterfall/_legendrank.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_legendwidth.py b/plotly/validators/waterfall/_legendwidth.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_legendwidth.py rename to plotly/validators/waterfall/_legendwidth.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_measure.py b/plotly/validators/waterfall/_measure.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_measure.py rename to plotly/validators/waterfall/_measure.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_measuresrc.py b/plotly/validators/waterfall/_measuresrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_measuresrc.py rename to plotly/validators/waterfall/_measuresrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_meta.py b/plotly/validators/waterfall/_meta.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_meta.py rename to plotly/validators/waterfall/_meta.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_metasrc.py b/plotly/validators/waterfall/_metasrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_metasrc.py rename to plotly/validators/waterfall/_metasrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_name.py b/plotly/validators/waterfall/_name.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_name.py rename to plotly/validators/waterfall/_name.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_offset.py b/plotly/validators/waterfall/_offset.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_offset.py rename to plotly/validators/waterfall/_offset.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_offsetgroup.py b/plotly/validators/waterfall/_offsetgroup.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_offsetgroup.py rename to plotly/validators/waterfall/_offsetgroup.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_offsetsrc.py b/plotly/validators/waterfall/_offsetsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_offsetsrc.py rename to plotly/validators/waterfall/_offsetsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_opacity.py b/plotly/validators/waterfall/_opacity.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_opacity.py rename to plotly/validators/waterfall/_opacity.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_orientation.py b/plotly/validators/waterfall/_orientation.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_orientation.py rename to plotly/validators/waterfall/_orientation.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_outsidetextfont.py b/plotly/validators/waterfall/_outsidetextfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_outsidetextfont.py rename to plotly/validators/waterfall/_outsidetextfont.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_selectedpoints.py b/plotly/validators/waterfall/_selectedpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_selectedpoints.py rename to plotly/validators/waterfall/_selectedpoints.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_showlegend.py b/plotly/validators/waterfall/_showlegend.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_showlegend.py rename to plotly/validators/waterfall/_showlegend.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_stream.py b/plotly/validators/waterfall/_stream.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_stream.py rename to plotly/validators/waterfall/_stream.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_text.py b/plotly/validators/waterfall/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_text.py rename to plotly/validators/waterfall/_text.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_textangle.py b/plotly/validators/waterfall/_textangle.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_textangle.py rename to plotly/validators/waterfall/_textangle.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_textfont.py b/plotly/validators/waterfall/_textfont.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_textfont.py rename to plotly/validators/waterfall/_textfont.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_textinfo.py b/plotly/validators/waterfall/_textinfo.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_textinfo.py rename to plotly/validators/waterfall/_textinfo.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_textposition.py b/plotly/validators/waterfall/_textposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_textposition.py rename to plotly/validators/waterfall/_textposition.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_textpositionsrc.py b/plotly/validators/waterfall/_textpositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_textpositionsrc.py rename to plotly/validators/waterfall/_textpositionsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_textsrc.py b/plotly/validators/waterfall/_textsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_textsrc.py rename to plotly/validators/waterfall/_textsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_texttemplate.py b/plotly/validators/waterfall/_texttemplate.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_texttemplate.py rename to plotly/validators/waterfall/_texttemplate.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_texttemplatesrc.py b/plotly/validators/waterfall/_texttemplatesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_texttemplatesrc.py rename to plotly/validators/waterfall/_texttemplatesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_totals.py b/plotly/validators/waterfall/_totals.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_totals.py rename to plotly/validators/waterfall/_totals.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_uid.py b/plotly/validators/waterfall/_uid.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_uid.py rename to plotly/validators/waterfall/_uid.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_uirevision.py b/plotly/validators/waterfall/_uirevision.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_uirevision.py rename to plotly/validators/waterfall/_uirevision.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_visible.py b/plotly/validators/waterfall/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_visible.py rename to plotly/validators/waterfall/_visible.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_width.py b/plotly/validators/waterfall/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_width.py rename to plotly/validators/waterfall/_width.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_widthsrc.py b/plotly/validators/waterfall/_widthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_widthsrc.py rename to plotly/validators/waterfall/_widthsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_x.py b/plotly/validators/waterfall/_x.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_x.py rename to plotly/validators/waterfall/_x.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_x0.py b/plotly/validators/waterfall/_x0.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_x0.py rename to plotly/validators/waterfall/_x0.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_xaxis.py b/plotly/validators/waterfall/_xaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_xaxis.py rename to plotly/validators/waterfall/_xaxis.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_xhoverformat.py b/plotly/validators/waterfall/_xhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_xhoverformat.py rename to plotly/validators/waterfall/_xhoverformat.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_xperiod.py b/plotly/validators/waterfall/_xperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_xperiod.py rename to plotly/validators/waterfall/_xperiod.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_xperiod0.py b/plotly/validators/waterfall/_xperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_xperiod0.py rename to plotly/validators/waterfall/_xperiod0.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_xperiodalignment.py b/plotly/validators/waterfall/_xperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_xperiodalignment.py rename to plotly/validators/waterfall/_xperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_xsrc.py b/plotly/validators/waterfall/_xsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_xsrc.py rename to plotly/validators/waterfall/_xsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_y.py b/plotly/validators/waterfall/_y.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_y.py rename to plotly/validators/waterfall/_y.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_y0.py b/plotly/validators/waterfall/_y0.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_y0.py rename to plotly/validators/waterfall/_y0.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_yaxis.py b/plotly/validators/waterfall/_yaxis.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_yaxis.py rename to plotly/validators/waterfall/_yaxis.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_yhoverformat.py b/plotly/validators/waterfall/_yhoverformat.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_yhoverformat.py rename to plotly/validators/waterfall/_yhoverformat.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_yperiod.py b/plotly/validators/waterfall/_yperiod.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_yperiod.py rename to plotly/validators/waterfall/_yperiod.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_yperiod0.py b/plotly/validators/waterfall/_yperiod0.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_yperiod0.py rename to plotly/validators/waterfall/_yperiod0.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_yperiodalignment.py b/plotly/validators/waterfall/_yperiodalignment.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_yperiodalignment.py rename to plotly/validators/waterfall/_yperiodalignment.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_ysrc.py b/plotly/validators/waterfall/_ysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_ysrc.py rename to plotly/validators/waterfall/_ysrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/_zorder.py b/plotly/validators/waterfall/_zorder.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/_zorder.py rename to plotly/validators/waterfall/_zorder.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/__init__.py b/plotly/validators/waterfall/connector/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/__init__.py rename to plotly/validators/waterfall/connector/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/_line.py b/plotly/validators/waterfall/connector/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/_line.py rename to plotly/validators/waterfall/connector/_line.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/_mode.py b/plotly/validators/waterfall/connector/_mode.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/_mode.py rename to plotly/validators/waterfall/connector/_mode.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/_visible.py b/plotly/validators/waterfall/connector/_visible.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/_visible.py rename to plotly/validators/waterfall/connector/_visible.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/line/__init__.py b/plotly/validators/waterfall/connector/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/line/__init__.py rename to plotly/validators/waterfall/connector/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/line/_color.py b/plotly/validators/waterfall/connector/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/line/_color.py rename to plotly/validators/waterfall/connector/line/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/line/_dash.py b/plotly/validators/waterfall/connector/line/_dash.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/line/_dash.py rename to plotly/validators/waterfall/connector/line/_dash.py diff --git a/packages/python/plotly/plotly/validators/waterfall/connector/line/_width.py b/plotly/validators/waterfall/connector/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/connector/line/_width.py rename to plotly/validators/waterfall/connector/line/_width.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/__init__.py b/plotly/validators/waterfall/decreasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/__init__.py rename to plotly/validators/waterfall/decreasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/_marker.py b/plotly/validators/waterfall/decreasing/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/_marker.py rename to plotly/validators/waterfall/decreasing/_marker.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/marker/__init__.py b/plotly/validators/waterfall/decreasing/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/marker/__init__.py rename to plotly/validators/waterfall/decreasing/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/marker/_color.py b/plotly/validators/waterfall/decreasing/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/marker/_color.py rename to plotly/validators/waterfall/decreasing/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/marker/_line.py b/plotly/validators/waterfall/decreasing/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/marker/_line.py rename to plotly/validators/waterfall/decreasing/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/marker/line/__init__.py b/plotly/validators/waterfall/decreasing/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/marker/line/__init__.py rename to plotly/validators/waterfall/decreasing/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/marker/line/_color.py b/plotly/validators/waterfall/decreasing/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/marker/line/_color.py rename to plotly/validators/waterfall/decreasing/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/decreasing/marker/line/_width.py b/plotly/validators/waterfall/decreasing/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/decreasing/marker/line/_width.py rename to plotly/validators/waterfall/decreasing/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/__init__.py b/plotly/validators/waterfall/hoverlabel/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/__init__.py rename to plotly/validators/waterfall/hoverlabel/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_align.py b/plotly/validators/waterfall/hoverlabel/_align.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_align.py rename to plotly/validators/waterfall/hoverlabel/_align.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_alignsrc.py b/plotly/validators/waterfall/hoverlabel/_alignsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_alignsrc.py rename to plotly/validators/waterfall/hoverlabel/_alignsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bgcolor.py b/plotly/validators/waterfall/hoverlabel/_bgcolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bgcolor.py rename to plotly/validators/waterfall/hoverlabel/_bgcolor.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bgcolorsrc.py b/plotly/validators/waterfall/hoverlabel/_bgcolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bgcolorsrc.py rename to plotly/validators/waterfall/hoverlabel/_bgcolorsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bordercolor.py b/plotly/validators/waterfall/hoverlabel/_bordercolor.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bordercolor.py rename to plotly/validators/waterfall/hoverlabel/_bordercolor.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bordercolorsrc.py b/plotly/validators/waterfall/hoverlabel/_bordercolorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_bordercolorsrc.py rename to plotly/validators/waterfall/hoverlabel/_bordercolorsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_font.py b/plotly/validators/waterfall/hoverlabel/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_font.py rename to plotly/validators/waterfall/hoverlabel/_font.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_namelength.py b/plotly/validators/waterfall/hoverlabel/_namelength.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_namelength.py rename to plotly/validators/waterfall/hoverlabel/_namelength.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/_namelengthsrc.py b/plotly/validators/waterfall/hoverlabel/_namelengthsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/_namelengthsrc.py rename to plotly/validators/waterfall/hoverlabel/_namelengthsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/__init__.py b/plotly/validators/waterfall/hoverlabel/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/__init__.py rename to plotly/validators/waterfall/hoverlabel/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_color.py b/plotly/validators/waterfall/hoverlabel/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_color.py rename to plotly/validators/waterfall/hoverlabel/font/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_colorsrc.py b/plotly/validators/waterfall/hoverlabel/font/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_colorsrc.py rename to plotly/validators/waterfall/hoverlabel/font/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_family.py b/plotly/validators/waterfall/hoverlabel/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_family.py rename to plotly/validators/waterfall/hoverlabel/font/_family.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_familysrc.py b/plotly/validators/waterfall/hoverlabel/font/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_familysrc.py rename to plotly/validators/waterfall/hoverlabel/font/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_lineposition.py b/plotly/validators/waterfall/hoverlabel/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_lineposition.py rename to plotly/validators/waterfall/hoverlabel/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_linepositionsrc.py b/plotly/validators/waterfall/hoverlabel/font/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_linepositionsrc.py rename to plotly/validators/waterfall/hoverlabel/font/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_shadow.py b/plotly/validators/waterfall/hoverlabel/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_shadow.py rename to plotly/validators/waterfall/hoverlabel/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_shadowsrc.py b/plotly/validators/waterfall/hoverlabel/font/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_shadowsrc.py rename to plotly/validators/waterfall/hoverlabel/font/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_size.py b/plotly/validators/waterfall/hoverlabel/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_size.py rename to plotly/validators/waterfall/hoverlabel/font/_size.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_sizesrc.py b/plotly/validators/waterfall/hoverlabel/font/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_sizesrc.py rename to plotly/validators/waterfall/hoverlabel/font/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_style.py b/plotly/validators/waterfall/hoverlabel/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_style.py rename to plotly/validators/waterfall/hoverlabel/font/_style.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_stylesrc.py b/plotly/validators/waterfall/hoverlabel/font/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_stylesrc.py rename to plotly/validators/waterfall/hoverlabel/font/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_textcase.py b/plotly/validators/waterfall/hoverlabel/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_textcase.py rename to plotly/validators/waterfall/hoverlabel/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_textcasesrc.py b/plotly/validators/waterfall/hoverlabel/font/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_textcasesrc.py rename to plotly/validators/waterfall/hoverlabel/font/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_variant.py b/plotly/validators/waterfall/hoverlabel/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_variant.py rename to plotly/validators/waterfall/hoverlabel/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_variantsrc.py b/plotly/validators/waterfall/hoverlabel/font/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_variantsrc.py rename to plotly/validators/waterfall/hoverlabel/font/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_weight.py b/plotly/validators/waterfall/hoverlabel/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_weight.py rename to plotly/validators/waterfall/hoverlabel/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_weightsrc.py b/plotly/validators/waterfall/hoverlabel/font/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/hoverlabel/font/_weightsrc.py rename to plotly/validators/waterfall/hoverlabel/font/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/__init__.py b/plotly/validators/waterfall/increasing/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/__init__.py rename to plotly/validators/waterfall/increasing/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/_marker.py b/plotly/validators/waterfall/increasing/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/_marker.py rename to plotly/validators/waterfall/increasing/_marker.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/marker/__init__.py b/plotly/validators/waterfall/increasing/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/marker/__init__.py rename to plotly/validators/waterfall/increasing/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/marker/_color.py b/plotly/validators/waterfall/increasing/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/marker/_color.py rename to plotly/validators/waterfall/increasing/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/marker/_line.py b/plotly/validators/waterfall/increasing/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/marker/_line.py rename to plotly/validators/waterfall/increasing/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/marker/line/__init__.py b/plotly/validators/waterfall/increasing/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/marker/line/__init__.py rename to plotly/validators/waterfall/increasing/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/marker/line/_color.py b/plotly/validators/waterfall/increasing/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/marker/line/_color.py rename to plotly/validators/waterfall/increasing/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/increasing/marker/line/_width.py b/plotly/validators/waterfall/increasing/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/increasing/marker/line/_width.py rename to plotly/validators/waterfall/increasing/marker/line/_width.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/__init__.py b/plotly/validators/waterfall/insidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/__init__.py rename to plotly/validators/waterfall/insidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_color.py b/plotly/validators/waterfall/insidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_color.py rename to plotly/validators/waterfall/insidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_colorsrc.py b/plotly/validators/waterfall/insidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_colorsrc.py rename to plotly/validators/waterfall/insidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_family.py b/plotly/validators/waterfall/insidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_family.py rename to plotly/validators/waterfall/insidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_familysrc.py b/plotly/validators/waterfall/insidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_familysrc.py rename to plotly/validators/waterfall/insidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_lineposition.py b/plotly/validators/waterfall/insidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_lineposition.py rename to plotly/validators/waterfall/insidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_linepositionsrc.py b/plotly/validators/waterfall/insidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_linepositionsrc.py rename to plotly/validators/waterfall/insidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_shadow.py b/plotly/validators/waterfall/insidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_shadow.py rename to plotly/validators/waterfall/insidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_shadowsrc.py b/plotly/validators/waterfall/insidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_shadowsrc.py rename to plotly/validators/waterfall/insidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_size.py b/plotly/validators/waterfall/insidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_size.py rename to plotly/validators/waterfall/insidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_sizesrc.py b/plotly/validators/waterfall/insidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_sizesrc.py rename to plotly/validators/waterfall/insidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_style.py b/plotly/validators/waterfall/insidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_style.py rename to plotly/validators/waterfall/insidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_stylesrc.py b/plotly/validators/waterfall/insidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_stylesrc.py rename to plotly/validators/waterfall/insidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_textcase.py b/plotly/validators/waterfall/insidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_textcase.py rename to plotly/validators/waterfall/insidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_textcasesrc.py b/plotly/validators/waterfall/insidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_textcasesrc.py rename to plotly/validators/waterfall/insidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_variant.py b/plotly/validators/waterfall/insidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_variant.py rename to plotly/validators/waterfall/insidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_variantsrc.py b/plotly/validators/waterfall/insidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_variantsrc.py rename to plotly/validators/waterfall/insidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_weight.py b/plotly/validators/waterfall/insidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_weight.py rename to plotly/validators/waterfall/insidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/waterfall/insidetextfont/_weightsrc.py b/plotly/validators/waterfall/insidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/insidetextfont/_weightsrc.py rename to plotly/validators/waterfall/insidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/__init__.py b/plotly/validators/waterfall/legendgrouptitle/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/__init__.py rename to plotly/validators/waterfall/legendgrouptitle/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/_font.py b/plotly/validators/waterfall/legendgrouptitle/_font.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/_font.py rename to plotly/validators/waterfall/legendgrouptitle/_font.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/_text.py b/plotly/validators/waterfall/legendgrouptitle/_text.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/_text.py rename to plotly/validators/waterfall/legendgrouptitle/_text.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/__init__.py b/plotly/validators/waterfall/legendgrouptitle/font/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/__init__.py rename to plotly/validators/waterfall/legendgrouptitle/font/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_color.py b/plotly/validators/waterfall/legendgrouptitle/font/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_color.py rename to plotly/validators/waterfall/legendgrouptitle/font/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_family.py b/plotly/validators/waterfall/legendgrouptitle/font/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_family.py rename to plotly/validators/waterfall/legendgrouptitle/font/_family.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_lineposition.py b/plotly/validators/waterfall/legendgrouptitle/font/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_lineposition.py rename to plotly/validators/waterfall/legendgrouptitle/font/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_shadow.py b/plotly/validators/waterfall/legendgrouptitle/font/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_shadow.py rename to plotly/validators/waterfall/legendgrouptitle/font/_shadow.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_size.py b/plotly/validators/waterfall/legendgrouptitle/font/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_size.py rename to plotly/validators/waterfall/legendgrouptitle/font/_size.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_style.py b/plotly/validators/waterfall/legendgrouptitle/font/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_style.py rename to plotly/validators/waterfall/legendgrouptitle/font/_style.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_textcase.py b/plotly/validators/waterfall/legendgrouptitle/font/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_textcase.py rename to plotly/validators/waterfall/legendgrouptitle/font/_textcase.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_variant.py b/plotly/validators/waterfall/legendgrouptitle/font/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_variant.py rename to plotly/validators/waterfall/legendgrouptitle/font/_variant.py diff --git a/packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_weight.py b/plotly/validators/waterfall/legendgrouptitle/font/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/legendgrouptitle/font/_weight.py rename to plotly/validators/waterfall/legendgrouptitle/font/_weight.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/__init__.py b/plotly/validators/waterfall/outsidetextfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/__init__.py rename to plotly/validators/waterfall/outsidetextfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_color.py b/plotly/validators/waterfall/outsidetextfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_color.py rename to plotly/validators/waterfall/outsidetextfont/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_colorsrc.py b/plotly/validators/waterfall/outsidetextfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_colorsrc.py rename to plotly/validators/waterfall/outsidetextfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_family.py b/plotly/validators/waterfall/outsidetextfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_family.py rename to plotly/validators/waterfall/outsidetextfont/_family.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_familysrc.py b/plotly/validators/waterfall/outsidetextfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_familysrc.py rename to plotly/validators/waterfall/outsidetextfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_lineposition.py b/plotly/validators/waterfall/outsidetextfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_lineposition.py rename to plotly/validators/waterfall/outsidetextfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_linepositionsrc.py b/plotly/validators/waterfall/outsidetextfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_linepositionsrc.py rename to plotly/validators/waterfall/outsidetextfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_shadow.py b/plotly/validators/waterfall/outsidetextfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_shadow.py rename to plotly/validators/waterfall/outsidetextfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_shadowsrc.py b/plotly/validators/waterfall/outsidetextfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_shadowsrc.py rename to plotly/validators/waterfall/outsidetextfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_size.py b/plotly/validators/waterfall/outsidetextfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_size.py rename to plotly/validators/waterfall/outsidetextfont/_size.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_sizesrc.py b/plotly/validators/waterfall/outsidetextfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_sizesrc.py rename to plotly/validators/waterfall/outsidetextfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_style.py b/plotly/validators/waterfall/outsidetextfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_style.py rename to plotly/validators/waterfall/outsidetextfont/_style.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_stylesrc.py b/plotly/validators/waterfall/outsidetextfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_stylesrc.py rename to plotly/validators/waterfall/outsidetextfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_textcase.py b/plotly/validators/waterfall/outsidetextfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_textcase.py rename to plotly/validators/waterfall/outsidetextfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_textcasesrc.py b/plotly/validators/waterfall/outsidetextfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_textcasesrc.py rename to plotly/validators/waterfall/outsidetextfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_variant.py b/plotly/validators/waterfall/outsidetextfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_variant.py rename to plotly/validators/waterfall/outsidetextfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_variantsrc.py b/plotly/validators/waterfall/outsidetextfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_variantsrc.py rename to plotly/validators/waterfall/outsidetextfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_weight.py b/plotly/validators/waterfall/outsidetextfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_weight.py rename to plotly/validators/waterfall/outsidetextfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_weightsrc.py b/plotly/validators/waterfall/outsidetextfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/outsidetextfont/_weightsrc.py rename to plotly/validators/waterfall/outsidetextfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/stream/__init__.py b/plotly/validators/waterfall/stream/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/stream/__init__.py rename to plotly/validators/waterfall/stream/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/stream/_maxpoints.py b/plotly/validators/waterfall/stream/_maxpoints.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/stream/_maxpoints.py rename to plotly/validators/waterfall/stream/_maxpoints.py diff --git a/packages/python/plotly/plotly/validators/waterfall/stream/_token.py b/plotly/validators/waterfall/stream/_token.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/stream/_token.py rename to plotly/validators/waterfall/stream/_token.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/__init__.py b/plotly/validators/waterfall/textfont/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/__init__.py rename to plotly/validators/waterfall/textfont/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_color.py b/plotly/validators/waterfall/textfont/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_color.py rename to plotly/validators/waterfall/textfont/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_colorsrc.py b/plotly/validators/waterfall/textfont/_colorsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_colorsrc.py rename to plotly/validators/waterfall/textfont/_colorsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_family.py b/plotly/validators/waterfall/textfont/_family.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_family.py rename to plotly/validators/waterfall/textfont/_family.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_familysrc.py b/plotly/validators/waterfall/textfont/_familysrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_familysrc.py rename to plotly/validators/waterfall/textfont/_familysrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_lineposition.py b/plotly/validators/waterfall/textfont/_lineposition.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_lineposition.py rename to plotly/validators/waterfall/textfont/_lineposition.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_linepositionsrc.py b/plotly/validators/waterfall/textfont/_linepositionsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_linepositionsrc.py rename to plotly/validators/waterfall/textfont/_linepositionsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_shadow.py b/plotly/validators/waterfall/textfont/_shadow.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_shadow.py rename to plotly/validators/waterfall/textfont/_shadow.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_shadowsrc.py b/plotly/validators/waterfall/textfont/_shadowsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_shadowsrc.py rename to plotly/validators/waterfall/textfont/_shadowsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_size.py b/plotly/validators/waterfall/textfont/_size.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_size.py rename to plotly/validators/waterfall/textfont/_size.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_sizesrc.py b/plotly/validators/waterfall/textfont/_sizesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_sizesrc.py rename to plotly/validators/waterfall/textfont/_sizesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_style.py b/plotly/validators/waterfall/textfont/_style.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_style.py rename to plotly/validators/waterfall/textfont/_style.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_stylesrc.py b/plotly/validators/waterfall/textfont/_stylesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_stylesrc.py rename to plotly/validators/waterfall/textfont/_stylesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_textcase.py b/plotly/validators/waterfall/textfont/_textcase.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_textcase.py rename to plotly/validators/waterfall/textfont/_textcase.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_textcasesrc.py b/plotly/validators/waterfall/textfont/_textcasesrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_textcasesrc.py rename to plotly/validators/waterfall/textfont/_textcasesrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_variant.py b/plotly/validators/waterfall/textfont/_variant.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_variant.py rename to plotly/validators/waterfall/textfont/_variant.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_variantsrc.py b/plotly/validators/waterfall/textfont/_variantsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_variantsrc.py rename to plotly/validators/waterfall/textfont/_variantsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_weight.py b/plotly/validators/waterfall/textfont/_weight.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_weight.py rename to plotly/validators/waterfall/textfont/_weight.py diff --git a/packages/python/plotly/plotly/validators/waterfall/textfont/_weightsrc.py b/plotly/validators/waterfall/textfont/_weightsrc.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/textfont/_weightsrc.py rename to plotly/validators/waterfall/textfont/_weightsrc.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/__init__.py b/plotly/validators/waterfall/totals/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/__init__.py rename to plotly/validators/waterfall/totals/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/_marker.py b/plotly/validators/waterfall/totals/_marker.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/_marker.py rename to plotly/validators/waterfall/totals/_marker.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/marker/__init__.py b/plotly/validators/waterfall/totals/marker/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/marker/__init__.py rename to plotly/validators/waterfall/totals/marker/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/marker/_color.py b/plotly/validators/waterfall/totals/marker/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/marker/_color.py rename to plotly/validators/waterfall/totals/marker/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/marker/_line.py b/plotly/validators/waterfall/totals/marker/_line.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/marker/_line.py rename to plotly/validators/waterfall/totals/marker/_line.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/marker/line/__init__.py b/plotly/validators/waterfall/totals/marker/line/__init__.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/marker/line/__init__.py rename to plotly/validators/waterfall/totals/marker/line/__init__.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/marker/line/_color.py b/plotly/validators/waterfall/totals/marker/line/_color.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/marker/line/_color.py rename to plotly/validators/waterfall/totals/marker/line/_color.py diff --git a/packages/python/plotly/plotly/validators/waterfall/totals/marker/line/_width.py b/plotly/validators/waterfall/totals/marker/line/_width.py similarity index 100% rename from packages/python/plotly/plotly/validators/waterfall/totals/marker/line/_width.py rename to plotly/validators/waterfall/totals/marker/line/_width.py diff --git a/packages/python/plotly/plotly/version.py b/plotly/version.py similarity index 100% rename from packages/python/plotly/plotly/version.py rename to plotly/version.py diff --git a/packages/python/plotly/plotly/widgets.py b/plotly/widgets.py similarity index 100% rename from packages/python/plotly/plotly/widgets.py rename to plotly/widgets.py diff --git a/pyproject.toml b/pyproject.toml index 2f858078f76..4a813fa2e07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["jupyterlab~=3.0;python_version>='3.6'", "setuptools>=40.8.0", "wheel"] +build-backend = "setuptools.build_meta" + [tool.black] line-length = 88 target_version = ['py36', 'py37', 'py38', 'py39'] @@ -17,8 +21,7 @@ exclude = ''' | build | dist | submodules - | packages/javascript - | packages/python/plotly/plotly/matplotlylib/mplexporter + | plotly/matplotlylib/mplexporter )/ | versioneer.py ) diff --git a/packages/python/plotly/pytest.ini b/pytest.ini similarity index 100% rename from packages/python/plotly/pytest.ini rename to pytest.ini diff --git a/packages/python/plotly/LICENSE.txt b/recipe/LICENSE.txt similarity index 100% rename from packages/python/plotly/LICENSE.txt rename to recipe/LICENSE.txt diff --git a/packages/python/plotly/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml similarity index 100% rename from packages/python/plotly/recipe/conda_build_config.yaml rename to recipe/conda_build_config.yaml diff --git a/packages/python/plotly/recipe/meta.yaml b/recipe/meta.yaml similarity index 95% rename from packages/python/plotly/recipe/meta.yaml rename to recipe/meta.yaml index 67176115a14..98f90b0c70c 100644 --- a/packages/python/plotly/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -6,12 +6,11 @@ package: version: {{ version }} source: - path: ../../../../ + path: ../ build: number: 0 script: | - cd packages/python/plotly {{ PYTHON }} setup.py sdist {{ PYTHON }} -m pip install dist/plotly-{{ version }}.tar.gz --no-deps --ignore-installed --no-cache-dir -q noarch: python diff --git a/release.md b/release.md index b4e0cec7138..7ed7754e02f 100644 --- a/release.md +++ b/release.md @@ -7,7 +7,7 @@ This is the release process for releasing `plotly.py` version `X.Y.Z`, including ### Finalize changelog -Review the contents of `packages/python/plotly/CHANGELOG.md`. We try to follow +Review the contents of `CHANGELOG.md`. We try to follow the [keepachangelog](https://keepachangelog.com/en/1.0.0/) guidelines. Make sure the changelog includes the version being published at the top, along with the expected publication date. @@ -26,7 +26,7 @@ Manually update the versions to `X.Y.Z` in the files specified below. - `CHANGELOG.md` + update the release date - - `packages/python/plotly/plotly/_widget_version.py`: + - `plotly/_widget_version.py`: + Update `__frontend_version__` to `^X.Y.Z` (Note the `^` prefix) - Commit your changes on the branch: + `git commit -a -m "version changes for vX.Y.Z"` diff --git a/packages/python/plotly/requires-express.txt b/requires-express.txt similarity index 100% rename from packages/python/plotly/requires-express.txt rename to requires-express.txt diff --git a/packages/python/plotly/requires-install.txt b/requires-install.txt similarity index 100% rename from packages/python/plotly/requires-install.txt rename to requires-install.txt diff --git a/packages/python/plotly/requires-optional.txt b/requires-optional.txt similarity index 100% rename from packages/python/plotly/requires-optional.txt rename to requires-optional.txt diff --git a/packages/python/plotly/setup.cfg b/setup.cfg similarity index 100% rename from packages/python/plotly/setup.cfg rename to setup.cfg diff --git a/setup.py b/setup.py index 6adbfebc8c6..46f4b79f9d6 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,581 @@ -from setuptools import setup +import os +import sys +import time +import platform +import json +import shutil +from setuptools import setup, Command +from setuptools.command.egg_info import egg_info +from subprocess import check_call +from distutils import log -raise Exception( - """ +# ensure the current directory is on sys.path; so versioneer can be imported +# when pip uses PEP 517/518 build rules. +# https://github.com/python-versioneer/python-versioneer/issues/193 +sys.path.append(os.path.dirname(__file__)) - This file exists to set up the Github "Used By" counter properly and is not meant to be run. +import versioneer - Please refer to ./packages/python/plotly/setup.py instead. - """ + +here = os.path.dirname(os.path.abspath(__file__)) +project_root = here +node_root = os.path.join(project_root, "js") +is_repo = os.path.exists(os.path.join(project_root, ".git")) + +npm_path = os.pathsep.join( + [ + os.path.join(node_root, "node_modules", ".bin"), + os.environ.get("PATH", os.defpath), + ] ) -setup(name="plotly") +if "--skip-npm" in sys.argv or os.environ.get("SKIP_NPM") is not None: + print("Skipping npm install as requested.") + skip_npm = True + if "--skip-npm" in sys.argv: + sys.argv.remove("--skip-npm") +else: + skip_npm = False + + +# Load plotly.js version from js/package.json +def plotly_js_version(): + path = os.path.join(here, "js", "package.json") + with open(path, "rt") as f: + package_json = json.load(f) + version = package_json["dependencies"]["plotly.js"] + version = version.replace("^", "") + + return version + + +def readme(): + with open(os.path.join(here, "README.md")) as f: + return f.read() + + +def js_prerelease(command, strict=False): + """decorator for building minified js/css prior to another command""" + + class DecoratedCommand(command): + def run(self): + jsdeps = self.distribution.get_command_obj("jsdeps") + if not is_repo and all(os.path.exists(t) for t in jsdeps.targets): + # sdist, nothing to do + command.run(self) + return + + try: + self.distribution.run_command("jsdeps") + except Exception as e: + missing = [t for t in jsdeps.targets if not os.path.exists(t)] + if strict or missing: + log.warn("rebuilding js and css failed") + if missing: + log.error("missing files: %s" % missing) + raise e + else: + log.warn("rebuilding js and css failed (not a problem)") + log.warn(str(e)) + command.run(self) + update_package_data(self.distribution) + + return DecoratedCommand + + +def update_package_data(distribution): + """update package_data to catch changes during setup""" + build_py = distribution.get_command_obj("build_py") + + # re-init build_py options which load package_data + build_py.finalize_options() + + +class NPM(Command): + description = "install package.json dependencies using npm" + + user_options = [] + + node_modules = os.path.join(node_root, "node_modules") + + targets = [ + os.path.join(here, "plotly", "package_data", "widgetbundle.js"), + ] + + def initialize_options(self): + self.local = None + + def finalize_options(self): + self.set_undefined_options("updateplotlyjsdev", ("local", "local")) + + def get_npm_name(self): + npmName = "npm" + if platform.system() == "Windows": + npmName = "npm.cmd" + + return npmName + + def has_npm(self): + npmName = self.get_npm_name() + try: + check_call([npmName, "--version"]) + return True + except: + return False + + def run(self): + if skip_npm: + log.info("Skipping npm-installation") + return + + has_npm = self.has_npm() + if not has_npm: + log.error( + "`npm` unavailable. If you're running this command using sudo, make sure `npm` is available to sudo" + ) + + env = os.environ.copy() + env["PATH"] = npm_path + + if self.has_npm(): + log.info( + "Installing build dependencies with npm. This may take a while..." + ) + npmName = self.get_npm_name() + check_call( + [npmName, "install"], + cwd=node_root, + stdout=sys.stdout, + stderr=sys.stderr, + ) + if self.local is not None: + plotly_archive = os.path.join(self.local, "plotly.js.tgz") + check_call( + [npmName, "install", plotly_archive], + cwd=node_root, + stdout=sys.stdout, + stderr=sys.stderr, + ) + check_call( + [npmName, "run", "build"], + cwd=node_root, + stdout=sys.stdout, + stderr=sys.stderr, + ) + os.utime(self.node_modules, None) + + for t in self.targets: + if not os.path.exists(t): + msg = "Missing file: %s" % t + raise ValueError(msg) + + # update package data in case this created new files + update_package_data(self.distribution) + + +class CodegenCommand(Command): + description = "Generate class hierarchy from Plotly JSON schema" + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + if sys.version_info < (3, 8): + raise ImportError("Code generation must be executed with Python >= 3.8") + + from codegen import perform_codegen + + perform_codegen() + + +def overwrite_schema_local(uri): + path = os.path.join(here, "codegen", "resources", "plot-schema.json") + shutil.copyfile(uri, path) + + +def overwrite_schema(url): + import requests + + req = requests.get(url) + assert req.status_code == 200 + path = os.path.join(here, "codegen", "resources", "plot-schema.json") + with open(path, "wb") as f: + f.write(req.content) + + +def overwrite_bundle_local(uri): + path = os.path.join(here, "plotly", "package_data", "plotly.min.js") + shutil.copyfile(uri, path) + + +def overwrite_bundle(url): + import requests + + req = requests.get(url) + assert req.status_code == 200 + path = os.path.join(here, "plotly", "package_data", "plotly.min.js") + with open(path, "wb") as f: + f.write(req.content) + + +def overwrite_plotlyjs_version_file(plotlyjs_version): + path = os.path.join(here, "plotly", "offline", "_plotlyjs_version.py") + with open(path, "w") as f: + f.write( + """\ +# DO NOT EDIT +# This file is generated by the updatebundle setup.py command +__plotlyjs_version__ = "{plotlyjs_version}" +""".format( + plotlyjs_version=plotlyjs_version + ) + ) + + +def overwrite_plotlywidget_version_file(version): + path = os.path.join(here, "plotly", "_widget_version.py") + with open(path, "w") as f: + f.write( + """\ +# This file is generated by the updateplotlywidgetversion setup.py command +# for automated dev builds +# +# It is edited by hand prior to official releases +__frontend_version__ = "{version}" +""".format( + version=version + ) + ) + + +def request_json(url): + import requests + + req = requests.get(url) + return json.loads(req.content.decode("utf-8")) + + +def get_latest_publish_build_info(repo, branch): + url = ( + r"https://circleci.com/api/v1.1/project/github/" + r"{repo}/tree/{branch}?limit=100&filter=completed" + ).format(repo=repo, branch=branch) + + branch_jobs = request_json(url) + + # Get most recent successful publish build for branch + builds = [ + j + for j in branch_jobs + if j.get("workflows", {}).get("job_name", None) == "publish-dist" + and j.get("status", None) == "success" + ] + build = builds[0] + + # Extract build info + return {p: build[p] for p in ["vcs_revision", "build_num", "committer_date"]} + + +def get_bundle_schema_local(local): + plotly_archive = os.path.join(local, "plotly.js.tgz") + plotly_bundle = os.path.join(local, "dist/plotly.min.js") + plotly_schemas = os.path.join(local, "dist/plot-schema.json") + return plotly_archive, plotly_bundle, plotly_schemas + + +def get_bundle_schema_urls(build_num): + url = ( + "https://circleci.com/api/v1.1/project/github/" + "plotly/plotly.js/{build_num}/artifacts" + ).format(build_num=build_num) + + artifacts = request_json(url) + + # Find archive + archives = [a for a in artifacts if a.get("path", None) == "plotly.js.tgz"] + archive = archives[0] + + # Find bundle + bundles = [a for a in artifacts if a.get("path", None) == "dist/plotly.min.js"] + bundle = bundles[0] + + # Find schema + schemas = [a for a in artifacts if a.get("path", None) == "dist/plot-schema.json"] + schema = schemas[0] + + return archive["url"], bundle["url"], schema["url"] + + +class UpdateSchemaCommand(Command): + description = "Download latest version of the plot-schema JSON file" + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + url = ( + "https://raw.githubusercontent.com/plotly/plotly.js/" + "v%s/dist/plot-schema.json" % plotly_js_version() + ) + overwrite_schema(url) + + +class UpdateBundleCommand(Command): + description = "Download latest version of the plot-schema JSON file" + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + url = ( + "https://raw.githubusercontent.com/plotly/plotly.js/" + "v%s/dist/plotly.min.js" % plotly_js_version() + ) + overwrite_bundle(url) + + # Write plotly.js version file + plotlyjs_version = plotly_js_version() + overwrite_plotlyjs_version_file(plotlyjs_version) + + +class UpdatePlotlyJsCommand(Command): + description = "Update project to a new version of plotly.js" + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + self.run_command("updatebundle") + self.run_command("updateschema") + self.run_command("codegen") + + +class UpdateBundleSchemaDevCommand(Command): + description = "Update the plotly.js schema and bundle from master" + user_options = [] + + def initialize_options(self): + self.devrepo = None + self.devbranch = None + self.local = None + + def finalize_options(self): + self.set_undefined_options("updateplotlyjsdev", ("devrepo", "devrepo")) + self.set_undefined_options("updateplotlyjsdev", ("devbranch", "devbranch")) + self.set_undefined_options("updateplotlyjsdev", ("local", "local")) + + def run(self): + if self.local is None: + build_info = get_latest_publish_build_info(self.devrepo, self.devbranch) + + archive_url, bundle_url, schema_url = get_bundle_schema_urls( + build_info["build_num"] + ) + + # Update bundle in package data + overwrite_bundle(bundle_url) + + # Update schema in package data + overwrite_schema(schema_url) + else: + # this info could be more informative but + # it doesn't seem as useful in a local context + # and requires dependencies and programming. + build_info = {"vcs_revision": "local", "committer_date": str(time.time())} + self.devrepo = self.local + self.devbranch = "" + + archive_uri, bundle_uri, schema_uri = get_bundle_schema_local(self.local) + overwrite_bundle_local(bundle_uri) + overwrite_schema_local(schema_uri) + + # Update plotly.js url in package.json + package_json_path = os.path.join(node_root, "package.json") + with open(package_json_path, "r") as f: + package_json = json.load(f) + + # Replace version with bundle url + package_json["dependencies"]["plotly.js"] = ( + archive_url if self.local is None else archive_uri + ) + with open(package_json_path, "w") as f: + json.dump(package_json, f, indent=2) + + # update plotly.js version in _plotlyjs_version + rev = build_info["vcs_revision"] + date = str(build_info["committer_date"]) + version = "_".join([self.devrepo, self.devbranch, date[:10], rev[:8]]) + overwrite_plotlyjs_version_file(version) + + +class UpdatePlotlyJsDevCommand(Command): + description = "Update project to a new development version of plotly.js" + user_options = [ + ("devrepo=", None, "Repository name"), + ("devbranch=", None, "branch or pull/number"), + ("local=", None, "local copy of repo, used by itself"), + ] + + def initialize_options(self): + self.devrepo = "plotly/plotly.js" + self.devbranch = "master" + self.local = None + + def finalize_options(self): + pass + + def run(self): + self.run_command("updatebundleschemadev") + self.run_command("jsdeps") + self.run_command("codegen") + + +class UpdatePlotlywidgetVersionCommand(Command): + description = "Update package.json version to match widget version" + + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + from plotly._version import git_pieces_from_vcs, render + + # Update plotly.js url in package.json + package_json_path = os.path.join(node_root, "package.json") + + with open(package_json_path, "r") as f: + package_json = json.load(f) + + # Replace version with bundle url + pieces = git_pieces_from_vcs("widget-v", project_root, False) + pieces["dirty"] = False + widget_ver = render(pieces, "pep440")["version"] + + package_json["version"] = widget_ver + with open(package_json_path, "w") as f: + json.dump(package_json, f, indent=2) + + # write _widget_version + overwrite_plotlywidget_version_file(widget_ver) + + +graph_objs_packages = [ + d[0].replace("/", ".") + for d in os.walk("plotly/graph_objs") + if not d[0].endswith("__pycache__") +] + + +validator_packages = [ + d[0].replace("/", ".") + for d in os.walk("plotly/validators") + if not d[0].endswith("__pycache__") +] + +versioneer_cmds = versioneer.get_cmdclass() + + +def read_req_file(req_type): + with open(f"requires-{req_type}.txt", encoding="utf-8") as fp: + requires = (line.strip() for line in fp) + return [req for req in requires if req and not req.startswith("#")] + + +setup( + name="plotly", + version=versioneer.get_version(), + author="Chris P", + author_email="chris@plot.ly", + maintainer="Nicolas Kruchten", + maintainer_email="nicolas@plot.ly", + url="https://plotly.com/python/", + project_urls={ + "Documentation": "https://plotly.com/python/", + "Github": "https://github.com/plotly/plotly.py", + "Changelog": "https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md", + }, + description="An open-source, interactive data visualization library for Python", + long_description=readme(), + long_description_content_type="text/markdown", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Scientific/Engineering :: Visualization", + "License :: OSI Approved :: MIT License", + ], + python_requires=">=3.8", + license="MIT", + packages=[ + "plotly", + "plotly.plotly", + "plotly.offline", + "plotly.io", + "plotly.matplotlylib", + "plotly.matplotlylib.mplexporter", + "plotly.matplotlylib.mplexporter.renderers", + "plotly.figure_factory", + "plotly.data", + "plotly.colors", + "plotly.express", + "plotly.express.data", + "plotly.express.colors", + "plotly.express.trendline_functions", + "plotly.graph_objects", + "_plotly_utils", + "_plotly_utils.colors", + "_plotly_future_", + ] + + graph_objs_packages + + validator_packages, + package_data={ + "plotly": [ + "package_data/*", + "package_data/templates/*", + "package_data/datasets/*", + ], + }, + install_requires=read_req_file("install"), + extras_require={ + "express": read_req_file("express"), + }, + zip_safe=False, + cmdclass=dict( + build_py=js_prerelease(versioneer_cmds["build_py"]), + egg_info=js_prerelease(egg_info), + sdist=js_prerelease(versioneer_cmds["sdist"], strict=True), + jsdeps=NPM, + codegen=CodegenCommand, + updateschema=UpdateSchemaCommand, + updatebundle=UpdateBundleCommand, + updateplotlyjs=js_prerelease(UpdatePlotlyJsCommand), + updatebundleschemadev=UpdateBundleSchemaDevCommand, + updateplotlyjsdev=UpdatePlotlyJsDevCommand, + updateplotlywidgetversion=UpdatePlotlywidgetVersionCommand, + version=versioneer_cmds["version"], + ), +) diff --git a/packages/python/plotly/templategen/__init__.py b/templategen/__init__.py similarity index 100% rename from packages/python/plotly/templategen/__init__.py rename to templategen/__init__.py diff --git a/packages/python/plotly/templategen/__main__.py b/templategen/__main__.py similarity index 100% rename from packages/python/plotly/templategen/__main__.py rename to templategen/__main__.py diff --git a/packages/python/plotly/templategen/definitions.py b/templategen/definitions.py similarity index 100% rename from packages/python/plotly/templategen/definitions.py rename to templategen/definitions.py diff --git a/packages/python/plotly/templategen/utils/__init__.py b/templategen/utils/__init__.py similarity index 100% rename from packages/python/plotly/templategen/utils/__init__.py rename to templategen/utils/__init__.py diff --git a/packages/python/plotly/templategen/utils/colors.py b/templategen/utils/colors.py similarity index 100% rename from packages/python/plotly/templategen/utils/colors.py rename to templategen/utils/colors.py diff --git a/packages/python/plotly/test_init/README.md b/test_init/README.md similarity index 100% rename from packages/python/plotly/test_init/README.md rename to test_init/README.md diff --git a/packages/python/plotly/test_init/__init__.py b/test_init/__init__.py similarity index 100% rename from packages/python/plotly/test_init/__init__.py rename to test_init/__init__.py diff --git a/packages/python/plotly/test_init/test_dependencies_not_imported.py b/test_init/test_dependencies_not_imported.py similarity index 100% rename from packages/python/plotly/test_init/test_dependencies_not_imported.py rename to test_init/test_dependencies_not_imported.py diff --git a/packages/python/plotly/test_init/test_lazy_imports.py b/test_init/test_lazy_imports.py similarity index 100% rename from packages/python/plotly/test_init/test_lazy_imports.py rename to test_init/test_lazy_imports.py diff --git a/packages/python/plotly/test_requirements/requirements_310_core.txt b/test_requirements/requirements_310_core.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_310_core.txt rename to test_requirements/requirements_310_core.txt diff --git a/packages/python/plotly/test_requirements/requirements_310_optional.txt b/test_requirements/requirements_310_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_310_optional.txt rename to test_requirements/requirements_310_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_311_core.txt b/test_requirements/requirements_311_core.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_311_core.txt rename to test_requirements/requirements_311_core.txt diff --git a/packages/python/plotly/test_requirements/requirements_311_optional.txt b/test_requirements/requirements_311_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_311_optional.txt rename to test_requirements/requirements_311_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_312_core.txt b/test_requirements/requirements_312_core.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_312_core.txt rename to test_requirements/requirements_312_core.txt diff --git a/packages/python/plotly/test_requirements/requirements_312_no_numpy_optional.txt b/test_requirements/requirements_312_no_numpy_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_312_no_numpy_optional.txt rename to test_requirements/requirements_312_no_numpy_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_312_np2_optional.txt b/test_requirements/requirements_312_np2_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_312_np2_optional.txt rename to test_requirements/requirements_312_np2_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_312_optional.txt b/test_requirements/requirements_312_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_312_optional.txt rename to test_requirements/requirements_312_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_38_core.txt b/test_requirements/requirements_38_core.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_38_core.txt rename to test_requirements/requirements_38_core.txt diff --git a/packages/python/plotly/test_requirements/requirements_38_optional.txt b/test_requirements/requirements_38_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_38_optional.txt rename to test_requirements/requirements_38_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_39_core.txt b/test_requirements/requirements_39_core.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_39_core.txt rename to test_requirements/requirements_39_core.txt diff --git a/packages/python/plotly/test_requirements/requirements_39_optional.txt b/test_requirements/requirements_39_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_39_optional.txt rename to test_requirements/requirements_39_optional.txt diff --git a/packages/python/plotly/test_requirements/requirements_39_pandas_2_optional.txt b/test_requirements/requirements_39_pandas_2_optional.txt similarity index 100% rename from packages/python/plotly/test_requirements/requirements_39_pandas_2_optional.txt rename to test_requirements/requirements_39_pandas_2_optional.txt diff --git a/packages/python/plotly/versioneer.py b/versioneer.py similarity index 100% rename from packages/python/plotly/versioneer.py rename to versioneer.py